8.0 KiB
8.0 KiB
Changelog - Claude Code
This file documents all changes made to this project via Claude Code.
[2026-02-05]
Added
- Redesigned changelog system to use Python-based structure instead of Markdown:
- Created
app/changelog.pywith structured changelog data (21 versions from v0.1.22 to v0.1.2) - Each version contains: version number, date, summary, and structured sections
- Sections include: title, type (feature/improvement/fixed/documentation), and list of changes
- Removed Gitea dependency for changelog rendering - now fully self-contained
- No external dependencies, faster loading, always available
- Created
- New changelog.html template with modern design:
- Sidebar navigation with all versions for quick jumping between releases
- Sticky sidebar that remains visible during scrolling
- Bootstrap cards for each version with gradient blue headers
- Color-coded type badges for sections:
- Green gradient: Feature
- Blue gradient: Improvement
- Red gradient: Fixed
- Purple gradient: Documentation
- Responsive design (sidebar hidden on mobile devices)
- Summary section with blue left border highlight
- Click-to-expand sections with smooth animations
- Created
static/css/changelog.csswith comprehensive styling:- Modern gradients for badges and headers
- Dark mode support via CSS variables
- Hover effects on navigation links and list items
- Smooth scrolling to version anchors
- Compact spacing optimizations (reduced padding, margins, font sizes)
- CSS specificity enhancements with !important flags to override Bootstrap defaults
- Added
{% block head %}to base.html template to allow pages to inject custom CSS
Changed
- Updated
routes_changelog.pyto load data fromchangelog.pyinstead of fetching from Gitea - Simplified changelog route - removed markdown parsing and external HTTP requests
- Removed dependency on
markdownlibrary for changelog rendering - Template now receives structured Python data instead of HTML string
Fixed
- Fixed module import path in routes_changelog.py (changed from
from app.changelogtofrom ..changelog) - Fixed dictionary key conflict - renamed
itemstochangesto avoid collision with dict.items() method - Added missing
{% block head %}in base.html that prevented custom CSS from loading
Technical Details
- Changelog data structure uses dictionaries with keys: version, date, summary, sections
- Sections contain: title, type, subsections (optional), changes
- Subsections contain: subtitle, changes
- All list items use "changes" key instead of "items" to avoid Python reserved method conflicts
- CSS uses !important flags and increased specificity (.changelog-nav .changelog-nav-link) to override Bootstrap
- Compact spacing achieved with: 0.15rem padding, 0.15rem margins, 0.85rem/0.7rem font sizes, 1.1/1.0 line heights
Added
- Autotask customer mapping now auto-searches for similar company names when opening unmapped customers:
- Automatically populates search box with customer name
- Displays matching Autotask companies as suggestions
- Speeds up mapping process by eliminating manual search for most customers
- Autotask "Link existing ticket" now supports cross-company ticket search:
- Added
query_tickets_by_number()to search tickets by number across all companies - When searching with a ticket number (e.g., "T20260205.0001"), results include:
- Tickets from the customer's company (primary results)
- Matching tickets from other companies (for overarching issues)
- Enables linking tickets for multi-company infrastructure issues
- Added
Changed
- Autotask resolve confirmation and note messages now correctly indicate ticket closure status:
- Frontend confirmation dialog explains conditional closure based on time entries
- Backend route checks time entries before creating note and generates dynamic message:
- "ticket will be closed in Autotask" when no time entries exist
- "ticket remains open in Autotask due to existing time entries" when time entries exist
- Route docstring updated to reflect conditional status update behaviour
Added
- Autotask conditional ticket status update based on time entries (API contract section 9):
query_time_entries_by_ticket_id()- Query time entries for a ticket via POST /TimeEntries/queryupdate_ticket_resolution_safe()now checks for time entries and conditionally sets status:- If NO time entries exist: sets status to 5 (Complete) with completedDate and resolvedDateTime
- If time entries exist: keeps current status unchanged (ticket remains open)
Fixed
- Automatic mail import can now be disabled in Settings after being enabled (fixed unchecked checkbox not being processed)
- Autotask "Link existing" search box now clears when opening the modal instead of retaining previous search text
- Autotask customer mapping search box now clears when opening the edit modal instead of retaining previous search text
- Autotask ticket resolution update now correctly preserves exact field values from GET response in PUT payload.
The
issueType,subIssueType, andsourcefields are copied with their exact values (including null) from the GET response, as required by Autotask API. Previously these fields were being skipped or modified.
Added
- Restored Autotask PSA integration from branch
v20260203-13-autotask-resolution-item-wrapper:integrations/autotask/client.py- Autotask REST API client with full support for:- Zone information discovery
- Ticket CRUD operations (create, get, update)
- Ticket notes via
/Tickets/{id}/Notesendpoint - Safe resolution updates preserving stabilizing fields
- Query support for companies, tickets, time entries, deleted ticket logs
- Reference data retrieval (queues, ticket sources, priorities, statuses)
ticketing_utils.py- Utilities for internal ticket management and Autotask linkage- Database migrations for Autotask fields:
SystemSettings: Autotask connection settings, defaults, and cached reference dataCustomer: Autotask company mapping fieldsJobRun: Autotask ticket linkage and deletion tracking fieldsTicket: Resolution origin tracking
- Settings UI for Autotask configuration (connection test, reference data sync)
- Run Checks integration for Autotask ticket creation
- Customers page with Autotask company mapping
- Documentation files for Autotask integration design and implementation
- Added
docs/autotask_rest_api.md- Validated Autotask REST API contract based on Postman testing
[2026-02-04]
Added
docs/changelog-claude.md- Changelog file for tracking changes made via Claude Code- Setting to enable/disable daily dashboard redirect requirement (Settings > General > Navigation)
- New
require_daily_dashboard_visitcolumn inSystemSettingsmodel - Migration in
migrations.pyto add the column - Toggle in Settings General page under new "Navigation" card
- Default value is OFF (disabled) - users can navigate directly to any page
- New
Changed
- Converted changelog to English (all project documentation must be in English)
- Documented branch naming convention and build workflow in Claude memory
- Filled README.md with comprehensive project documentation based on source code analysis
Performance
- Added database indexes migration (
migrations.py) for frequently queried foreign key columns:JobRun: indexes onjob_id,job_id+run_at,job_id+reviewed_at,mail_message_idMailMessage: indexes onjob_id,location,job_id+locationMailObject: index onmail_message_idTicketScope: indexes onticket_id,job_idRemarkScope: indexes onremark_id,job_id
- Fixed N+1 query in
_recompute_override_flags_for_runs()- batch loads all jobs instead of per-run queries - Optimized Daily Jobs page with batch queries:
- Batch load all today's runs for all jobs in single query
- Batch infer weekly schedules for all jobs (was per-job query)
- Batch infer monthly schedules for jobs without weekly schedule
- Batch load ticket/remark indicators for all jobs