]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 1.3.22 rel_1_3_22
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 18 Dec 2020 21:05:31 +0000 (16:05 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 18 Dec 2020 21:05:31 +0000 (16:05 -0500)
doc/build/changelog/changelog_13.rst
doc/build/changelog/unreleased_13/5784.rst [deleted file]
doc/build/conf.py

index c7bf4a0d620ce1587c3c0042de4703c4ec90028f..bde93d6bc6b5083ea1335c7941c16465d548f17e 100644 (file)
 
 .. changelog::
     :version: 1.3.22
-    :include_notes_from: unreleased_13
+    :released: December 18, 2020
+
+    .. change::
+        :tags: bug, oracle
+        :tickets: 5784
+        :versions: 1.4.0b2
+
+        Fixed regression which occured due to :ticket:`5755` which implemented
+        isolation level support for Oracle.   It has been reported that many Oracle
+        accounts don't actually have permission to query the ``v$transaction``
+        view so this feature has been altered to gracefully fallback when it fails
+        upon database connect, where the dialect will assume "READ COMMITTED" is
+        the default isolation level as was the case prior to SQLAlchemy 1.3.21.
+        However, explicit use of the :meth:`_engine.Connection.get_isolation_level`
+        method must now necessarily raise an exception, as Oracle databases with
+        this restriction explicitly disallow the user from reading the current
+        isolation level.
 
 .. changelog::
     :version: 1.3.21
diff --git a/doc/build/changelog/unreleased_13/5784.rst b/doc/build/changelog/unreleased_13/5784.rst
deleted file mode 100644 (file)
index 87ee080..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-.. change::
-    :tags: bug, oracle
-    :tickets: 5784
-    :versions: 1.4.0b2
-
-    Fixed regression which occured due to :ticket:`5755` which implemented
-    isolation level support for Oracle.   It has been reported that many Oracle
-    accounts don't actually have permission to query the ``v$transaction``
-    view so this feature has been altered to gracefully fallback when it fails
-    upon database connect, where the dialect will assume "READ COMMITTED" is
-    the default isolation level as was the case prior to SQLAlchemy 1.3.21.
-    However, explicit use of the :meth:`_engine.Connection.get_isolation_level`
-    method must now necessarily raise an exception, as Oracle databases with
-    this restriction explicitly disallow the user from reading the current
-    isolation level.
\ No newline at end of file
index bafa0b32c22cc96b5a82bb0755619326c06cd68b..532d7cda0786d6cd5215f905effaf2e5a210ae8f 100644 (file)
@@ -171,9 +171,9 @@ copyright = u"2007-2020, the SQLAlchemy authors and contributors"  # noqa
 # The short X.Y version.
 version = "1.3"
 # The full version, including alpha/beta/rc tags.
-release = "1.3.21"
+release = "1.3.22"
 
-release_date = "December 17, 2020"
+release_date = "December 18, 2020"
 
 site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"