sqlalchemy-commits Mailing List for SQLAlchemy (Page 86)
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...> - 2013-10-07 00:30:24
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/1b25ed907fb7/ Changeset: 1b25ed907fb7 Branch: master User: zzzeek Date: 2013-10-07 02:29:08 Summary: - merge ticket_1418 branch, [ticket:1418] - The system of loader options has been entirely rearchitected to build upon a much more comprehensive base, the :class:`.Load` object. This base allows any common loader option like :func:`.joinedload`, :func:`.defer`, etc. to be used in a "chained" style for the purpose of specifying options down a path, such as ``joinedload("foo").subqueryload("bar")``. The new system supersedes the usage of dot-separated path names, multiple attributes within options, and the usage of ``_all()`` options. - Added a new load option :func:`.orm.load_only`. This allows a series of column names to be specified as loading "only" those attributes, deferring the rest. Affected #: 26 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-10-06 23:18:53
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/1065f22cbf70/ Changeset: 1065f22cbf70 Branch: None User: zzzeek Date: 2013-10-07 00:12:40 Summary: tests Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bfff18fbb7cc/ Changeset: bfff18fbb7cc Branch: None User: zzzeek Date: 2013-10-07 00:26:16 Summary: move deferred to its own test suite, add some new ones for load_only() Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/adbd6bddc2b6/ Changeset: adbd6bddc2b6 Branch: None User: zzzeek Date: 2013-10-07 00:28:02 Summary: another test Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/0e45a840ee55/ Changeset: 0e45a840ee55 Branch: ticket_1418 User: zzzeek Date: 2013-10-07 01:18:27 Summary: more docs, tests 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-10-06 21:43:09
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/43dd3288fd44/ Changeset: 43dd3288fd44 Branch: None User: zzzeek Date: 2013-10-06 20:26:51 Summary: - simplify the usage of strategy_for(), make it public - rework how Load gets set up with methods, as this needs to be extensible also. Use a decorator approach for simple method registration; make the "API" interface of Load more friendly Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/54ee0bc0ec94/ Changeset: 54ee0bc0ec94 Branch: ticket_1418 User: zzzeek Date: 2013-10-06 23:42:41 Summary: most docs 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-10-06 03:49:02
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d79e1d69a6b2/ Changeset: d79e1d69a6b2 Branch: master User: zzzeek Date: 2013-10-06 05:47:49 Summary: - fix propagation of quote flag within _gen_label() so that if the name is already an instance of _anonymous_label(), we don't downgrade it to a plain quoted_name - fixes regression from [ticket:2812]. [ticket:2834] 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-10-04 19:23:14
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/aba78471867d/ Changeset: aba78471867d Branch: master User: zzzeek Date: 2013-10-04 21:22:43 Summary: fix entity_zero resolution 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-10-03 21:08:13
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/97fec60b49a1/ Changeset: 97fec60b49a1 Branch: ticket_2824 User: zzzeek Date: 2013-10-03 20:58:08 Summary: - rework how Query gets at the Bundle in composite, as we need __clause_element__() to keep returning a real ClauseElement Affected #: 6 files https://bitbucket.org/zzzeek/sqlalchemy/commits/a83378b64005/ Changeset: a83378b64005 Branch: master User: zzzeek Date: 2013-10-03 23:06:55 Summary: - A new construct :class:`.Bundle` is added, which allows for specification of groups of column expressions to a :class:`.Query` construct. The group of columns are returned as a single tuple by default. The behavior of :class:`.Bundle` can be overridden however to provide any sort of result processing to the returned row. One example included is :attr:`.Composite.Comparator.bundle`, which applies a bundled form of a "composite" mapped attribute. [ticket:2824] - The :func:`.composite` construct now maintains the return object when used in a column-oriented :class:`.Query`, rather than expanding out into individual columns. This makes use of the new :class:`.Bundle` feature internally. This behavior is backwards incompatible; to select from a composite column which will expand out, use ``MyClass.some_composite.clauses``. 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...> - 2013-10-03 17:41:29
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/91e999f7a899/ Changeset: 91e999f7a899 Branch: ticket_2824 User: zzzeek Date: 2013-10-03 19:39:58 Summary: - more docs, tests 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-10-03 17:01:58
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f8a3a3d4ea21/ Changeset: f8a3a3d4ea21 Branch: ticket_2824 User: zzzeek Date: 2013-10-03 19:00:54 Summary: - add support/tests for entity_zero_or_selectable, adapt_to_selectable, corresponds_to 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-10-03 00:34:36
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/c4950a03b970/ Changeset: c4950a03b970 Branch: ticket_2824 User: zzzeek Date: 2013-10-03 02:34:03 Summary: take out the comparator stuff from bundle directly for now 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-10-02 23:55:50
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/500751fc8690/ Changeset: 500751fc8690 Branch: ticket_2824 User: zzzeek Date: 2013-10-03 01:51:24 Summary: - even better, embed bundling directly into composite 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-10-02 23:40:39
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/622da9e71906/ Changeset: 622da9e71906 Branch: ticket_2824 User: zzzeek Date: 2013-10-03 01:40:01 Summary: A new construct :class:`.Bundle` is added, which allows for specification of groups of column expressions to a :class:`.Query` construct. The group of columns are returned as a single tuple by default. The behavior of :class:`.Bundle` can be overridden however to provide any sort of result processing to the returned row. One example included is :attr:`.Composite.Comparator.bundle`, which applies a bundled form of a "composite" mapped attribute. [ticket:2824] 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-10-01 17:46:31
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/78c5249bf7d3/ Changeset: 78c5249bf7d3 Branch: master User: zzzeek Date: 2013-10-01 19:44:53 Summary: - add monetdb - break out into "production" and "experimental" Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/396186ef3974/ Changeset: 396186ef3974 Branch: rel_0_8 User: zzzeek Date: 2013-10-01 19:45:59 Summary: - add monetdb - break out into "production" and "experimental" 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-10-01 16:15:25
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3d4d93332951/ Changeset: 3d4d93332951 Branch: master User: zzzeek Date: 2013-10-01 18:14:34 Summary: - add support for removal of instance methods as event listeners, taking into account the id() of the function itself and self, [ticket:2832] 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:27:21
|
11 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f7504bdbad5d/ Changeset: f7504bdbad5d Branch: None User: Scott Schaefer Date: 2013-09-07 02:14:26 Summary: re.match to re.search Convert to re.search to eliminate the restriction on only matching the beginning of the string Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/bb12d79f7bb3/ Changeset: bb12d79f7bb3 Branch: None User: zzzeek Date: 2013-09-29 23:17:08 Summary: its a feature Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/62463b95e098/ Changeset: 62463b95e098 Branch: None User: zzzeek Date: 2013-09-29 23:19:25 Summary: add test for upcoming pullreq Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/c23dbd0220a7/ Changeset: c23dbd0220a7 Branch: None User: zzzeek Date: 2013-09-29 23:19:44 Summary: Merge pull request #26 from hackop/ticket_2819 re.match to re.search Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/7952132d3a57/ Changeset: 7952132d3a57 Branch: None User: zzzeek Date: 2013-09-29 23:19:51 Summary: Merge branch 'master' of github.com:zzzeek/sqlalchemy Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/fc8c40e8c587/ Changeset: fc8c40e8c587 Branch: None User: zzzeek Date: 2013-09-29 23:21:35 Summary: changelog Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/94d421ca2f2d/ Changeset: 94d421ca2f2d Branch: master User: zzzeek Date: 2013-09-29 23:24:29 Summary: - put exact version string in the test - use match with a .* preceding instead of search Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bace4c949e4e/ Changeset: bace4c949e4e Branch: None User: zzzeek Date: 2013-09-29 23:25:11 Summary: add test for upcoming pullreq Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/1e75bb2fabcb/ Changeset: 1e75bb2fabcb Branch: None User: zzzeek Date: 2013-09-29 23:25:19 Summary: Merge pull request #26 from hackop/ticket_2819 re.match to re.search Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/a0b8ce4ecf61/ Changeset: a0b8ce4ecf61 Branch: None User: zzzeek Date: 2013-09-29 23:25:29 Summary: changelog Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/51c92e1132e4/ Changeset: 51c92e1132e4 Branch: rel_0_8 User: zzzeek Date: 2013-09-29 23:25:34 Summary: - put exact version string in the test - use match with a .* preceding instead of search 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:17:24
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4cace9d3d52e/ Changeset: 4cace9d3d52e Branch: master User: zzzeek Date: 2013-09-29 23:16:57 Summary: its a feature 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-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-09-29 01:44:48
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/bfd72a542819/ Changeset: bfd72a542819 Branch: ticket_1418 User: zzzeek Date: 2013-09-29 03:44:21 Summary: polish 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-09-29 01:10:34
|
6 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2ebabe093336/ Changeset: 2ebabe093336 Branch: None User: zzzeek Date: 2013-09-29 00:55:42 Summary: get remaining option types to work Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b7b8936c767b/ Changeset: b7b8936c767b Branch: None User: zzzeek Date: 2013-09-29 01:04:04 Summary: fix test_of_type Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/8ff8be1c0114/ Changeset: 8ff8be1c0114 Branch: None User: zzzeek Date: 2013-09-29 01:35:57 Summary: - this is what has to happen to "default" strategies. these aren't really "defaults" anymore. Affected #: 7 files https://bitbucket.org/zzzeek/sqlalchemy/commits/6b90f4401fea/ Changeset: 6b90f4401fea Branch: None User: zzzeek Date: 2013-09-29 01:43:40 Summary: everything passing in orm except pickling Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/03d996dab702/ Changeset: 03d996dab702 Branch: None User: zzzeek Date: 2013-09-29 02:00:53 Summary: - seems like all tests passing Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/442986addab9/ Changeset: 442986addab9 Branch: ticket_1418 User: zzzeek Date: 2013-09-29 03:09:08 Summary: OK this one is everything, including that the "default" token e.g. joinedload('*') acts exactly the same, when it is out at the front like that. To specify wildcard on root entity it accepts joinedload(".*"). this is a little weird but trying to keep backwards compat and also triangulate on the use cases that will actually be needed 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-09-28 18:07:18
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3b24a438a935/ Changeset: 3b24a438a935 Branch: None User: zzzeek Date: 2013-09-28 19:25:04 Summary: - change wildcards to work relative to paths - add load_only option - lock down wildcards when specified without entity to be for exactly one lead entity only Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/117aadd84b74/ Changeset: 117aadd84b74 Branch: ticket_1418 User: zzzeek Date: 2013-09-28 19:59:02 Summary: - undefer group, now works path-specific 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-09-27 23:43:44
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/be2f40040fcc/ Changeset: be2f40040fcc Branch: None User: zzzeek Date: 2013-09-27 21:29:00 Summary: support propagate_to_loaders Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/1ed7aa6d02e1/ Changeset: 1ed7aa6d02e1 Branch: None User: zzzeek Date: 2013-09-27 21:38:35 Summary: get almost all the load options set Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/fa4f185fd2a5/ Changeset: fa4f185fd2a5 Branch: None User: zzzeek Date: 2013-09-28 01:23:14 Summary: - get '*' to work rudimentally - some refactoring Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7f866eefbd05/ Changeset: 7f866eefbd05 Branch: ticket_1418 User: zzzeek Date: 2013-09-28 01:43:19 Summary: - simplify some more 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-26 15:14:00
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/7ff74b76fd74/ Changeset: 7ff74b76fd74 Branch: ticket_1418 User: zzzeek Date: 2013-09-26 17:13:24 Summary: - fix the check for load depth 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-25 17:47:22
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/1274d26f5795/ Changeset: 1274d26f5795 Branch: ticket_1418 User: zzzeek Date: 2013-09-25 19:46:42 Summary: - fix some mapper targeting - don't assume loadopt is present 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-09-25 17:38:41
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3e76d9547233/ Changeset: 3e76d9547233 Branch: ticket_1418 User: zzzeek Date: 2013-09-25 19:38:20 Summary: hey and there's no import cycle 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-09-25 17:37:24
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2784b5b10e1d/ Changeset: 2784b5b10e1d Branch: None User: zzzeek Date: 2013-09-25 17:51:39 Summary: - fix path mechanics for contains_eager Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/599ab52b6011/ Changeset: 599ab52b6011 Branch: None User: zzzeek Date: 2013-09-25 18:54:10 Summary: simplify the "chain link" thing Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/1a76cfc951c8/ Changeset: 1a76cfc951c8 Branch: None User: zzzeek Date: 2013-09-25 19:24:59 Summary: - get all error conditions to raise as expected Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/81b28effd621/ Changeset: 81b28effd621 Branch: ticket_1418 User: zzzeek Date: 2013-09-25 19:36:55 Summary: - simplify how we detect this condition 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-25 17:34:35
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/03671e9ee4c1/ Changeset: 03671e9ee4c1 Branch: None User: alex_gaynor Date: 2013-09-25 19:29:52 Summary: Replace a big loop + dict lookup in Connection.execute() with a simple visitor pattern Affected #: 6 files https://bitbucket.org/zzzeek/sqlalchemy/commits/8f4002814907/ Changeset: 8f4002814907 Branch: master User: zzzeek Date: 2013-09-25 19:33:34 Summary: Merge pull request #30 from alex/visitor-pattern Replace a big loop + dict lookup in Connection.execute() with a simple visitor pattern 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. |