PR #29 opened: chore(deps)(deps): update alembic requirement from >=1.14.0 to >=1.18.4
Updates the requirements on alembic to permit the latest version.
▶Release notes
Sourced from alembic's releases.
1.18.4
Released: February 10, 2026
bug
[bug] [operations] Reverted the behavior of
Operations.add_column()that would automatically render the "PRIMARY KEY" keyword inline when aColumnwithprimary_key=Trueis added. The automatic behavior, added in version 1.18.2, is now opt-in via the newOperations.add_column.inline_primary_keyparameter. This change restores the ability to render a PostgreSQL SERIAL column, which is required to beprimary_key=True, while not impacting the ability to render a separate primary key constraint. This also provides consistency with theOperations.add_column.inline_referencesparameter and gives users explicit control over SQL generation.To render PRIMARY KEY inline, use the
Operations.add_column.inline_primary_keyparameter set toTrue:op.add_column( "my_table", Column("id", Integer, primary_key=True), inline_primary_key=True )References: #1232
▶Commits
- See full diff 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)