sqlalchemy-commits Mailing List for SQLAlchemy (Page 42)
Brought to you by:
zzzeek
You can subscribe to this list here.
2006 |
Jan
|
Feb
(74) |
Mar
(167) |
Apr
(127) |
May
(190) |
Jun
(119) |
Jul
(77) |
Aug
(82) |
Sep
(84) |
Oct
(153) |
Nov
(45) |
Dec
(54) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(109) |
Feb
(80) |
Mar
(110) |
Apr
(106) |
May
(92) |
Jun
(147) |
Jul
(288) |
Aug
(307) |
Sep
(108) |
Oct
(156) |
Nov
(147) |
Dec
(134) |
2008 |
Jan
(126) |
Feb
(91) |
Mar
(184) |
Apr
(208) |
May
(212) |
Jun
(54) |
Jul
(106) |
Aug
(80) |
Sep
(58) |
Oct
(80) |
Nov
(119) |
Dec
(220) |
2009 |
Jan
(202) |
Feb
(50) |
Mar
(70) |
Apr
(46) |
May
(80) |
Jun
(61) |
Jul
(146) |
Aug
(81) |
Sep
(71) |
Oct
(74) |
Nov
(66) |
Dec
(82) |
2010 |
Jan
(112) |
Feb
(169) |
Mar
(235) |
Apr
(77) |
May
(22) |
Jun
(31) |
Jul
(46) |
Aug
(46) |
Sep
(70) |
Oct
(36) |
Nov
(37) |
Dec
(79) |
2011 |
Jan
(46) |
Feb
(54) |
Mar
(65) |
Apr
(73) |
May
(31) |
Jun
(46) |
Jul
(40) |
Aug
(36) |
Sep
(44) |
Oct
(33) |
Nov
(19) |
Dec
(10) |
2012 |
Jan
(60) |
Feb
(37) |
Mar
(35) |
Apr
(28) |
May
(27) |
Jun
(50) |
Jul
(33) |
Aug
(88) |
Sep
(64) |
Oct
(74) |
Nov
(62) |
Dec
(41) |
2013 |
Jan
(30) |
Feb
(37) |
Mar
(39) |
Apr
(52) |
May
(40) |
Jun
(85) |
Jul
(74) |
Aug
(76) |
Sep
(26) |
Oct
(76) |
Nov
(63) |
Dec
(65) |
2014 |
Jan
(68) |
Feb
(82) |
Mar
(87) |
Apr
(24) |
May
(66) |
Jun
(34) |
Jul
(86) |
Aug
(75) |
Sep
(70) |
Oct
(41) |
Nov
(23) |
Dec
(53) |
2015 |
Jan
(40) |
Feb
(39) |
Mar
(69) |
Apr
(64) |
May
(40) |
Jun
(43) |
Jul
(20) |
Aug
(48) |
Sep
(38) |
Oct
(28) |
Nov
(34) |
Dec
(44) |
2016 |
Jan
(82) |
Feb
(49) |
Mar
(25) |
Apr
(21) |
May
(19) |
Jun
(46) |
Jul
(38) |
Aug
(21) |
Sep
(33) |
Oct
(44) |
Nov
(26) |
Dec
(10) |
2017 |
Jan
(52) |
Feb
(18) |
Mar
(61) |
Apr
(43) |
May
(57) |
Jun
(36) |
Jul
(37) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Bitbucket <com...@bi...> - 2015-04-27 19:23:46
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e25ef01fbb70/ Changeset: e25ef01fbb70 Branch: None User: zzzeek Date: 2015-04-27 19:05:41+00:00 Summary: - Fixed regression due to :ticket:`3282` where the ``tables`` collection passed as a keyword argument to the :meth:`.DDLEvents.before_create`, :meth:`.DDLEvents.after_create`, :meth:`.DDLEvents.before_drop`, and :meth:`.DDLEvents.after_drop` events would no longer be a list of tables, but instead a list of tuples which contained a second entry with foreign keys to be added or dropped. As the ``tables`` collection, while documented as not necessarily stable, has come to be relied upon, this change is considered a regression. Additionally, in some cases for "drop", this collection would be an iterator that would cause the operation to fail if prematurely iterated. The collection is now a list of table objects in all cases and test coverage for the format of this collection is now added. fixes #3391 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e5c20fce9354/ Changeset: e5c20fce9354 Branch: None User: zzzeek Date: 2015-04-27 19:21:18+00:00 Summary: - replace old crufty ddl event test fixture with mock 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...> - 2015-04-26 23:28:26
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/54ee5c1bb649/ Changeset: 54ee5c1bb649 Branch: ticket_3355 User: zzzeek Date: 2015-04-26 23:27:44+00:00 Summary: - add a note that might be helpful 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...> - 2015-04-26 22:23:12
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6c0f30db81d1/ Changeset: 6c0f30db81d1 Branch: None User: zzzeek Date: 2015-04-26 22:22:41+00:00 Summary: - Fixed a regression regarding the :meth:`.MapperEvents.instrument_class` event where its invocation was moved to be after the class manager's instrumentation of the class, which is the opposite of what the documentation for the event explicitly states. The rationale for the switch was due to Declarative taking the step of setting up the full "instrumentation manager" for a class before it was mapped for the purpose of the new ``@declared_attr`` features described in :ref:`feature_3150`, but the change was also made against the classical use of :func:`.mapper` for consistency. However, SQLSoup relies upon the instrumentation event happening before any instrumentation under classical mapping. The behavior is reverted in the case of classical and declarative mapping, the latter implemented by using a simple memoization without using class manager. fixes #3388 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...> - 2015-04-26 16:33:52
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d48acff23bc0/ Changeset: d48acff23bc0 Branch: None User: zzzeek Date: 2015-04-26 16:33:17+00:00 Summary: - Fixed issue in new :meth:`.QueryEvents.before_compile` event where changes made to the :class:`.Query` object's collection of entities to load within the event would render in the SQL, but would not be reflected during the loading process. fixes #3387 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...> - 2015-04-25 15:18:17
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/614bbe7370d1/ Changeset: 614bbe7370d1 Branch: rel_0_9 User: zzzeek Date: 2015-04-25 15:17:25+00:00 Summary: - try pinning a tag here to for RTD to please build correctly (cherry picked from commit 6833669469b646fbd332b9ce4bd59a1122d3aa99) 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...> - 2015-04-25 14:49:21
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6833669469b6/ Changeset: 6833669469b6 Branch: master User: zzzeek Date: 2015-04-25 14:48:54+00:00 Summary: - try pinning a tag here to for RTD to please build correctly 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...> - 2015-04-24 23:11:05
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/c71c7444ecf4/ Changeset: c71c7444ecf4 Branch: None User: zzzeek Date: 2015-04-24 21:28:19+00:00 Summary: - add a note about that resolution Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/f58ca25df7ad/ Changeset: f58ca25df7ad Branch: None User: zzzeek Date: 2015-04-24 21:52:00+00:00 Summary: - tag declarative as "orm declarative" Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/372e0600d9c3/ Changeset: 372e0600d9c3 Branch: None User: zzzeek Date: 2015-04-24 21:55:05+00:00 Summary: - fix link Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/723e07a3744c/ Changeset: 723e07a3744c Branch: None User: zzzeek Date: 2015-04-24 22:02:57+00:00 Summary: - reword the notes here Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/42c9fe1d1df0/ Changeset: 42c9fe1d1df0 Branch: None User: zzzeek Date: 2015-04-24 22:03:01+00:00 Summary: 1.0.2 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...> - 2015-04-24 21:07:53
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f9275198c304/ Changeset: f9275198c304 Branch: None User: zzzeek Date: 2015-04-24 21:04:35+00:00 Summary: - Fixed a regression that was incorrectly fixed in 1.0.0b4 (hence becoming two regressions); reports that SELECT statements would GROUP BY a label name and fail was misconstrued that certain backends such as SQL Server should not be emitting ORDER BY or GROUP BY on a simple label name at all; when in fact, we had forgotten that 0.9 was already emitting ORDER BY on a simple label name for all backends, as described in :ref:`migration_1068`, as 1.0 had rewritten this logic as part of :ticket:`2992`. In 1.0.2, the bug is fixed both that SQL Server, Firebird and others will again emit ORDER BY on a simple label name when passed a :class:`.Label` construct that is expressed in the columns clause, and no backend will emit GROUP BY on a simple label name in this case, as even Postgresql can't reliably do GROUP BY on a simple name in every case. fixes #3338, fixes #3385 Affected #: 7 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...> - 2015-04-24 21:04:13
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/01700759346c/ Changeset: 01700759346c Branch: None User: zzzeek Date: 2015-04-24 21:03:34+00:00 Summary: - add the "strict" version of this lookup for __abstract__ as well, fixes #3383 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...> - 2015-04-24 19:54:20
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e77cf339ee50/ Changeset: e77cf339ee50 Branch: None User: Gaëtan de Menten Date: 2015-04-24 12:26:42+00:00 Summary: micro-optimize unique_list This makes unique_list approx 2x faster in my (simple) tests Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/f7e89f887fa4/ Changeset: f7e89f887fa4 Branch: None User: zzzeek Date: 2015-04-24 19:52:42+00:00 Summary: Merge remote-tracking branch 'origin/pr/169' 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...> - 2015-04-24 17:49:39
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/30e4d9b3ff1d/ Changeset: 30e4d9b3ff1d Branch: ticket_3355 User: zzzeek Date: 2015-04-23 20:30:12+00:00 Summary: Merge branch 'master' into ticket_3355 Affected #: 31 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e73f73538237/ Changeset: e73f73538237 Branch: None User: zzzeek Date: 2015-04-24 17:49:09+00:00 Summary: - Fixed regression regarding the declarative ``__declare_first__`` and ``__declare_last__`` accessors where these would no longer be called on the superclass of the declarative base. fixes #3383 Affected #: 7 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...> - 2015-04-23 18:27:02
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/350d002ee9f6/ Changeset: 350d002ee9f6 Branch: None User: zzzeek Date: 2015-04-23 18:21:56+00:00 Summary: - update date - repair category for EXISTS issue Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/0fc751e4abea/ Changeset: 0fc751e4abea Branch: None User: zzzeek Date: 2015-04-23 18:21:56+00:00 Summary: 1.0.1 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...> - 2015-04-23 17:43:47
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/846b2b835e37/ Changeset: 846b2b835e37 Branch: master User: zzzeek Date: 2015-04-23 17:43:25+00:00 Summary: - change/migration edits 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...> - 2015-04-23 16:14:26
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ce1ab2bef3e5/ Changeset: ce1ab2bef3e5 Branch: None User: effem-git Date: 2015-04-23 11:00:42+00:00 Summary: Update base.py Fix TypeError: Boolean value of this clause is not defined Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/167a45a442a2/ Changeset: 167a45a442a2 Branch: pr168 User: zzzeek Date: 2015-04-23 15:40:40+00:00 Summary: changelog for #3380, fixes #3380 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/dd4240e43b41/ Changeset: dd4240e43b41 Branch: None User: zzzeek Date: 2015-04-23 16:07:56+00:00 Summary: - Fixed support for "literal_binds" mode when using limit/offset with Firebird, so that the values are again rendered inline when this is selected. Related to :ticket:`3034`. fixes #3381 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...> - 2015-04-22 23:36:29
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fa88d0e8ffbe/ Changeset: fa88d0e8ffbe Branch: None User: zzzeek Date: 2015-04-22 22:56:05+00:00 Summary: - ensure that info isn't blown away after the do_connect event Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b957cdbd945f/ Changeset: b957cdbd945f Branch: ticket_3355 User: zzzeek Date: 2015-04-22 23:35:16+00:00 Summary: - fixes for some tests, staticpool 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...> - 2015-04-22 22:03:48
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/04b3ce939020/ Changeset: 04b3ce939020 Branch: ticket_3355 User: zzzeek Date: 2015-04-22 22:01:22+00:00 Summary: - add support for the connection record to be passed to the creator and the do_connect event. this will be very helpful; we have to do the hacky "check the function" thing like we do for column defaults in order to maintain the old signature for creator() as well. - add new soft invalidate feature, assign the whole "control invalidation" job to #3379 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...> - 2015-04-22 18:16:13
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/39978060b0d8/ Changeset: 39978060b0d8 Branch: None User: zzzeek Date: 2015-04-22 18:14:11+00:00 Summary: - repair a regression caused by #3282, where we no longer were applying any topological sort to tables on SQLite. See the changelog for details, but we now continue to sort tables for SQLite on DROP, prohibit the sort from considering alter, and only warn if we encounter an unresolvable cycle, in which case, then we forego the ordering. use_alter as always is used to break such a cycle. fixes #3378 Affected #: 7 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...> - 2015-04-22 15:59:53
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f704b7265a63/ Changeset: f704b7265a63 Branch: None User: zzzeek Date: 2015-04-22 15:59:08+00:00 Summary: - correct migration note for #3084; doesn't apply to create/drop 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...> - 2015-04-21 17:05:40
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4442eb3e1ede/ Changeset: 4442eb3e1ede Branch: master User: zzzeek Date: 2015-04-21 17:05:24+00:00 Summary: - typo 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...> - 2015-04-21 15:04:59
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/732fb99fc0af/ Changeset: 732fb99fc0af Branch: None User: zzzeek Date: 2015-04-21 15:04:21+00:00 Summary: - add a warning to SingletonThreadPool that it isn't for general use Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/f03a086e8529/ Changeset: f03a086e8529 Branch: rel_0_9 User: zzzeek Date: 2015-04-21 15:04:43+00:00 Summary: - add a warning to SingletonThreadPool that it isn't for general use (cherry picked from commit 732fb99fc0afbeb69d684b2bfa6d0be6250919a3) 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...> - 2015-04-21 14:05:08
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/c2e300250324/ Changeset: c2e300250324 Branch: None User: zzzeek Date: 2015-04-21 14:04:02+00:00 Summary: - Added the string value ``"none"`` to those accepted by the :paramref:`.Pool.reset_on_return` parameter as a synonym for ``None``, so that string values can be used for all settings, allowing .ini file utilities like :func:`.engine_from_config` to be usable without issue. fixes #3375 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/384c885ed078/ Changeset: 384c885ed078 Branch: rel_0_9 User: zzzeek Date: 2015-04-21 14:04:48+00:00 Summary: - Added the string value ``"none"`` to those accepted by the :paramref:`.Pool.reset_on_return` parameter as a synonym for ``None``, so that string values can be used for all settings, allowing .ini file utilities like :func:`.engine_from_config` to be usable without issue. fixes #3375 (cherry picked from commit c2e3002503242331fc8f2b314e0d4f3c65de9d73) 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...> - 2015-04-20 23:21:52
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3e80d628bd13/ Changeset: 3e80d628bd13 Branch: None User: zzzeek Date: 2015-04-20 23:21:00+00:00 Summary: - Fixed issue where a straight SELECT EXISTS query would fail to assign the proper result type of Boolean to the result mapping, and instead would leak column types from within the query into the result map. This issue exists in 0.9 and earlier as well, however has less of an impact in those versions. In 1.0, due to #918 this becomes a regression in that we now rely upon the result mapping to be very accurate, else we can assign result-type processors to the wrong column. In all versions, this issue also has the effect that a simple EXISTS will not apply the Boolean type handler, leading to simple 1/0 values for backends without native boolean instead of True/False. The fix includes that an EXISTS columns argument will be anon-labeled like other column expressions; a similar fix is implemented for pure-boolean expressions like ``not_(True())``. fixes #3372 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...> - 2015-04-20 21:44:48
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2c91f7177600/ Changeset: 2c91f7177600 Branch: None User: zzzeek Date: 2015-04-20 21:44:21+00:00 Summary: - add migration note for #3084 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...> - 2015-04-20 21:41:00
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a3af638e1a95/ Changeset: a3af638e1a95 Branch: None User: zzzeek Date: 2015-04-20 21:38:03+00:00 Summary: - Fixed more regressions caused by NEVER_SET; comparisons to transient objects with attributes unset would leak NEVER_SET, and negated_contains_or_equals would do so for any transient object as the comparison used only the committed value. Repaired the NEVER_SET cases, fixes #3371, and also made negated_contains_or_equals() use state_attr_by_column() just like a non-negated comparison, fixes #3374 Affected #: 11 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...> - 2015-04-19 21:42:51
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/43c78b415751/ Changeset: 43c78b415751 Branch: ticket_3355 User: zzzeek Date: 2015-04-19 21:42:21+00:00 Summary: - Added new flag :attr:`.ExceptionContext.invalidate_pool_on_disconnect`. Allows an error handler within :meth:`.ConnectionEvents.handle_error` to maintain a "disconnect" condition, but prevent the connection pool from being fully invalidated. 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. |