mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-21 16:12:03 -04:00
- 1.3.10
This commit is contained in:
Vendored
+22
-1
@@ -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
@@ -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
@@ -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.
|
||||
Vendored
+2
-2
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user