summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2017-07-24 17:18:33 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2017-07-24 17:19:46 -0400
commit2b5a48232f668f5ccd152cd4ffdbb65428dca8be (patch)
treee88cb1ec1aa483cbdf86d956d696768da15fa5fe
parent295f5e5deeec6dc4a94bca4fa1152490e64b8e49 (diff)
downloadsqlalchemy-2b5a48232f668f5ccd152cd4ffdbb65428dca8be.tar.gz
- 1.1.12 release date
(cherry picked from commit ad5626cdb9b4d4ac38b2169dc7377d4bc66ee549) Change-Id: Icd2f3ce68451e609c0d1c116256c2e1cf8baf7eb
-rw-r--r--doc/build/changelog/changelog_11.rst46
-rw-r--r--doc/build/changelog/unreleased_11/4030.rst12
-rw-r--r--doc/build/changelog/unreleased_11/4031.rst9
-rw-r--r--doc/build/changelog/unreleased_11/4033.rst10
-rw-r--r--doc/build/changelog/unreleased_11/cache_order_sequence.rst10
5 files changed, 45 insertions, 42 deletions
diff --git a/doc/build/changelog/changelog_11.rst b/doc/build/changelog/changelog_11.rst
index 034c3ae59..190cf793b 100644
--- a/doc/build/changelog/changelog_11.rst
+++ b/doc/build/changelog/changelog_11.rst
@@ -20,7 +20,51 @@
.. changelog::
:version: 1.1.12
- :include_notes_from: unreleased_11
+ :released: July 24, 2017
+
+ .. change:: cache_order_sequence
+ :tags: feature, oracle, posgresql
+ :versions: 1.2.0b1
+
+ Added new keywords :paramref:`.Sequence.cache` and
+ :paramref:`.Sequence.order` to :class:`.Sequence`, to allow rendering
+ of the CACHE parameter understood by Oracle and PostgreSQL, and the
+ ORDER parameter understood by Oracle. Pull request
+ courtesy David Moore.
+
+
+ .. change:: 4033
+ :tags: bug, orm
+ :tickets: 4033
+ :versions: 1.2.0b2
+
+ Fixed regression from 1.1.11 where adding additional non-entity
+ columns to a query that includes an entity with subqueryload
+ relationships would fail, due to an inspection added in 1.1.11 as a
+ result of :ticket:`4011`.
+
+
+ .. change:: 4031
+ :tags: bug, orm
+ :versions: 1.2.0b2
+ :tickets: 4031
+
+ Fixed bug involving JSON NULL evaluation logic added in 1.1 as part
+ of :ticket:`3514` where the logic would not accommodate ORM
+ mapped attributes named differently from the :class:`.Column`
+ that was mapped.
+
+ .. change:: 4030
+ :tags: bug, orm
+ :versions: 1.2.0b2
+ :tickets: 4030
+
+ Added ``KeyError`` checks to all methods within
+ :class:`.WeakInstanceDict` where a check for ``key in dict`` is
+ followed by indexed access to that key, to guard against a race against
+ garbage collection that under load can remove the key from the dict
+ after the code assumes its present, leading to very infrequent
+ ``KeyError`` raises.
.. changelog::
:version: 1.1.11
diff --git a/doc/build/changelog/unreleased_11/4030.rst b/doc/build/changelog/unreleased_11/4030.rst
deleted file mode 100644
index 5b25b0ae7..000000000
--- a/doc/build/changelog/unreleased_11/4030.rst
+++ /dev/null
@@ -1,12 +0,0 @@
-.. change:: 4030
- :tags: bug, orm
- :versions: 1.2.0b2
- :tickets: 4030
-
- Added ``KeyError`` checks to all methods within
- :class:`.WeakInstanceDict` where a check for ``key in dict`` is
- followed by indexed access to that key, to guard against a race against
- garbage collection that under load can remove the key from the dict
- after the code assumes its present, leading to very infrequent
- ``KeyError`` raises.
-
diff --git a/doc/build/changelog/unreleased_11/4031.rst b/doc/build/changelog/unreleased_11/4031.rst
deleted file mode 100644
index 57aa45594..000000000
--- a/doc/build/changelog/unreleased_11/4031.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change:: 4031
- :tags: bug, orm
- :versions: 1.2.0b2
- :tickets: 4031
-
- Fixed bug involving JSON NULL evaluation logic added in 1.1 as part
- of :ticket:`3514` where the logic would not accommodate ORM
- mapped attributes named differently from the :class:`.Column`
- that was mapped.
diff --git a/doc/build/changelog/unreleased_11/4033.rst b/doc/build/changelog/unreleased_11/4033.rst
deleted file mode 100644
index 36854ad83..000000000
--- a/doc/build/changelog/unreleased_11/4033.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change:: 4033
- :tags: bug, orm
- :tickets: 4033
- :versions: 1.2.0b2
-
- Fixed regression from 1.1.11 where adding additional non-entity
- columns to a query that includes an entity with subqueryload
- relationships would fail, due to an inspection added in 1.1.11 as a
- result of :ticket:`4011`.
-
diff --git a/doc/build/changelog/unreleased_11/cache_order_sequence.rst b/doc/build/changelog/unreleased_11/cache_order_sequence.rst
deleted file mode 100644
index 2ba714671..000000000
--- a/doc/build/changelog/unreleased_11/cache_order_sequence.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change:: cache_order_sequence
- :tags: feature, oracle, posgresql
- :versions: 1.2.0b1
-
- Added new keywords :paramref:`.Sequence.cache` and
- :paramref:`.Sequence.order` to :class:`.Sequence`, to allow rendering
- of the CACHE parameter understood by Oracle and PostgreSQL, and the
- ORDER parameter understood by Oracle. Pull request
- courtesy David Moore.
-