]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Don't list 1.2.x bugfixes as 1.3.0b1 bugfixes
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 13 Sep 2018 23:43:12 +0000 (17:43 -0600)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 13 Sep 2018 23:43:12 +0000 (17:43 -0600)
We will still list features in 1.3 as backported but
it is too verbose to have all of 1.2.x's bugfixes listed as part
of 1.3.0b1 also.

Change-Id: Icb09050734af86a66a72b3f92a6bd60ee3e2f6ee

doc/build/changelog/changelog_11.rst
doc/build/changelog/changelog_12.rst

index d8e29405f6fcff75db44928c3a0be5c1bdf166b6..3bbd0bd1a09adc92d21d22af05065361b7ad8b95 100644 (file)
@@ -28,7 +28,7 @@
     .. change::
         :tags: bug, mysql
         :tickets: 4205
-        :versions: 1.2.5, 1.3.0b1
+        :versions: 1.2.5
 
         MySQL dialects now query the server version using ``SELECT @@version``
         explicitly to the server to ensure we are getting the correct version
@@ -39,7 +39,7 @@
     .. change::
         :tags: bug, postgresql, py3k
         :tickets: 4208
-        :versions: 1.2.5, 1.3.0b1
+        :versions: 1.2.5
 
         Fixed bug in Postgresql COLLATE / ARRAY adjustment first introduced
         in :ticket:`4006` where new behaviors in Python 3.7 regular expressions
index 3990b26e9a8789d3dfe93aa0f96524655e579a9a..5cee33bcba1474944c03f3de0d1de4b5619683b9 100644 (file)
 
     .. change::
         :tags: bug, sqlite
-        :versions: 1.3.0b1
 
         Fixed issue in test suite where SQLite 3.24 added a new reserved word that
         conflicted with a usage in TypeReflectionTest.  Pull request courtesy Nils
     .. change::
         :tags: bug, oracle, mysql
         :tickets: 4275
-        :versions: 1.3.0b1
 
         Fixed INSERT FROM SELECT with CTEs for the Oracle and MySQL dialects, where
         the CTE was being placed above the entire statement as is typical with
     .. change::
         :tags: bug, engine
         :tickets: 4252
-        :versions: 1.3.0b1
 
         Fixed connection pool issue whereby if a disconnection error were raised
         during the connection pool's "reset on return" sequence in conjunction with
     .. change::
         :tags: bug, oracle
         :tickets: 4264
-        :versions: 1.3.0b1
 
         The Oracle BINARY_FLOAT and BINARY_DOUBLE datatypes now participate within
         cx_Oracle.setinputsizes(), passing along NATIVE_FLOAT, so as to support the
 
     .. change::
         :tags: bug, oracle
-        :versions: 1.3.0b1
 
         Added reflection capabilities for the :class:`.oracle.BINARY_FLOAT`,
         :class:`.oracle.BINARY_DOUBLE` datatypes.
 
     .. change::
         :tags: bug, sql
-        :versions: 1.3.0b1
 
         Fixed issue where the "ambiguous literal" error message used when
         interpreting literal values as SQL expression values would encounter a
     .. change::
         :tags: bug, oracle
         :tickets: 4259
-        :versions: 1.3.0b1
 
         Altered the Oracle dialect such that when an :class:`.Integer` type is in
         use, the cx_Oracle.NUMERIC type is set up for setinputsizes().  In
 
     .. change::
         :tags: bug, engine
-        :versions: 1.3.0b1
 
         Fixed a reference leak issue where the values of the parameter dictionary
         used in a statement execution would remain referenced by the "compiled
     .. change::
        :tags: bug, ext
        :tickets: 4266
-       :versions: 1.3.0b1
 
        Fixed a race condition which could occur if automap
        :meth:`.AutomapBase.prepare` were used within a multi-threaded context
     .. change::
        :tags: bug, tests
        :tickets: 4249
-       :versions: 1.3.0b1
 
        Fixed a bug in the test suite where if an external dialect returned
        ``None`` for ``server_version_info``, the exclusion logic would raise an
     .. change::
         :tags: bug, mssql
         :tickets: 4234
-        :versions: 1.3.0b1
 
         Fixed 1.2 regression caused by :ticket:`4060` where the query used to
         reflect SQL Server cross-schema foreign keys was limiting the criteria
 
     .. change::
         :tags: bug, oracle
-        :versions: 1.3.0b1
 
         The Oracle NUMBER datatype is reflected as INTEGER if the precision is NULL
         and the scale is zero, as this is how INTEGER values come back when
     .. change::
         :tags: bug, sql
         :tickets: 4231
-        :versions: 1.3.0b1
 
         Fixed issue where the compilation of an INSERT statement with the
         "literal_binds" option that also uses an explicit sequence and "inline"
     .. change::
         :tags: bug, mssql
         :tickets: 4227
-        :versions: 1.3.0b1
 
         Adjusted the SQL Server version detection for pyodbc to only allow for
         numeric tokens, filtering out non-integers, since the dialect does tuple-
 
     .. change::
         :tags: feature, postgresql
-        :versions: 1.3.0b1
 
         Added support for "PARTITION BY" in Postgresql table definitions,
         using "postgresql_partition_by".  Pull request courtesy
     .. change::
         :tags: bug, sql
         :tickets: 4204
-        :versions: 1.3.0b1
 
         Fixed a regression that occurred from the previous fix to :ticket:`4204` in
         version 1.2.5, where a CTE that refers to itself after the
     .. change::
         :tags: bug, engine
         :tickets: 4225
-        :versions: 1.3.0b1
 
         Fixed bug in connection pool where a connection could be present in the
         pool without all of its "connect" event handlers called, if a previous
     .. change::
         :tags: bug, oracle
         :tickets: 4211
-        :versions: 1.3.0b1
 
         The minimum cx_Oracle version supported is 5.2 (June 2015).  Previously,
         the dialect asserted against version 5.0 but as of 1.2.2 we are using some
     .. change::
         :tags: bug, orm
         :tickets: 4215
-        :versions: 1.3.0b1
 
         Fixed bug where using :meth:`.Mutable.associate_with` or
         :meth:`.Mutable.as_mutable` in conjunction with a class that has non-
     .. change::
         :tags: bug, sql
         :tickets: 4210
-        :versions: 1.3.0b1
 
         Fixed bug in :class:.`CTE` construct along the same lines as that of
         :ticket:`4204` where a :class:`.CTE` that was aliased would not copy itself
     .. change::
         :tags: bug, orm
         :tickets: 4209
-        :versions: 1.3.0b1
 
         Fixed 1.2 regression where a mapper option that contains an
         :class:`.AliasedClass` object, as is typical when using the