chore: sync dev after v0.7.0 (release notes + #1115 fix)#1321
Open
vybe wants to merge 2 commits into
Open
Conversation
…gres-safe) The #300 SQLAlchemy migration dropped the get_db_connection import from db/schedules.py but left get_agent_schedules_summary (#1115) calling it, so the /schedules/analytics-summary endpoint raised NameError at runtime. Surfaced for the first time by the v0.7.0 release-PR full-suite run (dev pushes only lint). Port the method to get_engine() Core queries like its siblings, and replace the SQLite-only bare-column-with-MAX last-run query with a portable ROW_NUMBER() window so it works on PostgreSQL too. Also refresh the test_login_rate_limit_split config stub, which went stale when auth.py grew a PUBLIC_ACCESS_REQUESTS_ENABLED dependency (trinity-enterprise#10) — 8 collection errors under HEAD. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Resolve by running |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Post-release reconciliation for tag
v0.7.0. Brings the two thingsdevis missing onto it, conflict-free (this branch was cut from dev's tip):docs/releases/0.7.0.md— the release notes (also on main via Release: v0.7.0 #1319)get_agent_schedules_summaryported to SQLAlchemy Core + portableROW_NUMBER()(was NameError'ing/500ing on dev after the Configurable database backend: SQLAlchemy Core abstraction (SQLite + PostgreSQL) #300 migration dropped itsget_db_connectionimport) + refreshedtest_login_rate_limit_splitconfig stubAfter merge, dev's tree matches main's. Avoids the squash-divergence conflict a direct main→dev merge hits (see closed #1320).
🤖 Generated with Claude Code