]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 1.4.50 rel_1_4_50
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Oct 2023 20:21:48 +0000 (16:21 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 29 Oct 2023 20:21:48 +0000 (16:21 -0400)
doc/build/changelog/changelog_14.rst
doc/build/changelog/unreleased_14/10142.rst [deleted file]
doc/build/changelog/unreleased_14/10207.rst [deleted file]
doc/build/changelog/unreleased_14/10213.rst [deleted file]
doc/build/changelog/unreleased_14/10223.rst [deleted file]
doc/build/changelog/unreleased_14/10492.rst [deleted file]
doc/build/changelog/unreleased_14/10504.rst [deleted file]
doc/build/changelog/unreleased_14/aiomysql.rst [deleted file]
doc/build/conf.py

index 1409f9db5c1ef8dcdfffa1dd151903735bc1943b..8e3a04c8d066547479598f4c387038b58caf6c5d 100644 (file)
@@ -15,7 +15,81 @@ This document details individual issue-level changes made throughout
 
 .. changelog::
     :version: 1.4.50
-    :include_notes_from: unreleased_14
+    :released: October 29, 2023
+
+    .. change::
+        :tags: bug, sql
+        :tickets: 10142
+        :versions: 2.0.23
+
+        Fixed issue where using the same bound parameter more than once with
+        ``literal_execute=True`` in some combinations with other literal rendering
+        parameters would cause the wrong values to render due to an iteration
+        issue.
+
+    .. change::
+        :tags: mysql, usecase
+        :versions: 2.0.20
+
+        Updated aiomysql dialect since the dialect appears to be maintained again.
+        Re-added to the ci testing using version 0.2.0.
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 10223
+        :versions: 2.0.20
+
+        Fixed fundamental issue which prevented some forms of ORM "annotations"
+        from taking place for subqueries which made use of :meth:`_sql.Select.join`
+        against a relationship target.  These annotations are used whenever a
+        subquery is used in special situations such as within
+        :meth:`_orm.PropComparator.and_` and other ORM-specific scenarios.
+
+    .. change::
+        :tags: bug, sql
+        :tickets: 10213
+        :versions: 2.0.20
+
+        Fixed issue where unpickling of a :class:`_schema.Column` or other
+        :class:`_sql.ColumnElement` would fail to restore the correct "comparator"
+        object, which is used to generate SQL expressions specific to the type
+        object.
+
+    .. change::
+        :tags: bug, mysql
+        :tickets: 10492
+        :versions: 2.0.23
+
+        Repaired a new incompatibility in the MySQL "pre-ping" routine where the
+        ``False`` argument passed to ``connection.ping()``, which is intended to
+        disable an unwanted "automatic reconnect" feature,  is being deprecated in
+        MySQL drivers and backends, and is producing warnings for some versions of
+        MySQL's native client drivers.  It's removed for mysqlclient, whereas for
+        PyMySQL and drivers based on PyMySQL, the parameter will be deprecated and
+        removed at some point, so API introspection is used to future proof against
+        these various stages of removal.
+
+    .. change::
+        :tags: schema, bug
+        :tickets: 10207
+        :versions: 2.0.21
+
+        Modified the rendering of the Oracle only :paramref:`.Identity.order`
+        parameter that's part of both :class:`.Sequence` and :class:`.Identity` to
+        only take place for the Oracle backend, and not other backends such as that
+        of PostgreSQL.  A future release will rename the
+        :paramref:`.Identity.order`, :paramref:`.Sequence.order`  and
+        :paramref:`.Identity.on_null` parameters to Oracle-specific names,
+        deprecating the old names, these parameters only apply to Oracle.
+
+    .. change::
+        :tags: bug, mssql, reflection
+        :tickets: 10504
+        :versions: 2.0.23
+
+        Fixed issue where identity column reflection would fail
+        for a bigint column with a large identity start value
+        (more than 18 digits).
 
 .. changelog::
     :version: 1.4.49
diff --git a/doc/build/changelog/unreleased_14/10142.rst b/doc/build/changelog/unreleased_14/10142.rst
deleted file mode 100644 (file)
index 91643c6..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, sql
-    :tickets: 10142
-    :versions: 2.0.23
-
-    Fixed issue where using the same bound parameter more than once with
-    ``literal_execute=True`` in some combinations with other literal rendering
-    parameters would cause the wrong values to render due to an iteration
-    issue.
diff --git a/doc/build/changelog/unreleased_14/10207.rst b/doc/build/changelog/unreleased_14/10207.rst
deleted file mode 100644 (file)
index aef31e6..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-.. change::
-    :tags: schema, bug
-    :tickets: 10207
-    :versions: 2.0.21
-
-    Modified the rendering of the Oracle only :paramref:`.Identity.order`
-    parameter that's part of both :class:`.Sequence` and :class:`.Identity` to
-    only take place for the Oracle backend, and not other backends such as that
-    of PostgreSQL.  A future release will rename the
-    :paramref:`.Identity.order`, :paramref:`.Sequence.order`  and
-    :paramref:`.Identity.on_null` parameters to Oracle-specific names,
-    deprecating the old names, these parameters only apply to Oracle.
diff --git a/doc/build/changelog/unreleased_14/10213.rst b/doc/build/changelog/unreleased_14/10213.rst
deleted file mode 100644 (file)
index 96c17b1..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, sql
-    :tickets: 10213
-    :versions: 2.0.20
-
-    Fixed issue where unpickling of a :class:`_schema.Column` or other
-    :class:`_sql.ColumnElement` would fail to restore the correct "comparator"
-    object, which is used to generate SQL expressions specific to the type
-    object.
diff --git a/doc/build/changelog/unreleased_14/10223.rst b/doc/build/changelog/unreleased_14/10223.rst
deleted file mode 100644 (file)
index 7c74424..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 10223
-    :versions: 2.0.20
-
-    Fixed fundamental issue which prevented some forms of ORM "annotations"
-    from taking place for subqueries which made use of :meth:`_sql.Select.join`
-    against a relationship target.  These annotations are used whenever a
-    subquery is used in special situations such as within
-    :meth:`_orm.PropComparator.and_` and other ORM-specific scenarios.
diff --git a/doc/build/changelog/unreleased_14/10492.rst b/doc/build/changelog/unreleased_14/10492.rst
deleted file mode 100644 (file)
index 8ddf573..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-.. change::
-    :tags: bug, mysql
-    :tickets: 10492
-    :versions: 2.0.23
-
-    Repaired a new incompatibility in the MySQL "pre-ping" routine where the
-    ``False`` argument passed to ``connection.ping()``, which is intended to
-    disable an unwanted "automatic reconnect" feature,  is being deprecated in
-    MySQL drivers and backends, and is producing warnings for some versions of
-    MySQL's native client drivers.  It's removed for mysqlclient, whereas for
-    PyMySQL and drivers based on PyMySQL, the parameter will be deprecated and
-    removed at some point, so API introspection is used to future proof against
-    these various stages of removal.
diff --git a/doc/build/changelog/unreleased_14/10504.rst b/doc/build/changelog/unreleased_14/10504.rst
deleted file mode 100644 (file)
index 7afc00f..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, mssql, reflection
-    :tickets: 10504
-    :versions: 2.0.23
-
-    Fixed issue where identity column reflection would fail
-    for a bigint column with a large identity start value
-    (more than 18 digits).
diff --git a/doc/build/changelog/unreleased_14/aiomysql.rst b/doc/build/changelog/unreleased_14/aiomysql.rst
deleted file mode 100644 (file)
index ef6fc4c..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: mysql, usecase
-    :versions: 2.0.20
-
-    Updated aiomysql dialect since the dialect appears to be maintained again.
-    Re-added to the ci testing using version 0.2.0.
index 52d2753a8206849d5e9df870b2f2a6e64356ba5e..48b76a0bfc960de33ce9e69b72782eb5a982f604 100644 (file)
@@ -219,9 +219,9 @@ copyright = u"2007-2023, the SQLAlchemy authors and contributors"  # noqa
 # The short X.Y version.
 version = "1.4"
 # The full version, including alpha/beta/rc tags.
-release = "1.4.49"
+release = "1.4.50"
 
-release_date = "July 5, 2023"
+release_date = "October 29, 2023"
 
 site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"