You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix db_list_tables blocked by own sanitizer + add security_overrides column
Two fixes:
1. db_list_tables and db_describe_table were blocked by the query
sanitizer because they use information_schema queries, which matched
the BLOCKED_PATTERNS list. Added _trusted flag to DatabaseQuery so
internal system tools bypass the sanitizer while user queries still
get checked.
2. Agent security settings save failed with "column security_overrides
does not exist" — the column was never added via migration. Added
ALTER TABLE migration for Postgres and SQLite. Updated updateAgent()
and mapAgent() in all 6 adapters (postgres, sqlite, mysql, turso,
mongodb, dynamodb).
0 commit comments