This commit is contained in:
Mike Bayer
2019-10-09 18:31:36 -04:00
parent 1723d7d59f
commit 57e2433dcd
4 changed files with 24 additions and 22 deletions
+22 -1
View File
@@ -12,7 +12,28 @@
.. changelog::
:version: 1.3.10
:include_notes_from: unreleased_13
:released: October 9, 2019
.. change::
:tags: bug, mssql
:tickets: 4857
Fixed bug in SQL Server dialect with new "max_identifier_length" feature
where the mssql dialect already featured this flag, and the implementation
did not accommodate for the new initialization hook correctly.
.. change::
:tags: bug, oracle
:tickets: 4898, 4857
Fixed regression in Oracle dialect that was inadvertently using max
identifier length of 128 characters on Oracle server 12.2 and greater even
though the stated contract for the remainder of the 1.3 series is that
this value stays at 30 until version SQLAlchemy 1.4. Also repaired issues
with the retrieval of the "compatibility" version, and removed the warning
emitted when the "v$parameter" view was not accessible as this was causing
user confusion.
.. changelog::
:version: 1.3.9
-8
View File
@@ -1,8 +0,0 @@
.. change::
:tags: bug, mssql
:tickets: 4857
Fixed bug in SQL Server dialect with new "max_identifier_length" feature
where the mssql dialect already featured this flag, and the implementation
did not accommodate for the new initialization hook correctly.
-11
View File
@@ -1,11 +0,0 @@
.. change::
:tags: bug, oracle
:tickets: 4898, 4857
Fixed regression in Oracle dialect that was inadvertently using max
identifier length of 128 characters on Oracle server 12.2 and greater even
though the stated contract for the remainder of the 1.3 series is that
this value stays at 30 until version SQLAlchemy 1.4. Also repaired issues
with the retrieval of the "compatibility" version, and removed the warning
emitted when the "v$parameter" view was not accessible as this was causing
user confusion.
+2 -2
View File
@@ -109,9 +109,9 @@ copyright = u'2007-2019, the SQLAlchemy authors and contributors'
# The short X.Y version.
version = "1.3"
# The full version, including alpha/beta/rc tags.
release = "1.3.9"
release = "1.3.10"
release_date = "October 4, 2019"
release_date = "October 9, 2019"
site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org")
site_adapter_template = "docs_adapter.mako"