chore: version packages - #170
Merged
Merged
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
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm 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
workers-qb@1.15.0
Minor Changes
#169
5c9bdc0Thanks @G4brym! - Harden structured SQL inputs against injection while preserving existingfieldsexpressions. Table and column identifiers, aliases, CTE names, join types and conditions, conflict modes, set operations, ordering, limits, and offsets are now validated before SQL generation.Bound values now receive unique parameter positions across CTEs, subqueries,
WHERE, andHAVING. Queries that previously reused the same numbered position across clauses may consume more bound-parameter slots; D1 and SQLite-backed Durable Objects allow up to 100 per query.Upgrade notes
fieldscontinue to work without changes.groupBy,distinct, andreturningvalues must be identifiers. PlainorderByvalues must be identifiers with an optionalASCorDESCdirection, and join conditions must use simple comparisons joined byANDorOR. Wrap more complex, trusted expressions inRaw.WHEREandHAVINGvalues remain bound parameters. PassingRawin a parameter position now explicitly inlines trusted SQL and must never be used with request-controlled input.query.toStatement('sqlite')orquery.toStatement('postgres')instead ofquery.queryso nested parameters retain unique binding positions.