diff --git a/containers/backupchecks/src/backend/app/changelog.py b/containers/backupchecks/src/backend/app/changelog.py index dbc3132..4635aef 100644 --- a/containers/backupchecks/src/backend/app/changelog.py +++ b/containers/backupchecks/src/backend/app/changelog.py @@ -3,6 +3,29 @@ Changelog data structure for Backupchecks """ CHANGELOG = [ + { + "version": "v0.1.24", + "date": "2026-02-09", + "summary": "Bug fix release addressing Autotask ticket description field being cleared when resolving tickets.", + "sections": [ + { + "title": "Bug Fixes", + "type": "bugfix", + "subsections": [ + { + "subtitle": "Autotask Integration", + "changes": [ + "Fixed Autotask ticket description being cleared when resolving tickets via the update_ticket_resolution_safe function", + "Root cause: The description field was not included in the PUT payload when updating ticket resolution, causing Autotask API to set it to NULL", + "Solution: Added 'description' to the optional_fields list so it is preserved from GET response and included in PUT request", + "Impact: Ticket descriptions now remain intact when marking Autotask tickets as resolved", + "Location: containers/backupchecks/src/backend/app/integrations/autotask/client.py line 672" + ] + } + ] + } + ] + }, { "version": "v0.1.23", "date": "2026-02-09", diff --git a/docs/changelog.md b/docs/changelog.md index 00af03a..f85a124 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,14 @@ +## v0.1.24 + +### Bug Fixes + +**Autotask Integration:** +- Fixed Autotask ticket description being cleared when resolving tickets + - Root cause: The `update_ticket_resolution_safe` function was performing a GET to retrieve the ticket, then a PUT to update the resolution field, but the `description` field was not included in the PUT payload + - Impact: When clicking "Resolve" on an Autotask ticket, the description would be set to NULL by the Autotask API + - Solution: Added `description` to the `optional_fields` list in `update_ticket_resolution_safe` so the original description is preserved from the GET response and included in the PUT request + - Location: `containers/backupchecks/src/backend/app/integrations/autotask/client.py` line 672 + ## v0.1.23 This comprehensive release introduces a complete built-in documentation system with 33 pages covering all features, enhanced audit logging for compliance and troubleshooting, timezone-aware datetime display throughout the application, and numerous Autotask PSA integration improvements for better usability and workflow efficiency.