Skip to content

Release v2.0.0 - #13

Merged
cosmicc merged 12 commits into
mainfrom
dev
Jul 27, 2026
Merged

Release v2.0.0#13
cosmicc merged 12 commits into
mainfrom
dev

Conversation

@cosmicc

@cosmicc cosmicc commented Jul 27, 2026

Copy link
Copy Markdown
Owner

Summary

  • release TicketPilot 2.0.0 with the completed rename, themes, workflow, navigation, and reliability work
  • include the final desktop layout refinements and Start a time entry wording
  • mark the source and web changelogs as released on 07.26.2026

Validation

  • 425 tests passed
  • Ruff passed
  • Python bytecode compilation passed
  • Docker Compose configuration rendered successfully
  • production and dev Docker Swarm configurations rendered successfully
  • git diff --check passed

@cosmicc
cosmicc merged commit 63e6b69 into main Jul 27, 2026
3 checks passed

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 75fc4d89f4

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +920 to +923
minimum_stop_utc = ensure_utc(job.rounded_start_utc) + timedelta(
minutes=minimum_time_entry_duration_minutes(job.work_location)
)
return max(ensure_utc(rounded_stop_utc), minimum_stop_utc)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Reject minimum stops that cross a work date

When an active On-Site job has a rounded start at or after 11:00 pm in Detroit, adding the one-hour minimum here produces an end timestamp on the following local date. The preceding date check in rounded_stop_for_active_job() happens before this clamp, while end_job() and direct submission validate only the duration, so the cross-date entry can be persisted and sent to Autotask even though Review cannot represent it as one valid job date. Reject the infeasible stop/location change rather than returning a next-day minimum.

AGENTS.md reference: AGENTS.md:L440-L442

Useful? React with 👍 / 👎.

data-rounded-start-utc="{{ active_job.rounded_start_utc|utc_iso }}"
data-initial-rounded-stop-utc="{{ rounded_stop_utc|utc_iso }}"
data-initial-rounded-stop-local-time="{{ rounded_stop_utc|local_time }}"
data-minimum-duration-minutes="{% if active_job.work_location and active_job.work_location.value == 'on_site' %}60{% else %}15{% endif %}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Source initial duration minima from the central helper

This template independently hardcodes the Remote and On-Site minimums even though minimum_time_entry_duration_minutes() is the authoritative business rule. Any future adjustment or added work-location case would make the initially rendered browser clamp disagree with the server until a save response refreshes it; pass the helper-derived minimum into the template instead.

AGENTS.md reference: AGENTS.md:L444-L445

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant