-
Notifications
You must be signed in to change notification settings - Fork 3
Release 0.22.0 #816
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Release 0.22.0 #816
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Add jump to cue button in cue editor * Add comprehensive unit tests for CueSearchController API Implements 20 tests covering validation, exact matching (with case-insensitivity), fuzzy matching algorithm, cue type filtering, and edge cases for the new /api/v1/show/cues/search endpoint. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
…body Updated DELETE endpoints to follow HTTP best practices by using query parameters instead of request bodies. This fixes compatibility issues with HTTP clients and proxies that may strip bodies from DELETE requests. Backend changes: - Updated 8 DELETE methods across 6 controllers to use self.get_argument() - Added explicit int() conversion with try/except for proper error handling - Returns 400 error for invalid (non-numeric) IDs Frontend changes: - Updated 9 DELETE API calls to use URLSearchParams - Follows existing pattern from DELETE_SCRIPT_REVISION All 200 tests passing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
…(UTC) (#813) This commit addresses issue #811 by replacing all instances of the deprecated datetime.utcnow() method with datetime.now(UTC) to use timezone-aware datetime objects as recommended by Python 3.11+. Changes: - Updated 6 occurrences across 4 files - Added UTC import from datetime module - All tests pass (219/219) Files modified: - server/controllers/api/show/session/sessions.py - server/controllers/api/show/shows.py - server/controllers/api/show/script/script.py - server/controllers/api/show/script/revisions.py 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
The stage_direction boolean field was removed in commit 08b6424 and replaced with the line_type enum. Updated 3 production files and 1 test file that still referenced the old attribute. Changed all instances of `if line.stage_direction:` to `if line.line_type != ScriptLineType.DIALOGUE:` to properly filter out non-dialogue lines (stage directions, cue lines, and spacing). Files modified: - server/controllers/api/show/characters.py (line 201) - server/controllers/api/show/cast.py (line 189) - server/utils/show/mic_assignment.py (line 127) - server/test/utils/show/test_mic_assignment.py (multiple mocks) Fixes #812 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
* Add session tag model, schema, migration and CRUD endpoints * Add front end configuration of session tags
Python Test Results 1 files 1 suites 19s ⏱️ Results for commit 845fcb1. ♻️ This comment has been updated with latest results. |
Client Test Results34 tests 34 ✅ 0s ⏱️ Results for commit 845fcb1. ♻️ This comment has been updated with latest results. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
client
Pull requests changing front end code
release
Pull requests for creating a new release
server
Pull requests changing back end code
xlarge-diff
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.