chore(deps): bump sqlparse from 0.5.5 to 0.6.0 - #307
Conversation
Merge Protections🟢 All 6 merge protections satisfied — ready to merge. Show 6 satisfied protections🟢 🤖 Continuous Integration
🟢 👀 Review Requirements
🟢 Enforce conventional commitMake sure that we follow https://www.conventionalcommits.org/en/v1.0.0/
🟢 🔎 Reviews
🟢 📕 PR description
🟢 🚦 Auto-queueWhen all merge protections are satisfied, this pull request will be queued automatically. |
Merge Queue Status
This pull request spent 11 minutes 31 seconds in the queue, with no time running CI. ReasonThe pull request conflicts with the base branch The pull request was held in the queue, conflicting with 1 pull request ahead of it. The conflict became a base branch one after #305 merged. HintYou should update or rebase your pull request. If you want to requeue this pull request, you can post a Requeued — the merge queue status continues in this comment ↓. |
|
@dependabot[bot] this pull request is now in conflict 😩 |
bceb123 to
a4766c8
Compare
a4766c8 to
49b8f18
Compare
Merge Queue Status
This pull request spent 40 minutes 27 seconds in the queue, with no time running CI. ReasonThe pull request conflicts with the base branch The pull request was held in the queue, conflicting with 1 pull request ahead of it. The conflict became a base branch one after #306 merged. HintYou should update or rebase your pull request. If you want to requeue this pull request, you can post a Requeued — the merge queue status continues in this comment ↓. |
|
@dependabot[bot] this pull request is now in conflict 😩 |
49b8f18 to
db7ed99
Compare
Merge Queue Status
This pull request spent 5 minutes 41 seconds in the queue, with no time running CI. ReasonThe pull request conflicts with the base branch The pull request was held in the queue, conflicting with 1 pull request ahead of it. The conflict became a base branch one after #309 merged. HintYou should update or rebase your pull request. If you want to requeue this pull request, you can post a Requeued — the merge queue status continues in this comment ↓. |
|
@dependabot[bot] this pull request is now in conflict 😩 |
Bumps [sqlparse](https://github.com/andialbrecht/sqlparse) from 0.5.5 to 0.6.0. - [Changelog](https://github.com/andialbrecht/sqlparse/blob/master/CHANGELOG) - [Commits](andialbrecht/sqlparse@0.5.5...0.6.0) --- updated-dependencies: - dependency-name: sqlparse dependency-version: 0.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
db7ed99 to
e6f63a0
Compare
Merge Queue Status
This pull request spent 5 minutes 35 seconds in the queue, including 17 seconds running CI. Required conditions to merge
|
The bump itself landed in #307. This is the part that PR carried no record of: sqlparse 0.6.0 lexes MATERIALIZED as a keyword, so the two-keyword heuristic in `Statement.statement_type` stops at the modifier instead of reaching the object, and four public values changed meaning. CREATE MATERIALIZED VIEW "CREATE VIEW" -> "CREATE MATERIALIZED" DROP MATERIALIZED VIEW "DROP VIEW" -> "DROP MATERIALIZED" ALTER MATERIALIZED VIEW "ALTER VIEW" -> "ALTER MATERIALIZED" REFRESH MATERIALIZED VIEW "VIEW" -> "MATERIALIZED" `Statement` is exported and `diff()`/`diff_files()` return `set[Statement]`, so a consumer bucketing on those strings is affected. Nothing inside sql-compare branches on the value except `UnorderedTokenList.STATEMENT_TYPES`, which matched none of them before or after, so comparison results are unchanged. Also pins two cases that predate 0.6.0, because they show the same truncation already has teeth: `CREATE TEMPORARY TABLE` yields "CREATE TEMPORARY", which is not in STATEMENT_TYPES, so temporary tables silently lose the column-order insensitivity that plain CREATE TABLE gets. `CREATE UNLOGGED TABLE` is included as the contrast - UNLOGGED is not a sqlparse keyword, so it is skipped and the type still resolves to "CREATE TABLE". Claude-Session: https://claude.ai/code/session_01XkWQRxh5pfi2Fbuv3Z9wen Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Change-Id: If5b05d1f96310d93905b8f759e12d84f6f1d363f
Bumps sqlparse from 0.5.5 to 0.6.0.
Changelog
Sourced from sqlparse's changelog.
... (truncated)
Commits
2f40da9Update version number.5753f15Align the changelog entries for this release with previous onesb9588d9Unify the benchmark scripts on a shared harness519e416Pair comment/dollar-quote delimiters at the lexer positiona51df6dMeasure reindent offsets backwards to avoid quadratic CPU use73d9ccdUpdate CHANGELOGd1d8060Fix uncontrolled CPU consumption (ReDoS) in the lexer's handling of dollar-qu...ef2012aFix quadratic DoS in group_comments (GHSA-f2ff-p2ww-7p4p)26112ddUpdate Changelog.53ff44bEscape backslashes in output formatters.