Thread: [Sqlalchemy-commits] commit/sqlalchemy: 5 new changesets
Brought to you by:
zzzeek
From: Bitbucket <com...@bi...> - 2013-05-26 14:47:44
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d630a2e6ef70/ Changeset: d630a2e6ef70 Branch: None User: chrisw Date: 2013-05-26 14:05:53 Summary: Add missing import that caused test_notice_logging to fail if this suite was run on its own. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/f5956fae6a67/ Changeset: f5956fae6a67 Branch: None User: chrisw Date: 2013-05-26 14:05:56 Summary: fix incorrect method name Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/e8b4f0bc4a4b/ Changeset: e8b4f0bc4a4b Branch: None User: chrisw Date: 2013-05-26 14:05:59 Summary: Show the conflicting column in the warning! Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/3406deac19e5/ Changeset: 3406deac19e5 Branch: None User: chrisw Date: 2013-05-26 15:49:42 Summary: tweaks to ignores Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/bfc948e44b15/ Changeset: bfc948e44b15 Branch: master User: zzzeek Date: 2013-05-26 16:46:16 Summary: Merge pull request #1 from cjw296/small-fixes Small fixes 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-06-08 18:57:31
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a80bb5393484/ Changeset: a80bb5393484 Branch: None User: zzzeek Date: 2013-06-08 20:47:04 Summary: - changelog for [ticket:2704] - use an isinstance() check, concerned a TypeError might be indiscriminate Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/5d4bb7c21334/ Changeset: 5d4bb7c21334 Branch: master User: zzzeek Date: 2013-06-08 20:49:56 Summary: most of these dialect=mysql.dialect() calls are redundant Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/1b231ff27107/ Changeset: 1b231ff27107 Branch: None User: malor Date: 2013-06-08 20:54:42 Summary: Fix using of 'mysql_length' for composite indexes Currently, one can specify the prefix length for an index column using 'mysql_length' keyword argument when creating an Index instance. But in case of composite indexes the prefix length value is applied only to the last column. Extend the existing API in way so that 'mysql_length' argument value can be either: - an integer specifying the same prefix length value for each column of an index - a (column_name --> integer value) mapping specifying the prefix length value for each column of an index separately Fixes issue #2704. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/3f6006953eed/ Changeset: 3f6006953eed Branch: None User: zzzeek Date: 2013-06-08 20:56:00 Summary: - changelog for [ticket:2704] - use an isinstance() check, concerned a TypeError might be indiscriminate Conflicts: doc/build/changelog/changelog_09.rst Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/614e8dc61780/ Changeset: 614e8dc61780 Branch: rel_0_8 User: zzzeek Date: 2013-06-08 20:56:20 Summary: most of these dialect=mysql.dialect() calls are redundant 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-06-11 00:00:36
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/23ce1d8b1256/ Changeset: 23ce1d8b1256 Branch: None User: Eevee Date: 2013-06-11 00:04:39 Summary: Preserve reset_on_return when recreating a Pool. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bd1f232063c8/ Changeset: bd1f232063c8 Branch: None User: zzzeek Date: 2013-06-11 01:38:48 Summary: Merge pull request #6 from eevee/propagate-reset-on-return Preserve reset_on_return when recreating a Pool. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ef03ecf6064c/ Changeset: ef03ecf6064c Branch: master User: zzzeek Date: 2013-06-11 01:42:37 Summary: changelog Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/c0ee99da9eb2/ Changeset: c0ee99da9eb2 Branch: None User: zzzeek Date: 2013-06-11 01:43:40 Summary: Merge pull request #6 from eevee/propagate-reset-on-return Preserve reset_on_return when recreating a Pool. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/01b7b9ae29e7/ Changeset: 01b7b9ae29e7 Branch: rel_0_8 User: zzzeek Date: 2013-06-11 01:44:06 Summary: changelog Conflicts: doc/build/changelog/changelog_09.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-06-16 02:59:54
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a1ceae2ed3b3/ Changeset: a1ceae2ed3b3 Branch: None User: malor Date: 2013-06-15 15:54:50 Summary: Add AUTOCOMMIT isolation level support for psycopg2 One can use this to emit statements, which can not be executed within a transaction (e. g. CREATE DATABASE): from sqlalchemy import create_engine eng = create_engine('postgresql://test:test@localhost/test') conn = eng.connect().execution_options(isolation_level='AUTOCOMMIT') conn.execute('CREATE DATABASE test2;') Fixes issue #2072. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9612e2fbb5b8/ Changeset: 9612e2fbb5b8 Branch: None User: zzzeek Date: 2013-06-16 04:52:00 Summary: Merge pull request #7 from malor/psycopg2_execution_options Add AUTOCOMMIT isolation level support for psycopg2 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d826d99544c5/ Changeset: d826d99544c5 Branch: master User: zzzeek Date: 2013-06-16 04:58:04 Summary: - changelog - docs Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7a3a446d02b2/ Changeset: 7a3a446d02b2 Branch: None User: zzzeek Date: 2013-06-16 04:58:46 Summary: Merge pull request #7 from malor/psycopg2_execution_options Add AUTOCOMMIT isolation level support for psycopg2 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f7e6112d0f97/ Changeset: f7e6112d0f97 Branch: rel_0_8 User: zzzeek Date: 2013-06-16 04:59:09 Summary: - changelog - docs Conflicts: doc/build/changelog/changelog_09.rst 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-06-23 15:33:08
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/902962292091/ Changeset: 902962292091 Branch: None User: malor Date: 2013-06-23 09:35:46 Summary: Improve _test_get_unique_constraints() Call eq_() in a loop instead of comparing two lists directly. This makes it much easier to find out which element is not equal to the reference value. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/1ad06ea42c69/ Changeset: 1ad06ea42c69 Branch: None User: malor Date: 2013-06-23 09:42:03 Summary: Fix unique constraints reflection in SQLite If SQLite keywords are used as column names, they are quoted. The code parsing the information about table unique constraints should be modified so that it properly removes double-quotes from column names. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/3a80bf0d504c/ Changeset: 3a80bf0d504c Branch: None User: malor Date: 2013-06-23 12:35:19 Summary: Fix unique constraints reflection in PostgreSQL Reflection of unique constraints must preserve the order of columns. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/907b5f72dd78/ Changeset: 907b5f72dd78 Branch: None User: zzzeek Date: 2013-06-23 17:31:57 Summary: Merge pull request #11 from malor/fix_uc_reflection Fix unique constraints reflection in SQLite and PostgreSQL Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/977678a7734d/ Changeset: 977678a7734d Branch: master User: zzzeek Date: 2013-06-23 17:32:34 Summary: ticket #1443 is for unique constraint reflection 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-06-29 15:18:25
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/627a8cecf61f/ Changeset: 627a8cecf61f Branch: None User: zzzeek Date: 2013-06-29 16:56:34 Summary: fix 2.5 syntaxes Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/3dde98217157/ Changeset: 3dde98217157 Branch: None User: zzzeek Date: 2013-06-29 17:08:07 Summary: set UTC timezone on the connection here so we can get consistent results Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/acc3c69464e5/ Changeset: acc3c69464e5 Branch: None User: zzzeek Date: 2013-06-29 17:08:32 Summary: set UTC timezone on the connection here so we can get consistent results Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/278c243aa351/ Changeset: 278c243aa351 Branch: master User: zzzeek Date: 2013-06-29 17:17:32 Summary: tweak the timings here to maximize chance of test success Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/cf60290e7b21/ Changeset: cf60290e7b21 Branch: rel_0_8 User: zzzeek Date: 2013-06-29 17:17:57 Summary: tweak the timings here to maximize chance of test success 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-07-12 16:16:09
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5fb1a537e9be/ Changeset: 5fb1a537e9be Branch: None User: zzzeek Date: 2013-07-12 17:43:55 Summary: fix missing import here Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/0abd571f6ead/ Changeset: 0abd571f6ead Branch: None User: zzzeek Date: 2013-07-12 18:14:33 Summary: CSS tweaks to support version styling in the latest versions of sphinx Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d08a6d291d08/ Changeset: d08a6d291d08 Branch: master User: zzzeek Date: 2013-07-12 18:14:50 Summary: - use inline=True for the insert..select here so it works on oracle Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/6c85d5bc0c7f/ Changeset: 6c85d5bc0c7f Branch: None User: zzzeek Date: 2013-07-12 18:15:33 Summary: CSS tweaks to support version styling in the latest versions of sphinx Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/3c363e125c46/ Changeset: 3c363e125c46 Branch: rel_0_8 User: zzzeek Date: 2013-07-12 18:15:39 Summary: - use inline=True for the insert..select here so it works on oracle 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-07-19 05:00:58
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d98550ca84ce/ Changeset: d98550ca84ce Branch: None User: zzzeek Date: 2013-07-19 05:22:26 Summary: apply fix from [ticket:2786] to the ticket_2268 branch Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7f53357b822b/ Changeset: 7f53357b822b Branch: None User: zzzeek Date: 2013-07-19 05:34:48 Summary: express the append() and insert() methods in terms of the _EventKey Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/bf4062333e81/ Changeset: bf4062333e81 Branch: None User: zzzeek Date: 2013-07-19 05:49:32 Summary: actually make this test work Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/03722d0ddad5/ Changeset: 03722d0ddad5 Branch: None User: zzzeek Date: 2013-07-19 06:11:31 Summary: express remove in terms of event_key Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/16bc29d159fe/ Changeset: 16bc29d159fe Branch: ticket_2268 User: zzzeek Date: 2013-07-19 07:00:01 Summary: express all movement of listener functions to/from/between all lists/sets in terms of _EventKey, so that we're ready to track all these membership changes. 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-07-26 18:25:47
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/878d644ddc61/ Changeset: 878d644ddc61 Branch: None User: zzzeek Date: 2013-07-26 20:00:02 Summary: add ORM specific removal tests, implement remove for held events Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/657644aab07e/ Changeset: 657644aab07e Branch: None User: zzzeek Date: 2013-07-26 20:00:24 Summary: Merge branch 'master' into ticket_2268 Affected #: 18 files https://bitbucket.org/zzzeek/sqlalchemy/commits/122a775c15f0/ Changeset: 122a775c15f0 Branch: None User: zzzeek Date: 2013-07-26 20:06:14 Summary: don't need _remove() methods Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/162190f5044d/ Changeset: 162190f5044d Branch: ticket_2268 User: zzzeek Date: 2013-07-26 20:21:36 Summary: docs, changelog Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/4505425a38b0/ Changeset: 4505425a38b0 Branch: master User: zzzeek Date: 2013-07-26 20:21:58 Summary: - Removal of event listeners is now implemented. The feature is provided via the :func:`.event.remove` function. [ticket:2268] - reorganization of event.py module into a package; with the addition of the docstring work as well as the new registry for removal, there's a lot more code now. the package separates concerns and provides a top-level doc for each subsection of functionality - the remove feature works by providing the EventKey object which associates the user-provided arguments to listen() with a global, weak-referencing registry. This registry stores a collection of _ListenerCollection and _DispatchDescriptor objects associated with each set of arguments, as well as the wrapped function which was applied to that collection. The EventKey can then be recreated for a removal, all the _ListenerCollection and _DispatchDescriptor objects are located, and the correct wrapped function is removed from each one. Affected #: 16 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-07-27 22:47:42
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/cbb6f6d4f3b4/ Changeset: cbb6f6d4f3b4 Branch: None User: zzzeek Date: 2013-07-28 00:30:48 Summary: try seeing if just clearing this ahead of time helps Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/9fcb5348afcd/ Changeset: 9fcb5348afcd Branch: rel_0_8 User: zzzeek Date: 2013-07-28 00:32:15 Summary: fix py26 flag Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/59675be6732d/ Changeset: 59675be6732d Branch: None User: zzzeek Date: 2013-07-28 00:32:38 Summary: try seeing if just clearing this ahead of time helps Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/20b7c037291f/ Changeset: 20b7c037291f Branch: None User: zzzeek Date: 2013-07-28 00:38:40 Summary: last updated Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/effad0a4e33d/ Changeset: effad0a4e33d Branch: master User: zzzeek Date: 2013-07-28 00:41:34 Summary: - this collection can be None on cleanup, so check for that 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-08-12 18:09:14
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/09b63d5632c7/ Changeset: 09b63d5632c7 Branch: None User: zzzeek Date: 2013-08-12 18:14:38 Summary: coming back online Affected #: 15 files https://bitbucket.org/zzzeek/sqlalchemy/commits/8d1293fe0354/ Changeset: 8d1293fe0354 Branch: None User: zzzeek Date: 2013-08-12 18:33:55 Summary: coming around Affected #: 8 files https://bitbucket.org/zzzeek/sqlalchemy/commits/aa4b763be560/ Changeset: aa4b763be560 Branch: None User: zzzeek Date: 2013-08-12 18:51:45 Summary: imports Affected #: 11 files https://bitbucket.org/zzzeek/sqlalchemy/commits/adae41bfba33/ Changeset: adae41bfba33 Branch: None User: zzzeek Date: 2013-08-12 20:06:41 Summary: attempt to re-simplify the type system by just doing a __bases__ injection for TypeEngine.comparator's behavior. Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ad2cca188f9a/ Changeset: ad2cca188f9a Branch: refactor_modules User: zzzeek Date: 2013-08-12 20:08:23 Summary: we have these 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-08-15 00:01:01
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/bc7ec0b014f2/ Changeset: bc7ec0b014f2 Branch: None User: zzzeek Date: 2013-08-15 01:13:31 Summary: - reorganize the core/orm event listener classes so that they are dependent on everything they refer to; the core/orm classes themselves lose all dependencies except for the "self.dispatch" attribute which is now injected. Affected #: 17 files https://bitbucket.org/zzzeek/sqlalchemy/commits/3b7034aa8d87/ Changeset: 3b7034aa8d87 Branch: None User: zzzeek Date: 2013-08-15 01:41:00 Summary: organize top level imports and __all__ Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/47b3c74d4ed4/ Changeset: 47b3c74d4ed4 Branch: None User: zzzeek Date: 2013-08-15 01:55:01 Summary: redo this a bit Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/48d7c4183df5/ Changeset: 48d7c4183df5 Branch: refactor_modules User: zzzeek Date: 2013-08-15 01:57:57 Summary: reorganize this metaclass thing so that we can call the superclass safely Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/59141d360e70/ Changeset: 59141d360e70 Branch: master User: zzzeek Date: 2013-08-15 01:58:34 Summary: - apply an import refactoring to the ORM as well - rework the event system so that event modules load after their targets, dependencies are reversed - create an improved strategy lookup system for the ORM - rework the ORM to have very few import cycles - move out "importlater" to just util.dependency - other tricks to cross-populate modules in as clear a way as possible Affected #: 46 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-08-17 04:24:13
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d1028646099c/ Changeset: d1028646099c Branch: None User: zzzeek Date: 2013-08-17 06:20:46 Summary: - changelog - clean up these tests to not use globals so much, close out the session Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/4ead87dd3b9d/ Changeset: 4ead87dd3b9d Branch: None User: zzzeek Date: 2013-08-17 06:21:30 Summary: Merged in prschmid/sqlalchemy (pull request #4) Made primary_key autoincrement=False in versioning example. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/22b2fe56eb88/ Changeset: 22b2fe56eb88 Branch: None User: zzzeek Date: 2013-08-17 06:22:49 Summary: - changelog - clean up these tests to not use globals so much, close out the session Conflicts: doc/build/changelog/changelog_09.rst examples/versioning/test_versioning.py Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/ade6b233d78c/ Changeset: ade6b233d78c Branch: master User: zzzeek Date: 2013-08-17 06:23:37 Summary: 0.8 changelog Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/5cbf8be95d1a/ Changeset: 5cbf8be95d1a Branch: rel_0_8 User: zzzeek Date: 2013-08-17 06:23:50 Summary: 0.8 changelog 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-08-18 18:48:19
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/68ee6725b853/ Changeset: 68ee6725b853 Branch: None User: zzzeek Date: 2013-08-17 20:58:02 Summary: some tests regarding how newly inserted rows are treated as far as fetch on access Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/e7c179ac72ab/ Changeset: e7c179ac72ab Branch: None User: zzzeek Date: 2013-08-17 21:26:45 Summary: more tests regarding expiry, deferral Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/236db85f96e8/ Changeset: 236db85f96e8 Branch: master User: zzzeek Date: 2013-08-18 20:46:04 Summary: Fixed regression dating back to 0.7.9 whereby the name of a CTE might not be properly quoted if it was referred to in multiple FROM clauses. Also in 0.8.3, 0.7.11. [ticket:2801] Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/4f0bda7c455a/ Changeset: 4f0bda7c455a Branch: rel_0_8 User: zzzeek Date: 2013-08-18 20:46:34 Summary: Fixed regression dating back to 0.7.9 whereby the name of a CTE might not be properly quoted if it was referred to in multiple FROM clauses. Also in 0.8.3, 0.7.11. [ticket:2801] Conflicts: doc/build/changelog/changelog_09.rst Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/cc031065806c/ Changeset: cc031065806c Branch: rel_0_7 User: zzzeek Date: 2013-08-18 20:46:54 Summary: Fixed regression dating back to 0.7.9 whereby the name of a CTE might not be properly quoted if it was referred to in multiple FROM clauses. Also in 0.8.3, 0.7.11. [ticket:2801] Conflicts: doc/build/changelog/changelog_09.rst Conflicts: doc/build/changelog/changelog_08.rst 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-08-25 16:35:53
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2aab3cec709c/ Changeset: 2aab3cec709c Branch: ticket_2793 User: zzzeek Date: 2013-08-25 18:28:47 Summary: added "system=True" to Column, so that we generally don't have to bother with CreateColumn rules Affected #: 6 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2452c49cc4d2/ Changeset: 2452c49cc4d2 Branch: None User: zzzeek Date: 2013-08-25 18:29:22 Summary: added "system=True" to Column, so that we generally don't have to bother with CreateColumn rules Affected #: 6 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f0ac7e20d8b0/ Changeset: f0ac7e20d8b0 Branch: None User: zzzeek Date: 2013-08-25 18:31:58 Summary: added "system=True" to Column, so that we generally don't have to bother with CreateColumn rules Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/cd6cfe36d29f/ Changeset: cd6cfe36d29f Branch: rel_0_8 User: zzzeek Date: 2013-08-25 18:33:37 Summary: forgot to add system to the copy() method Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/00f3ca98ce24/ Changeset: 00f3ca98ce24 Branch: master User: zzzeek Date: 2013-08-25 18:35:06 Summary: forgot to add system to the copy() method Conflicts: lib/sqlalchemy/schema.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-09-29 21:12:53
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/610684bb0800/ Changeset: 610684bb0800 Branch: None User: gunnlaugur Date: 2013-09-06 19:57:04 Summary: Hide password in URL and Engine __repr__ Fixes #2821 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/dda72ddcf06c/ Changeset: dda72ddcf06c Branch: None User: zzzeek Date: 2013-09-29 23:03:46 Summary: Merge pull request #25 from gthb/ticket_2821 Hide password in URL and Engine __repr__ Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/23fa1b951b6a/ Changeset: 23fa1b951b6a Branch: master User: zzzeek Date: 2013-09-29 23:09:25 Summary: changelog Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/38e71f52eced/ Changeset: 38e71f52eced Branch: None User: zzzeek Date: 2013-09-29 23:10:54 Summary: Merge pull request #25 from gthb/ticket_2821 Hide password in URL and Engine __repr__ Conflicts: lib/sqlalchemy/engine/url.py Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/4ef40dd85be9/ Changeset: 4ef40dd85be9 Branch: rel_0_8 User: zzzeek Date: 2013-09-29 23:11:11 Summary: changelog 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-11-12 01:38:09
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/068f661b9db0/ Changeset: 068f661b9db0 Branch: rel_0_9 User: zzzeek Date: 2013-11-12 02:36:35 Summary: css updates to better work with RTD badge Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/de35f51b7245/ Changeset: de35f51b7245 Branch: rel_0_8 User: zzzeek Date: 2013-11-12 02:37:05 Summary: css updates to better work with RTD badge Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/6f3c60379962/ Changeset: 6f3c60379962 Branch: rel_0_7 User: zzzeek Date: 2013-11-12 02:37:11 Summary: css updates to better work with RTD badge Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/15bb55727e18/ Changeset: 15bb55727e18 Branch: rel_0_6 User: zzzeek Date: 2013-11-12 02:37:16 Summary: css updates to better work with RTD badge Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/dafae9da4794/ Changeset: dafae9da4794 Branch: rel_0_5 User: zzzeek Date: 2013-11-12 02:37:21 Summary: css updates to better work with RTD badge 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-11-28 17:38:05
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/71c45937f9ad/ Changeset: 71c45937f9ad Branch: None User: mlassnig Date: 2013-11-12 23:08:51 Summary: add psql FOR UPDATE OF functionality Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/741da8738410/ Changeset: 741da8738410 Branch: None User: mlassnig Date: 2013-11-14 20:18:52 Summary: added ORM support Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e9aaf8eb6634/ Changeset: e9aaf8eb6634 Branch: None User: mlassnig Date: 2013-11-28 14:50:41 Summary: added LockmodeArgs Affected #: 6 files https://bitbucket.org/zzzeek/sqlalchemy/commits/106e793d0573/ Changeset: 106e793d0573 Branch: None User: zzzeek Date: 2013-11-28 17:52:50 Summary: Merge branch 'for_update_of' of github.com:mlassnig/sqlalchemy into for_update_of Affected #: 7 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bb60a8ad946d/ Changeset: bb60a8ad946d Branch: for_update_of User: zzzeek Date: 2013-11-28 18:37:15 Summary: - work in progress, will squash 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...> - 2013-11-30 22:41:39
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/31886aff29b1/ Changeset: 31886aff29b1 Branch: None User: zzzeek Date: 2013-11-30 23:26:28 Summary: remove whitespace Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d80ee72aaa4b/ Changeset: d80ee72aaa4b Branch: None User: zzzeek Date: 2013-11-30 23:31:00 Summary: - the pronoun removal commit. there was only one instance of a standalone gendered pronoun with a gender-neutral subject, but also have replaced all occurences of "his/her", "his or her", etc. The docs have always strived to account for both genders in any non-specific singular pronoun, however recent controversy in the community suggests that a zero-gendered-pronoun policy is probably best going forward. Affected #: 7 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f7e3a3a36cf9/ Changeset: f7e3a3a36cf9 Branch: rel_0_8 User: zzzeek Date: 2013-11-30 23:34:06 Summary: - the pronoun removal commit. there was only one instance of a standalone gendered pronoun with a gender-neutral subject, but also have replaced all occurences of "his/her", "his or her", etc. The docs have always strived to account for both genders in any non-specific singular pronoun, however recent controversy in the community suggests that a zero-gendered-pronoun policy is probably best going forward. Affected #: 7 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2144b1856170/ Changeset: 2144b1856170 Branch: rel_0_7 User: zzzeek Date: 2013-11-30 23:36:47 Summary: - the pronoun removal commit. there was only one instance of a standalone gendered pronoun with a gender-neutral subject, but also have replaced all occurences of "his/her", "his or her", etc. The docs have always strived to account for both genders in any non-specific singular pronoun, however recent controversy in the community suggests that a zero-gendered-pronoun policy is probably best going forward. Conflicts: doc/build/changelog/migration_08.rst doc/build/orm/session.rst examples/nested_sets/nested_sets.py Affected #: 6 files https://bitbucket.org/zzzeek/sqlalchemy/commits/4b1c8ccc4f46/ Changeset: 4b1c8ccc4f46 Branch: rel_0_6 User: zzzeek Date: 2013-11-30 23:41:03 Summary: - the pronoun removal commit. there was only one instance of a standalone gendered pronoun with a gender-neutral subject, but also have replaced all occurences of "his/her", "his or her", etc. The docs have always strived to account for both genders in any non-specific singular pronoun, however recent controversy in the community suggests that a zero-gendered-pronoun policy is probably best going forward. Conflicts: doc/build/changelog/migration_08.rst doc/build/orm/session.rst examples/nested_sets/nested_sets.py Conflicts: doc/build/changelog/changelog_02.rst doc/build/orm/session.rst doc/build/orm/tutorial.rst examples/beaker_caching/advanced.py Affected #: 5 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-08 20:17:58
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b576359dba20/ Changeset: b576359dba20 Branch: None User: zzzeek Date: 2013-12-08 20:56:30 Summary: 0.8.4 prep Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/be1251c625b7/ Changeset: be1251c625b7 Branch: master User: zzzeek Date: 2013-12-08 21:00:12 Summary: forgot authors!! Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/41f1e3db4595/ Changeset: 41f1e3db4595 Branch: rel_0_9 User: zzzeek Date: 2013-12-08 21:00:26 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/746a4e8f6145/ Changeset: 746a4e8f6145 Branch: None User: zzzeek Date: 2013-12-08 21:00:37 Summary: forgot authors!! Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6fb499599a94/ Changeset: 6fb499599a94 Branch: rel_0_8 User: zzzeek Date: 2013-12-08 21:01:39 Summary: Merge branch 'rel_0_8' of /Users/classic/dev/sqlalchemy into rel_0_8 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-27 21:40:53
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/aeb5ffec2820/ Changeset: aeb5ffec2820 Branch: None User: zzzeek Date: 2013-12-27 22:37:57 Summary: - actually check the list of views! Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/1b38d1773e7b/ Changeset: 1b38d1773e7b Branch: None User: zzzeek Date: 2013-12-27 22:38:16 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/db0bfa06761e/ Changeset: db0bfa06761e Branch: rel_0_8 User: zzzeek Date: 2013-12-27 22:38:27 Summary: - actually check the list of views! Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/f50c670e47bb/ Changeset: f50c670e47bb Branch: master User: zzzeek Date: 2013-12-27 22:39:54 Summary: - Changed the queries used by Firebird to list table and view names to query from the ``rdb$relations`` view instead of the ``rdb$relation_fields`` and ``rdb$view_relations`` views. Variants of both the old and new queries are mentioned on many FAQ and blogs, however the new queries are taken straight from the "Firebird FAQ" which appears to be the most official source of info. [ticket:2898] Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/6db0e6edcbcf/ Changeset: 6db0e6edcbcf Branch: rel_0_9 User: zzzeek Date: 2013-12-27 22:40:19 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...> - 2014-01-15 01:25:57
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/58d3a4147361/ Changeset: 58d3a4147361 Branch: None User: Kyle Stark Date: 2014-01-13 17:52:31 Summary: Fix TypeError for class_mapper called w/ iterable When the class_ passed is not a mapped class but is actually an iterable, the string formatting operation fails with a TypeError, and the expected ArgumentError is not raised. Calling code which is using reflection and expects this error will fail (e.g. the sadisplay module). Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d87923c1d19f/ Changeset: d87923c1d19f Branch: None User: zzzeek Date: 2014-01-15 02:20:03 Summary: Merge pull request #58 from kstark/patch-1 Fix TypeError for class_mapper called w/ iterable Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/789ab9174354/ Changeset: 789ab9174354 Branch: None User: zzzeek Date: 2014-01-15 02:22:11 Summary: - changelog + test for pullreq github 58 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/26b899e9ac15/ Changeset: 26b899e9ac15 Branch: None User: Kyle Stark Date: 2014-01-15 02:24:04 Summary: Fix TypeError for class_mapper called w/ iterable When the class_ passed is not a mapped class but is actually an iterable, the string formatting operation fails with a TypeError, and the expected ArgumentError is not raised. Calling code which is using reflection and expects this error will fail (e.g. the sadisplay module). Conflicts: lib/sqlalchemy/orm/base.py Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/aace3b0e9694/ Changeset: aace3b0e9694 Branch: rel_0_8 User: zzzeek Date: 2014-01-15 02:24:28 Summary: - changelog + test for pullreq github 58 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-19 22:52:27
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/906e33a7a646/ Changeset: 906e33a7a646 Branch: None User: wichert Date: 2014-01-16 11:23:05 Summary: Fix a typo in the relationship docs The text refers to ``boston_addresses``, while the code sample uses ``addresses``. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/59f09454b255/ Changeset: 59f09454b255 Branch: None User: zzzeek Date: 2014-01-19 23:50:06 Summary: Merge pull request #59 from wichert/doc-relationship-typo Fix a typo in the relationship docs Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/82c07837d9fb/ Changeset: 82c07837d9fb Branch: None User: zzzeek Date: 2014-01-19 23:51:21 Summary: fix typo Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/df06bd18033c/ Changeset: df06bd18033c Branch: None User: wichert Date: 2014-01-19 23:51:42 Summary: Fix a typo in the relationship docs The text refers to ``boston_addresses``, while the code sample uses ``addresses``. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/21e012121a69/ Changeset: 21e012121a69 Branch: rel_0_8 User: zzzeek Date: 2014-01-19 23:51:51 Summary: fix 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...> - 2014-02-19 20:28:14
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/c597843f137b/ Changeset: c597843f137b Branch: None User: Marcus McCurdy Date: 2014-02-14 19:23:51 Summary: Fixes MySQL dialect partitioning Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7e66d7e39213/ Changeset: 7e66d7e39213 Branch: None User: zzzeek Date: 2014-02-19 21:24:36 Summary: Merge branch 'master' of https://bitbucket.org/50onred/sqlalchemy/overview into t Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/0b4c0384f60f/ Changeset: 0b4c0384f60f Branch: None User: zzzeek Date: 2014-02-19 21:26:51 Summary: changelog for pullreq 12 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/17d7e98b5e14/ Changeset: 17d7e98b5e14 Branch: None User: Marcus McCurdy Date: 2014-02-19 21:27:24 Summary: Fixes MySQL dialect partitioning Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/56364c636e00/ Changeset: 56364c636e00 Branch: rel_0_8 User: zzzeek Date: 2014-02-19 21:27:31 Summary: changelog for pullreq 12 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...> - 2014-02-20 04:26:51
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/39c0485a2115/ Changeset: 39c0485a2115 Branch: None User: zzzeek Date: 2014-02-20 04:56:06 Summary: 2014 Affected #: 134 files https://bitbucket.org/zzzeek/sqlalchemy/commits/1366ef9f1cbb/ Changeset: 1366ef9f1cbb Branch: rel_0_8 User: zzzeek Date: 2014-02-20 04:59:11 Summary: 0.8.5 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b2fd85b7d5aa/ Changeset: b2fd85b7d5aa Branch: None User: zzzeek Date: 2014-02-20 05:01:40 Summary: 0.9.3 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/5634a3f104de/ Changeset: 5634a3f104de Branch: None User: zzzeek Date: 2014-02-20 05:05:06 Summary: 0.8.5 released same day Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/5c88f38c7259/ Changeset: 5c88f38c7259 Branch: None User: zzzeek Date: 2014-02-20 05:09:07 Summary: fix 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. |