Skip to content

Commit

Permalink
- 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeek committed Jan 29, 2021
1 parent c1eb8d5 commit 07fcf34
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 29 deletions.
31 changes: 30 additions & 1 deletion docs/build/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,36 @@ Changelog

.. changelog::
:version: 1.5.3
:include_notes_from: unreleased
:released: January 29, 2021

.. change::
:tags: bug, autogenerate
:tickets: 786

Changed the default ordering of "CREATE" and "DROP" statements indexes and
unique constraints within the autogenerate process, so that for example in
an upgrade() operation, a particular index or constraint that is to be
replaced such as for a casing convention change will not produce any naming
conflicts. For foreign key constraint objects, this is already how
constraints are ordered, and for table objects, users would normally want
to use :meth:`.Operations.rename_table` in any case.

.. change::
:tags: bug, autogenerate, mssql
:tickets: 787

Fixed assorted autogenerate issues with SQL Server:

* ignore default reflected identity on primary_key columns
* improve server default comparison

.. change::
:tags: bug, mysql, autogenerate
:tickets: 788

Fixed issue where autogenerate rendering of ``op.alter_column()`` would
fail to include MySQL ``existing_nullable=False`` if the column were part
of a primary key constraint within the table metadata.

.. changelog::
:version: 1.5.2
Expand Down
4 changes: 2 additions & 2 deletions docs/build/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
# The short X.Y version.
version = alembic.__version__
# The full version, including alpha/beta/rc tags.
release = "1.5.2"
release_date = "January 20, 2021"
release = "1.5.3"
release_date = "January 29, 2021"


# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down
11 changes: 0 additions & 11 deletions docs/build/unreleased/786.rst

This file was deleted.

8 changes: 0 additions & 8 deletions docs/build/unreleased/787.rst

This file was deleted.

7 changes: 0 additions & 7 deletions docs/build/unreleased/788.rst

This file was deleted.

0 comments on commit 07fcf34

Please sign in to comment.