Bump sqlparse from 0.4.4 to 0.5.4 in /Resume_parser by dependabot[bot] · Pull Request #3311 · avinashkranjan/Amazing-Python-Scripts
Bumps sqlparse from 0.4.4 to 0.5.4.
Changelog
Sourced from sqlparse's changelog.
Release 0.5.4 (Nov 28, 2025)
Enhancements
- Add support for Python 3.14.
- Add type annotations to top-level API functions and include py.typed marker for PEP 561 compliance, enabling type checking with mypy and other tools (issue756).
- Add pre-commit hook support. sqlparse can now be used as a pre-commit hook to automatically format SQL files. The CLI now supports multiple files and an
--in-placeflag for in-place editing (issue537).- Add
ATTACHandDETACHto PostgreSQL keywords (pr808).- Add
INTERSECTto close keywords in WHERE clause (pr820).- Support
REGEXP BINARYcomparison operator (pr817).Bug Fixes
- Add additional protection against denial of service attacks when parsing very large lists of tuples. This enhances the existing recursion protections with configurable limits for token processing to prevent DoS through algorithmic complexity attacks. The new limits (MAX_GROUPING_DEPTH=100, MAX_GROUPING_TOKENS=10000) can be adjusted or disabled (by setting to None) if needed for legitimate large SQL statements.
- Remove shebang from cli.py and remove executable flag (pr818).
- Fix strip_comments not removing all comments when input contains only comments (issue801, pr803 by stropysh).
- Fix splitting statements with IF EXISTS/IF NOT EXISTS inside BEGIN...END blocks (issue812).
- Fix splitting on semicolons inside BEGIN...END blocks (issue809).
Release 0.5.3 (Dez 10, 2024)
Bug Fixes
- This version introduces a more generalized handling of potential denial of service attack (DOS) due to recursion errors for deeply nested statements. Brought up and fixed by
@living180. Thanks a lot!Release 0.5.2 (Nov 14, 2024)
Bug Fixes
- EXTENSION is now recognized as a keyword (issue785).
- SQL hints are not removed when removing comments (issue262, by skryzh).
... (truncated)
Commits
14e300bBump version.96a67e2Code cleanup.1a3bfbdFix handling of semicolons inside BEGIN...END blocks (fixes #809).e92a032Fix handling of IF EXISTS statements in BEGIN...END blocks (fixes #812).149bebfUpdate Changelog.561a67eUpdate AUTHORS.73c8ba3bugfix ISSUE_801; Remove all comments when only comments1b32387Update action to run on all prs.31903e0Add pre-commit hook support (fixes #537)1357726docs: add AGENTS.md for project guidance and development commands- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the Security Alerts page.