From: Mike Bayer Date: Mon, 26 Sep 2011 21:58:30 +0000 (-0400) Subject: - SQLSoup will not be included in version 0.8 X-Git-Tag: rel_0_7_3~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d279230913d81ba402b53ebdac20ec82b7458aba;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - SQLSoup will not be included in version 0.8 of SQLAlchemy; while useful, we would like to keep SQLAlchemy itself focused on one ORM usage paradigm. SQLSoup will hopefully soon be superseded by a third party project. [ticket:2262] --- diff --git a/CHANGES b/CHANGES index acbcbee797..d4b8bf3387 100644 --- a/CHANGES +++ b/CHANGES @@ -262,6 +262,13 @@ CHANGES the type would be available. [ticket:2252] - ext + - SQLSoup will not be included in version 0.8 + of SQLAlchemy; while useful, we would like to + keep SQLAlchemy itself focused on one ORM + usage paradigm. SQLSoup will hopefully + soon be superseded by a third party + project. [ticket:2262] + - Added local_attr, remote_attr, attr accessors to AssociationProxy, providing quick access to the proxied attributes at the class diff --git a/lib/sqlalchemy/ext/sqlsoup.py b/lib/sqlalchemy/ext/sqlsoup.py index f76a175a4e..fe2f741373 100644 --- a/lib/sqlalchemy/ext/sqlsoup.py +++ b/lib/sqlalchemy/ext/sqlsoup.py @@ -5,6 +5,11 @@ # the MIT License: http://www.opensource.org/licenses/mit-license.php """ + +.. note:: SQLSoup will no longer be included with SQLAlchemy as of 0.8. + Look for a third party project replicating its functionality soon. + + Introduction ============