diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-03-12 16:23:09 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2015-03-12 16:23:24 -0400 |
commit | 75b4c67a56f6077f5d5f98e22c1e2db56f983e1c (patch) | |
tree | 0ace53d6b1493304eca9854762f6fe15ea877b40 | |
parent | dcbedfd61ae07315cd4b2d9cc76b5d2cb6d47926 (diff) | |
download | sqlalchemy-75b4c67a56f6077f5d5f98e22c1e2db56f983e1c.tar.gz |
- repair forwards-port directives
-rw-r--r-- | doc/build/changelog/changelog_09.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index d6439cc1e..24ee8cb27 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -17,6 +17,7 @@ .. change:: :tags: feature, orm :tickets: 3320 + :versions: 1.0.0 Added a new entry ``"entity"`` to the dictionaries returned by :attr:`.Query.column_descriptions`. This refers to the primary ORM @@ -32,6 +33,7 @@ .. change:: :tags: feature, postgresql :pullreq: bitbucket:45 + :versions: 1.0.0 Added support for the ``CONCURRENTLY`` keyword with Postgresql indexes, established using ``postgresql_concurrently``. Pull @@ -44,6 +46,7 @@ .. change:: :tags: bug, ext, py3k :pullreq: github:154 + :versions: 1.0.0 Fixed bug where the association proxy list class would not interpret slices correctly under Py3K. Pull request courtesy @@ -52,6 +55,7 @@ .. change:: :tags: feature, sqlite :pullreq: bitbucket:42 + :versions: 1.0.0 Added support for partial indexes (e.g. with a WHERE clause) on SQLite. Pull request courtesy Kai Groner. @@ -63,6 +67,7 @@ .. change:: :tags: bug, orm :tickets: 3310 + :versions: 1.0.0 Fixed bugs in ORM object comparisons where comparison of many-to-one ``!= None`` would fail if the source were an aliased @@ -75,6 +80,7 @@ .. change:: :tags: bug, orm :tickets: 3309 + :versions: 1.0.0 Fixed bug where internal assertion would fail in the case where an ``after_rollback()`` handler for a :class:`.Session` incorrectly @@ -85,6 +91,7 @@ .. change:: :tags: bug, orm :pullreq: github:147 + :versions: 1.0.0 Fixed bug where TypeError raised when :meth:`.Query.join` called with unknown kw arguments would raise its own TypeError due @@ -93,6 +100,7 @@ .. change:: :tags: bug, engine :tickets: 3302 + :versions: 1.0.0 Fixed bug in :class:`.Connection` and pool where the :meth:`.Connection.invalidate` method, or an invalidation due @@ -104,6 +112,7 @@ .. change:: :tags: feature, orm :tickets: 3296 + :versions: 1.0.0 Added new parameter :paramref:`.Session.connection.execution_options` which may be used to set up execution options on a :class:`.Connection` @@ -120,6 +129,7 @@ .. change:: :tags: bug, engine :tickets: 3296 + :versions: 1.0.0 A warning is emitted if the ``isolation_level`` parameter is used with :meth:`.Connection.execution_options` when a :class:`.Transaction` @@ -130,6 +140,7 @@ .. change:: :tags: bug, orm :tickets: 3300 + :versions: 1.0.0 Fixed bug in lazy loading SQL construction whereby a complex primaryjoin that referred to the same "local" column multiple @@ -140,6 +151,7 @@ .. change:: :tags: bug, postgresql :tickets: 2940 + :versions: 1.0.0 Repaired support for Postgresql UUID types in conjunction with the ARRAY type when using psycopg2. The psycopg2 dialect now @@ -152,6 +164,7 @@ .. change:: :tags: bug, postgresql :pullreq: github:145 + :versions: 1.0.0 Added support for the :class:`postgresql.JSONB` datatype when using psycopg2 2.5.4 or greater, which features native conversion @@ -165,6 +178,7 @@ .. change:: :tags: bug, postgresql + :versions: 1.0.0 Repaired the use of the "array_oid" flag when registering the HSTORE type with older psycopg2 versions < 2.4.3, which does not |