Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion application/single_app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
EXECUTOR_TYPE = 'thread'
EXECUTOR_MAX_WORKERS = 30
SESSION_TYPE = 'filesystem'
VERSION = "0.236.012"
VERSION = "0.236.011"
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

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

VERSION is being decreased to 0.236.011, but there are already retention-policy changes/tests that expect the app version to be >= 0.236.012 (e.g., functional_tests/test_retention_policy_notfound_handling.py checks for >= 0.236.012). This will cause the functional test suite to fail and makes versioning non-monotonic. Please bump VERSION forward (at least back to 0.236.012, or the next patch) to match the existing implementation/docs/tests.

Suggested change
VERSION = "0.236.011"
VERSION = "0.236.012"

Copilot uses AI. Check for mistakes.


SECRET_KEY = os.getenv('SECRET_KEY', 'dev-secret-key-change-in-production')
Expand Down
Loading