]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
changelog updates
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 10 Jun 2021 18:13:07 +0000 (14:13 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 10 Jun 2021 18:13:07 +0000 (14:13 -0400)
Change-Id: I250e3e084ddb75b535913f9e0d7c219d64e35695

doc/build/changelog/unreleased_13/6589.rst
doc/build/changelog/unreleased_14/6575.rst
doc/build/changelog/unreleased_14/6581.rst

index 7d7530e967fcc2471f6b7dbdf4cee8543feec22d..b6f5fc606355e759048526e136df321cae272f1d 100644 (file)
@@ -1,6 +1,7 @@
 .. change::
-    :tags: bug, pysqlcipher
+    :tags: bug, sqlite
     :tickets: 6589
     :versions: 1.4.18
 
-    Add note regarding encryption-related pragmas passed in the url.
+    Add note regarding encryption-related pragmas for pysqlcipher passed in the
+    url.
index ee3ac7d89a27cc45270b9ceeb2678e5f82ec5e65..17f7beef8ea2d16b23d94e0e578aa04faf36949c 100644 (file)
@@ -1,6 +1,6 @@
 .. change::
-    :tags: bug, engine, asyncio
-    :tickets: 6285
+    :tags: bug, asyncio
+    :tickets: 6575
 
     Fixed an issue that presented itself when using the :class:`_pool.NullPool`
     or the :class:`_pool.StaticPool` with an async engine. This mostly affected
index 643892b6ab045c4329badc92819e8e8989cf9841..63c6e063438c761e12b8c7672efb049fc4642d21 100644 (file)
@@ -1,11 +1,12 @@
 .. change::
-    :tags: bug, postgresql
+    :tags: bug, postgresql, regression
     :tickets: 6581
 
-    Fixed issue where using the PostgreSQL "INSERT..ON CONFLICT" structure
+    Fixed regression where using the PostgreSQL "INSERT..ON CONFLICT" structure
     would fail to work with the psycopg2 driver if it were used in an
     "executemany" context along with bound parameters in the "SET" clause, due
     to the implicit use of the psycopg2 fast execution helpers which are not
-    appropriate for this style of INSERT statement. Additional checks to
+    appropriate for this style of INSERT statement; as these helpers are the
+    default in 1.4 this is effectively a regression.  Additional checks to
     exclude this kind of statement from that particular extension have been
     added.