Skip to content

Commit

Permalink
- 1.4.31
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeek committed Jan 21, 2022
1 parent 8f96f10 commit ab42b0e
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 37 deletions.
40 changes: 39 additions & 1 deletion doc/build/changelog/changelog_14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,45 @@ This document details individual issue-level changes made throughout

.. changelog::
:version: 1.4.31
:include_notes_from: unreleased_14
:released: January 20, 2022

.. change::
:tags: bug, postgresql, regression
:tickets: 7590

Fixed regression where the change in :ticket:`7148` to repair ENUM handling
in PostgreSQL broke the use case of an empty ARRAY of ENUM, preventing rows
that contained an empty array from being handled correctly when fetching
results.

.. change::
:tags: bug, orm
:tickets: 7591

Fixed issue in :meth:`_orm.Session.bulk_save_objects` where the sorting
that takes place when the ``preserve_order`` parameter is set to False
would sort partially on ``Mapper`` objects, which is rejected in Python
3.11.


.. change::
:tags: bug, mysql, regression
:tickets: 7593

Fixed regression in asyncmy dialect caused by :ticket:`7567` where removal
of the PyMySQL dependency broke binary columns, due to the asyncmy dialect
not being properly included within CI tests.

.. change::
:tags: mssql
:tickets: 7243

Added support for ``FILESTREAM`` when using ``VARBINARY(max)``
in MSSQL.

.. seealso::

:paramref:`_mssql.VARBINARY.filestream`

.. changelog::
:version: 1.4.30
Expand Down
10 changes: 0 additions & 10 deletions doc/build/changelog/unreleased_14/7243.rst

This file was deleted.

8 changes: 0 additions & 8 deletions doc/build/changelog/unreleased_14/7590.rst

This file was deleted.

9 changes: 0 additions & 9 deletions doc/build/changelog/unreleased_14/7591.rst

This file was deleted.

7 changes: 0 additions & 7 deletions doc/build/changelog/unreleased_14/7593.rst

This file was deleted.

4 changes: 2 additions & 2 deletions doc/build/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@
# The short X.Y version.
version = "1.4"
# The full version, including alpha/beta/rc tags.
release = "1.4.30"
release = "1.4.31"

release_date = "January 19, 2022"
release_date = "January 20, 2022"

site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org")
site_adapter_template = "docs_adapter.mako"
Expand Down

0 comments on commit ab42b0e

Please sign in to comment.