chore(release): version packages#857
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (17)
💤 Files with no reviewable changes (1)
📝 WalkthroughWalkthroughThis PR coordinates a version release across the rawsql-ts monorepo. The core package adds ChangesSqlFormatter Minimal Identifier Escape Release
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
rawsql-ts@0.23.0
Minor Changes
4698a87Thanks @mk3008! - AddidentifierEscapeTarget: "minimal"toSqlFormatterso identifier quotes are removed only when the bare identifier is syntactically valid and semantically safe. The escape symbol remains controlled separately byidentifierEscape(quote,backtick,bracket, or explicit delimiters). Reserved words, SQL special value expressions such ascurrent_userandcurrent_timestamp, mixed-case names, and identifiers containing spaces or punctuation remain escaped. Bare SQL special value expressions stay unquoted, while qualified references such astable.current_usercan still be parsed as column references.@rawsql-ts/adapter-node-pg@0.15.11
Patch Changes
4698a87]:@rawsql-ts/ddl-docs-cli@0.3.2
Patch Changes
4698a87]:@rawsql-ts/sql-grep-core@0.1.12
Patch Changes
4698a87]:@rawsql-ts/testkit-core@0.17.2
Patch Changes
4698a87]:@rawsql-ts/testkit-postgres@0.16.2
Patch Changes
4698a87]:@rawsql-ts/testkit-sqlite@1.0.8
Patch Changes
4698a87]:@rawsql-ts/ztd-cli@0.27.4
Patch Changes
4698a87]:Summary by CodeRabbit
New Features
identifierEscapeTarget: "minimal"configuration option to SqlFormatter for more conservative identifier quoting. Quotes are removed only when syntactically valid and semantically safe; reserved words, SQL special expressions, mixed-case names, and identifiers with special characters remain quoted.Chores