]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 1.1.14 rel_1_1_14
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 5 Sep 2017 14:26:00 +0000 (10:26 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 5 Sep 2017 14:26:00 +0000 (10:26 -0400)
doc/build/changelog/changelog_11.rst
doc/build/changelog/unreleased_11/4048.rst [deleted file]
doc/build/changelog/unreleased_11/4053.rst [deleted file]
doc/build/changelog/unreleased_11/4056.rst [deleted file]
doc/build/changelog/unreleased_11/4067.rst [deleted file]
doc/build/changelog/unreleased_11/4068.rst [deleted file]
doc/build/changelog/unreleased_11/4069.rst [deleted file]
doc/build/conf.py

index af58b80bacdaa0b01b18ba8f1a442dec0a01c00d..3a42f28dcbe3d3c355d2335fcd50c223190daf3e 100644 (file)
 
 .. changelog::
     :version: 1.1.14
-    :include_notes_from: unreleased_11
+    :released: September 5, 2017
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 4069
+        :versions: 1.2.0b3
+
+        Fixed bug in :meth:`.Session.merge` following along similar lines as that
+        of :ticket:`4030`, where an internal check for a target object in
+        the identity map could lead to an error if it were to be garbage collected
+        immediately before the merge routine actually retrieves the object.
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 4048
+        :versions: 1.2.0b3
+
+        Fixed bug where an :func:`.undefer_group` option would not be recognized
+        if it extended from a relationship that was loading using joined eager
+        loading.  Additionally, as the bug led to excess work being performed,
+        Python function call counts are also improved by 20% within the initial
+        calculation of result set columns, complementing the joined eager load
+        improvements of :ticket:`3915`.
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 4068
+
+        Fixed race condition in ORM identity map which would cause objects
+        to be inappropriately removed during a load operation, causing
+        duplicate object identities to occur, particularly under joined eager
+        loading which involves deduplication of objects.  The issue is specific
+        to garbage collection of weak references and is observed only under the
+        Pypy interpreter.
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 4056
+        :versions: 1.2.0b3
+
+        Fixed bug in :meth:`.Session.merge` where objects in a collection that had
+        the primary key attribute set to ``None`` for a key that is  typically
+        autoincrementing would be considered to be a database-persisted key for
+        part of the internal deduplication process, causing only one object to
+        actually be inserted in the database.
+
+    .. change::
+        :tags: bug, sql
+        :tickets: 4053
+
+        Altered the range specification for window functions to allow
+        for two of the same PRECEDING or FOLLOWING keywords in a range
+        by allowing for the left side of the range to be positive
+        and for the right to be negative, e.g. (1, 3) is
+        "1 FOLLOWING AND 3 FOLLOWING".
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 4067
+        :versions: 1.2.0b3
+
+        An :class:`.InvalidRequestError` is raised when a :func:`.synonym`
+        is used against an attribute that is not against a :class:`.MapperProperty`,
+        such as an association proxy.  Previously, a recursion overflow would
+        occur trying to locate non-existent attributes.
 
 .. changelog::
     :version: 1.1.13
diff --git a/doc/build/changelog/unreleased_11/4048.rst b/doc/build/changelog/unreleased_11/4048.rst
deleted file mode 100644 (file)
index 6127361..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 4048
-    :versions: 1.2.0b3
-
-    Fixed bug where an :func:`.undefer_group` option would not be recognized
-    if it extended from a relationship that was loading using joined eager
-    loading.  Additionally, as the bug led to excess work being performed,
-    Python function call counts are also improved by 20% within the initial
-    calculation of result set columns, complementing the joined eager load
-    improvements of :ticket:`3915`.
diff --git a/doc/build/changelog/unreleased_11/4053.rst b/doc/build/changelog/unreleased_11/4053.rst
deleted file mode 100644 (file)
index 718b58f..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, sql
-    :tickets: 4053
-
-    Altered the range specification for window functions to allow
-    for two of the same PRECEDING or FOLLOWING keywords in a range
-    by allowing for the left side of the range to be positive
-    and for the right to be negative, e.g. (1, 3) is
-    "1 FOLLOWING AND 3 FOLLOWING".
diff --git a/doc/build/changelog/unreleased_11/4056.rst b/doc/build/changelog/unreleased_11/4056.rst
deleted file mode 100644 (file)
index b8e02a0..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 4056
-    :versions: 1.2.0b3
-
-    Fixed bug in :meth:`.Session.merge` where objects in a collection that had
-    the primary key attribute set to ``None`` for a key that is  typically
-    autoincrementing would be considered to be a database-persisted key for
-    part of the internal deduplication process, causing only one object to
-    actually be inserted in the database.
diff --git a/doc/build/changelog/unreleased_11/4067.rst b/doc/build/changelog/unreleased_11/4067.rst
deleted file mode 100644 (file)
index 8fa8b92..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 4067
-    :versions: 1.2.0b3
-
-    An :class:`.InvalidRequestError` is raised when a :func:`.synonym`
-    is used against an attribute that is not against a :class:`.MapperProperty`,
-    such as an association proxy.  Previously, a recursion overflow would
-    occur trying to locate non-existent attributes.
diff --git a/doc/build/changelog/unreleased_11/4068.rst b/doc/build/changelog/unreleased_11/4068.rst
deleted file mode 100644 (file)
index 9443b1b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 4068
-
-    Fixed race condition in ORM identity map which would cause objects
-    to be inappropriately removed during a load operation, causing
-    duplicate object identities to occur, particularly under joined eager
-    loading which involves deduplication of objects.  The issue is specific
-    to garbage collection of weak references and is observed only under the
-    Pypy interpreter.
\ No newline at end of file
diff --git a/doc/build/changelog/unreleased_11/4069.rst b/doc/build/changelog/unreleased_11/4069.rst
deleted file mode 100644 (file)
index dadae42..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 4069
-    :versions: 1.2.0b3
-
-    Fixed bug in :meth:`.Session.merge` following along similar lines as that
-    of :ticket:`4030`, where an internal check for a target object in
-    the identity map could lead to an error if it were to be garbage collected
-    immediately before the merge routine actually retrieves the object.
\ No newline at end of file
index e007349d9ddd2b16a6e938dc71a197467634d2c3..0ef3f1a9feddbdfc1c593611301c2c05c701313d 100644 (file)
@@ -110,9 +110,9 @@ copyright = u'2007-2017, the SQLAlchemy authors and contributors'
 # The short X.Y version.
 version = "1.1"
 # The full version, including alpha/beta/rc tags.
-release = "1.1.13"
+release = "1.1.14"
 
-release_date = "August 3, 2017"
+release_date = "September 5, 2017"
 
 site_base = os.environ.get("RTD_SITE_BASE", "http://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"