Thread: [Sqlalchemy-commits] commit/sqlalchemy: 3 new changesets (Page 3)
Brought to you by:
zzzeek
From: Bitbucket <com...@bi...> - 2013-11-29 23:54:47
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e6f67f48054d/ Changeset: e6f67f48054d Branch: None User: zzzeek Date: 2013-11-30 00:15:52 Summary: Fixed bug where in Py2K a unicode literal would not be accepted as the string name of a class or other argument within declarative using :func:`.relationship`. Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/c368034ca058/ Changeset: c368034ca058 Branch: None User: zzzeek Date: 2013-11-30 00:53:37 Summary: remove this Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/58fab1be984a/ Changeset: 58fab1be984a Branch: None User: zzzeek Date: 2013-11-30 00:53:53 Summary: - start reworking examples to include more code from the wiki. - add the other versioning examples from the wiki - modernize the dictlike examples Affected #: 9 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-11-30 21:46:19
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/dceadfca5173/ Changeset: dceadfca5173 Branch: None User: Marc Abramowitz Date: 2013-11-25 19:18:24 Summary: README.unittests.rst: Add blurb about tox Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/7d0cefb4181a/ Changeset: 7d0cefb4181a Branch: None User: zzzeek Date: 2013-11-30 22:44:12 Summary: Merge pull request #49 from msabramo/add_note_to_README_unittests_about_tox README.unittests.rst: Add blurb about tox Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/94f0541ebd00/ Changeset: 94f0541ebd00 Branch: None User: zzzeek Date: 2013-11-30 22:45:53 Summary: .tox Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-05 23:39:29
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3621e4b8de91/ Changeset: 3621e4b8de91 Branch: None User: zzzeek Date: 2013-12-06 00:36:59 Summary: - changelog + test for pullreq #7, MSSQL dialect for DROP INDEX Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2f18f9b2f5f3/ Changeset: 2f18f9b2f5f3 Branch: None User: dharland Date: 2013-12-06 00:37:50 Summary: Fix MSSQL dialects visit_drop_index to use the correct DDL Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/187db36b74c7/ Changeset: 187db36b74c7 Branch: rel_0_8 User: zzzeek Date: 2013-12-06 00:37:58 Summary: - changelog + test for pullreq #7, MSSQL dialect for DROP INDEX Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-06 21:35:48
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/661b1158b44f/ Changeset: 661b1158b44f Branch: rel_0_8 User: zzzeek Date: 2013-12-06 22:33:09 Summary: - Made a slight adjustment to the logic which waits for a pooled connection to be available, such that for a connection pool with no timeout specified, it will every half a second break out of the wait to check for the so-called "abort" flag, which allows the waiter to break out in case the whole connection pool was dumped; normally the waiter should break out due to a notify_all() but it's possible this notify_all() is missed in very slim cases. This is an extension of logic first introduced in 0.8.0, and the issue has only been observed occasionally in stress tests. Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/003b288b7644/ Changeset: 003b288b7644 Branch: master User: zzzeek Date: 2013-12-06 22:33:42 Summary: - Made a slight adjustment to the logic which waits for a pooled connection to be available, such that for a connection pool with no timeout specified, it will every half a second break out of the wait to check for the so-called "abort" flag, which allows the waiter to break out in case the whole connection pool was dumped; normally the waiter should break out due to a notify_all() but it's possible this notify_all() is missed in very slim cases. This is an extension of logic first introduced in 0.8.0, and the issue has only been observed occasionally in stress tests. Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/300264ab38de/ Changeset: 300264ab38de Branch: rel_0_9 User: zzzeek Date: 2013-12-06 22:34:20 Summary: - Made a slight adjustment to the logic which waits for a pooled connection to be available, such that for a connection pool with no timeout specified, it will every half a second break out of the wait to check for the so-called "abort" flag, which allows the waiter to break out in case the whole connection pool was dumped; normally the waiter should break out due to a notify_all() but it's possible this notify_all() is missed in very slim cases. This is an extension of logic first introduced in 0.8.0, and the issue has only been observed occasionally in stress tests. Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-07 00:59:42
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d1cc78479d98/ Changeset: d1cc78479d98 Branch: master User: zzzeek Date: 2013-12-07 01:57:19 Summary: - The :class:`.QueuePool` has been enhanced to not block new connection attempts when an existing connection attempt is blocking. Previously, the production of new connections was serialized within the block that monitored overflow; the overflow counter is now altered within it's own critical section outside of the connection process itself. [ticket:2880] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b1e55723c0fa/ Changeset: b1e55723c0fa Branch: rel_0_9 User: zzzeek Date: 2013-12-07 01:58:50 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/507a33319f72/ Changeset: 507a33319f72 Branch: rel_0_8 User: zzzeek Date: 2013-12-07 01:59:06 Summary: - The :class:`.QueuePool` has been enhanced to not block new connection attempts when an existing connection attempt is blocking. Previously, the production of new connections was serialized within the block that monitored overflow; the overflow counter is now altered within it's own critical section outside of the connection process itself. [ticket:2880] Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-07 04:02:29
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a8efeb6c0523/ Changeset: a8efeb6c0523 Branch: master User: zzzeek Date: 2013-12-07 05:01:08 Summary: - restore having the connection closed before decrementing the overflow counter Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/181470e78fff/ Changeset: 181470e78fff Branch: rel_0_9 User: zzzeek Date: 2013-12-07 05:01:29 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/71a9947410a3/ Changeset: 71a9947410a3 Branch: rel_0_8 User: zzzeek Date: 2013-12-07 05:01:59 Summary: - restore having the connection closed before decrementing the overflow counter Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-07 22:24:50
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6d5eae78a7dd/ Changeset: 6d5eae78a7dd Branch: master User: zzzeek Date: 2013-12-07 23:20:05 Summary: - A DBAPI that raises an error on ``connect()`` which is not a subclass of dbapi.Error (such as ``TypeError``, ``NotImplementedError``, etc.) will propagate the exception unchanged. Previously, the error handling specific to the ``connect()`` routine would both inappropriately run the exception through the dialect's :meth:`.Dialect.is_disconnect` routine as well as wrap it in a :class:`sqlalchemy.exc.DBAPIError`. It is now propagated unchanged in the same way as occurs within the execute process. [ticket:2881] - add tests for this in test_parseconnect, but also add tests in test_execute to ensure the execute() behavior as well Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/15ace0b0c15e/ Changeset: 15ace0b0c15e Branch: rel_0_9 User: zzzeek Date: 2013-12-07 23:20:42 Summary: Merge branch 'master' into rel_0_9 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b113202eecd7/ Changeset: b113202eecd7 Branch: rel_0_8 User: zzzeek Date: 2013-12-07 23:24:11 Summary: - A DBAPI that raises an error on ``connect()`` which is not a subclass of dbapi.Error (such as ``TypeError``, ``NotImplementedError``, etc.) will propagate the exception unchanged. Previously, the error handling specific to the ``connect()`` routine would both inappropriately run the exception through the dialect's :meth:`.Dialect.is_disconnect` routine as well as wrap it in a :class:`sqlalchemy.exc.DBAPIError`. It is now propagated unchanged in the same way as occurs within the execute process. [ticket:2881] - add tests for this in test_parseconnect, but also add tests in test_execute to ensure the execute() behavior as well Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-10 01:57:47
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/111c61546c6e/ Changeset: 111c61546c6e Branch: master User: zzzeek Date: 2013-12-10 02:56:10 Summary: sqlany dialect moves to github Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/7c651478058c/ Changeset: 7c651478058c Branch: rel_0_9 User: zzzeek Date: 2013-12-10 02:56:18 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/a6eaf1cceb00/ Changeset: a6eaf1cceb00 Branch: rel_0_8 User: zzzeek Date: 2013-12-10 02:57:18 Summary: sqlany dialect moves to github Conflicts: doc/build/dialects/index.rst Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-12 01:02:34
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5294342018c6/ Changeset: 5294342018c6 Branch: None User: zzzeek Date: 2013-12-12 01:48:56 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d5384d601107/ Changeset: d5384d601107 Branch: master User: zzzeek Date: 2013-12-12 02:00:39 Summary: - implement "literal binds" for the text() clause, [ticket:2882] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b7c4d7e574a9/ Changeset: b7c4d7e574a9 Branch: rel_0_9 User: zzzeek Date: 2013-12-12 02:02:00 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-12 17:54:26
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ace7bdbc7857/ Changeset: ace7bdbc7857 Branch: master User: zzzeek Date: 2013-12-12 18:49:57 Summary: - Error message when a string arg sent to :func:`.relationship` which doesn't resolve to a class or mapper has been corrected to work the same way as when a non-string arg is received, which indicates the name of the relationship which had the configurational error. [ticket:2888] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e8823198a2cf/ Changeset: e8823198a2cf Branch: rel_0_9 User: zzzeek Date: 2013-12-12 18:50:12 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/69154698d20d/ Changeset: 69154698d20d Branch: rel_0_8 User: zzzeek Date: 2013-12-12 18:53:34 Summary: - Error message when a string arg sent to :func:`.relationship` which doesn't resolve to a class or mapper has been corrected to work the same way as when a non-string arg is received, which indicates the name of the relationship which had the configurational error. [ticket:2888] Conflicts: lib/sqlalchemy/orm/relationships.py Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-12 18:33:29
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f244287f4647/ Changeset: f244287f4647 Branch: master User: zzzeek Date: 2013-12-12 19:30:16 Summary: - :func:`.composite` will raise an informative error message when the columns/attribute (names) passed don't resolve to a Column or mapped attribute (such as an erroneous tuple); previously raised an unbound local. [ticket:2889] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9df84c6269dd/ Changeset: 9df84c6269dd Branch: rel_0_9 User: zzzeek Date: 2013-12-12 19:31:10 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/730f585dc687/ Changeset: 730f585dc687 Branch: rel_0_8 User: zzzeek Date: 2013-12-12 19:32:57 Summary: - :func:`.composite` will raise an informative error message when the columns/attribute (names) passed don't resolve to a Column or mapped attribute (such as an erroneous tuple); previously raised an unbound local. [ticket:2889] Conflicts: test/orm/test_composites.py Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-12 18:37:28
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9c41c2cdc61b/ Changeset: 9c41c2cdc61b Branch: rel_0_8 User: zzzeek Date: 2013-12-12 19:36:25 Summary: make the error message for [ticket:2889] more accurate, as we support composites to many-to-ones now also Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/752359936645/ Changeset: 752359936645 Branch: master User: zzzeek Date: 2013-12-12 19:36:58 Summary: make the error message for [ticket:2889] more accurate, as we support composites to many-to-ones now also Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/8a70b456ec8d/ Changeset: 8a70b456ec8d Branch: rel_0_9 User: zzzeek Date: 2013-12-12 19:37:02 Summary: Merge branch 'master' into rel_0_9 Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-16 01:08:23
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/638c1c46b232/ Changeset: 638c1c46b232 Branch: master User: zzzeek Date: 2013-12-16 02:06:27 Summary: load_on_pending is different from enable_relationship_loading and should not be superseded. both have a potential use. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f49051838fa2/ Changeset: f49051838fa2 Branch: rel_0_9 User: zzzeek Date: 2013-12-16 02:06:49 Summary: Merge branch 'master' into rel_0_9 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/296f648e39e1/ Changeset: 296f648e39e1 Branch: rel_0_8 User: zzzeek Date: 2013-12-16 02:07:59 Summary: load_on_pending is different from enable_relationship_loading and should not be superseded. both have a potential use. Conflicts: lib/sqlalchemy/orm/relationships.py Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-16 19:37:16
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/015e804c4889/ Changeset: 015e804c4889 Branch: master User: zzzeek Date: 2013-12-16 20:35:51 Summary: wrong method name Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/e5fa10149275/ Changeset: e5fa10149275 Branch: rel_0_9 User: zzzeek Date: 2013-12-16 20:35:59 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/329aefb11eb6/ Changeset: 329aefb11eb6 Branch: rel_0_8 User: zzzeek Date: 2013-12-16 20:36:30 Summary: wrong method name... Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-16 20:27:54
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/1d9eb4101365/ Changeset: 1d9eb4101365 Branch: master User: zzzeek Date: 2013-12-16 21:25:48 Summary: - Fixed bug when using joined table inheritance from a table to a select/alias on the base, where the PK columns were also not same named; the persistence system would fail to copy primary key values from the base table to the inherited table upon INSERT. [ticket:2885] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/99f1dc7da634/ Changeset: 99f1dc7da634 Branch: rel_0_9 User: zzzeek Date: 2013-12-16 21:26:11 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e294767148c7/ Changeset: e294767148c7 Branch: rel_0_8 User: zzzeek Date: 2013-12-16 21:26:19 Summary: - Fixed bug when using joined table inheritance from a table to a select/alias on the base, where the PK columns were also not same named; the persistence system would fail to copy primary key values from the base table to the inherited table upon INSERT. [ticket:2885] Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-16 23:55:02
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/98c23acee6a8/ Changeset: 98c23acee6a8 Branch: master User: zzzeek Date: 2013-12-17 00:52:52 Summary: - fix up the FAQ regarding the "foo_id" issue - add session object states to the glossary Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/6f7ce05776cc/ Changeset: 6f7ce05776cc Branch: rel_0_9 User: zzzeek Date: 2013-12-17 00:53:14 Summary: Merge branch 'master' into rel_0_9 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/37ebd3f2f3ce/ Changeset: 37ebd3f2f3ce Branch: rel_0_8 User: zzzeek Date: 2013-12-17 00:54:30 Summary: - fix up the FAQ regarding the "foo_id" issue - add session object states to the glossary Conflicts: doc/build/glossary.rst Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-17 00:23:22
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/84f1d3417978/ Changeset: 84f1d3417978 Branch: master User: zzzeek Date: 2013-12-17 01:17:41 Summary: - An adjustment to the :func:`.subqueryload` strategy which ensures that the query runs after the loading process has begun; this is so that the subqueryload takes precedence over other loaders that may be hitting the same attribute due to other eager/noload situations at the wrong time. [ticket:2887] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/fc0f7e3a5cea/ Changeset: fc0f7e3a5cea Branch: rel_0_9 User: zzzeek Date: 2013-12-17 01:18:00 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/dcb7e7759ae8/ Changeset: dcb7e7759ae8 Branch: rel_0_8 User: zzzeek Date: 2013-12-17 01:22:26 Summary: - An adjustment to the :func:`.subqueryload` strategy which ensures that the query runs after the loading process has begun; this is so that the subqueryload takes precedence over other loaders that may be hitting the same attribute due to other eager/noload situations at the wrong time. [ticket:2887] Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-17 00:35:19
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/207aaf2f41cf/ Changeset: 207aaf2f41cf Branch: master User: zzzeek Date: 2013-12-17 01:32:10 Summary: - for [ticket:2651], leaving CheckConstraint alone, preferring to keep backwards compatibility. A note about backslashing escapes is added. Because the Text() construct now supports bind params better, the example given in the code raises an exception now, so that should cover us. The exception itself has been enhanced to include the key name of the bound param. We're backporting this to 0.8 but 0.8 doesn't have the text->bind behavior that raises. Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/1e6ae7047ba1/ Changeset: 1e6ae7047ba1 Branch: rel_0_9 User: zzzeek Date: 2013-12-17 01:33:40 Summary: Merge branch 'master' into rel_0_9 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/0fefc6e22641/ Changeset: 0fefc6e22641 Branch: rel_0_8 User: zzzeek Date: 2013-12-17 01:34:48 Summary: - for [ticket:2651], leaving CheckConstraint alone, preferring to keep backwards compatibility. A note about backslashing escapes is added. Because the Text() construct now supports bind params better, the example given in the code raises an exception now, so that should cover us. The exception itself has been enhanced to include the key name of the bound param. We're backporting this to 0.8 but 0.8 doesn't have the text->bind behavior that raises. Conflicts: lib/sqlalchemy/sql/schema.py Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-17 21:29:31
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/de2cfa2d1e94/ Changeset: de2cfa2d1e94 Branch: master User: zzzeek Date: 2013-12-17 22:28:43 Summary: autoincrement here Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/1ee5c07d1dee/ Changeset: 1ee5c07d1dee Branch: rel_0_9 User: zzzeek Date: 2013-12-17 22:28:55 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/3c4a565f2da0/ Changeset: 3c4a565f2da0 Branch: rel_0_8 User: zzzeek Date: 2013-12-17 22:29:06 Summary: autoincrement here Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-19 21:05:52
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5f76f29c15b7/ Changeset: 5f76f29c15b7 Branch: master User: zzzeek Date: 2013-12-19 22:02:14 Summary: - Fixed bug with :meth:`.Insert.from_select` method where the order of the given names would not be taken into account when generating the INSERT statement, thus producing a mismatch versus the column names in the given SELECT statement. Also noted that :meth:`.Insert.from_select` implies that Python-side insert defaults cannot be used, since the statement has no VALUES clause. [ticket:2895] Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ceb12eae9075/ Changeset: ceb12eae9075 Branch: rel_0_9 User: zzzeek Date: 2013-12-19 22:02:40 Summary: Merge branch 'master' into rel_0_9 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2042493228a9/ Changeset: 2042493228a9 Branch: rel_0_8 User: zzzeek Date: 2013-12-19 22:05:15 Summary: - Fixed bug with :meth:`.Insert.from_select` method where the order of the given names would not be taken into account when generating the INSERT statement, thus producing a mismatch versus the column names in the given SELECT statement. Also noted that :meth:`.Insert.from_select` implies that Python-side insert defaults cannot be used, since the statement has no VALUES clause. [ticket:2895] Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-20 15:27:08
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/65bd6ec96602/ Changeset: 65bd6ec96602 Branch: master User: zzzeek Date: 2013-12-20 16:26:09 Summary: - Fixed issue where a primary key column that has a Sequence on it, yet the column is not the "auto increment" column, either because it has a foreign key constraint or ``autoincrement=False`` set, would attempt to fire the Sequence on INSERT for backends that don't support sequences, when presented with an INSERT missing the primary key value. This would take place on non-sequence backends like SQLite, MySQL. [ticket:2896] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/acb8a2216caa/ Changeset: acb8a2216caa Branch: rel_0_9 User: zzzeek Date: 2013-12-20 16:26:26 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ae3c57f492c5/ Changeset: ae3c57f492c5 Branch: rel_0_8 User: zzzeek Date: 2013-12-20 16:26:35 Summary: - Fixed issue where a primary key column that has a Sequence on it, yet the column is not the "auto increment" column, either because it has a foreign key constraint or ``autoincrement=False`` set, would attempt to fire the Sequence on INSERT for backends that don't support sequences, when presented with an INSERT missing the primary key value. This would take place on non-sequence backends like SQLite, MySQL. [ticket:2896] Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-27 23:28:26
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/90f813575e0e/ Changeset: 90f813575e0e Branch: None User: zzzeek Date: 2013-12-27 23:11:12 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2104d0ba2d61/ Changeset: 2104d0ba2d61 Branch: master User: zzzeek Date: 2013-12-28 00:25:57 Summary: - rework the JSON expression system so that "astext" is called *after* the indexing. this is for more natural operation. - also add cast() to the JSON expression to complement astext. This integrates the CAST call which will be needed frequently. Part of [ticket:2687]. - it's a little unclear how more advanced unicode attribute-access is going to go, some quick attempts at testing yielded strange error messages from psycopg2. - do other cross linking as mentioned in [ticket:2687]. Affected #: 6 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2df21f612d2e/ Changeset: 2df21f612d2e Branch: rel_0_9 User: zzzeek Date: 2013-12-28 00:27:58 Summary: Merge branch 'master' into rel_0_9 Affected #: 6 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-28 21:39:18
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d8bc6673c0bb/ Changeset: d8bc6673c0bb Branch: None User: zzzeek Date: 2013-12-28 22:37:22 Summary: - fix the insert from select test to use a non-autoinc table Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/cac7320eeb16/ Changeset: cac7320eeb16 Branch: master User: zzzeek Date: 2013-12-28 22:37:54 Summary: - adjust the behavior of cast() to only provide a type for the bindparam() if we are coercing straight from string. [ticket:2899] - rework the tests here to be individual Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bb9bc68d7764/ Changeset: bb9bc68d7764 Branch: rel_0_9 User: zzzeek Date: 2013-12-28 22:38:36 Summary: Merge branch 'master' into rel_0_9 Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-30 23:54:54
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/c91de19e4125/ Changeset: c91de19e4125 Branch: None User: zzzeek Date: 2013-12-31 00:23:12 Summary: Merge branch 'master' into rel_0_9 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d88d75542563/ Changeset: d88d75542563 Branch: None User: zzzeek Date: 2013-12-31 00:30:11 Summary: - call it 0.9.0 Affected #: 7 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f00657fa8a3a/ Changeset: f00657fa8a3a Branch: None User: zzzeek Date: 2013-12-31 00:31:33 Summary: - 0.9.0 release date Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2014-01-02 19:25:24
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4b923d37bdfd/ Changeset: 4b923d37bdfd Branch: None User: zzzeek Date: 2014-01-02 20:23:14 Summary: - support addition of fails_if()/only_on(), just wraps the decorators - update a few exclusions to support current pymssql. passes all of test_suite and dialect/mssql Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/504543090213/ Changeset: 504543090213 Branch: None User: zzzeek Date: 2014-01-02 20:24:13 Summary: .pyo Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/cc82ea33a03a/ Changeset: cc82ea33a03a Branch: rel_0_8 User: zzzeek Date: 2014-01-02 20:24:44 Summary: - support addition of fails_if()/only_on(), just wraps the decorators - update a few exclusions to support current pymssql. passes all of test_suite and dialect/mssql Affected #: 3 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |