From: Mike Bayer Date: Tue, 3 Mar 2015 00:27:21 +0000 (-0500) Subject: - changelog and migration notes for new pg8000 features from X-Git-Tag: rel_1_0_0b1~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05ac6bcc0e2f7557f26a05e171be956c651f443a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - changelog and migration notes for new pg8000 features from pullreq github:132 --- diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst index e1c22c0197..694c780fbe 100644 --- a/doc/build/changelog/changelog_10.rst +++ b/doc/build/changelog/changelog_10.rst @@ -23,6 +23,22 @@ series as well. For changes that are specific to 1.0 with an emphasis on compatibility concerns, see :doc:`/changelog/migration_10`. + .. change:: + :tags: feature, postgresql + :pullreq: github:132 + + The PG8000 dialect now supports the + :paramref:`.create_engine.encoding` parameter, by setting up + the client encoding on the connection which is then intercepted + by pg8000. Pull request courtesy Tony Locke. + + .. change:: + :tags: feature, postgresql + :pullreq: github:132 + + Added support for PG8000's native JSONB feature. Pull request + courtesy Tony Locke. + .. change:: :tags: change, orm diff --git a/doc/build/changelog/migration_10.rst b/doc/build/changelog/migration_10.rst index 7783c90c04..80bff1bbf2 100644 --- a/doc/build/changelog/migration_10.rst +++ b/doc/build/changelog/migration_10.rst @@ -1852,6 +1852,20 @@ by Postgresql as of 9.4. SQLAlchemy allows this using :class:`.FunctionFilter` +PG8000 dialect supports client side encoding +--------------------------------------------- + +The :paramref:`.create_engine.encoding` parameter is now honored +by the pg8000 dialect, using on connect handler which +emits ``SET CLIENT_ENCODING`` matching the selected encoding. + +PG8000 native JSONB support +-------------------------------------- + +Support for PG8000 versions greater than 1.10.1 has been added, where +JSONB is supported natively. + + Support for psycopg2cffi Dialect on Pypy ----------------------------------------