sqlalchemy-commits Mailing List for SQLAlchemy (Page 23)
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...> - 2016-04-20 16:07:39
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fc68a7145d08/ Changeset: fc68a7145d08 Branch: rel_1_0 User: Ethan Date: 2016-04-20 15:20:06+00:00 Summary: Update tutorial.rst Fix very minor typo Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/68048f6f3f17/ Changeset: 68048f6f3f17 Branch: rel_0_9 User: Ethan Date: 2016-04-20 16:06:45+00:00 Summary: Update tutorial.rst Fix very minor typo (cherry picked from commit fc68a7145d086de21005b4ccaa93847d4b889dba) 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...> - 2016-04-19 22:50:38
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/23825a259176/ Changeset: 23825a259176 Branch: None User: zzzeek Date: 2016-04-19 22:17:45+00:00 Summary: Deprecate Mapper.order_by This is an old parameter no longer relevant to how SQLAlchemy works, once the Query object was introduced. By deprecating it we establish that we aren't supporting non-working use cases and that we encourage applications to move off of the use of this parameter. Fixes: #3394 Change-Id: I25b9a38142a1537bbcb27d3e8b66a8b265140072 Affected #: 18 files https://bitbucket.org/zzzeek/sqlalchemy/commits/8ab08cf805fb/ Changeset: 8ab08cf805fb Branch: master User: zzzeek Date: 2016-04-19 22:50:04+00:00 Summary: Merge "Deprecate Mapper.order_by" Affected #: 18 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...> - 2016-04-19 20:41:57
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/81bd994c0adf/ Changeset: 81bd994c0adf Branch: master User: zzzeek Date: 2016-04-19 19:53:50+00:00 Summary: Rename Query._mapper_zero() to Query._entity_zero() To be more descriptive of the use of _mapper_zero(), rename it to _entity_zero(), but also supply a new _mapper_zero() function that more strictly returns a mapper. The existing _entity_zero() function is renamed to _query_entity_zero. _only_mapper_zero() is removed as it isn't used. Divide up the existing calling functions to refer to the appropriate new method. Change-Id: I8780c3235e87b4936c6daf64d9d299b22b6e1260 Fixes: #3608 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...> - 2016-04-19 17:45:29
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/33921261f8eb/ Changeset: 33921261f8eb Branch: None User: thiefmaster Date: 2016-04-19 17:04:41+00:00 Summary: Add raise/raiseload relationship loading strategy Fixes: #3512 Co-Authored-By: Mike Bayer <mi...@zz...> Change-Id: Ibd126c50eda621e2f4120ee378f7313af2d7ec3c Pull-request: https://github.com/zzzeek/sqlalchemy/pull/193 Affected #: 9 files https://bitbucket.org/zzzeek/sqlalchemy/commits/56dafa6c0dc1/ Changeset: 56dafa6c0dc1 Branch: master User: zzzeek Date: 2016-04-19 17:44:51+00:00 Summary: Merge "Add raise/raiseload relationship loading strategy" 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...> - 2016-04-18 21:34:12
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6f6e2c48ba0b/ Changeset: 6f6e2c48ba0b Branch: master User: zzzeek Date: 2016-04-18 20:20:20+00:00 Summary: Propagate hybrid properties / info Keystone and others depend on the .property attribute being "mirrored" when a @hybrid_property is linked directly to a mapped attribute. Restore this linkage and also create a defined behavior for the .info dictionary; it is that of the hybrid itself. Add this behavioral change to the migration notes. Change-Id: I8ac34ef52039387230c648866c5ca15d381f7fee References: #3653 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...> - 2016-04-18 17:50:48
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/243b222a232d/ Changeset: 243b222a232d Branch: master User: zzzeek Date: 2016-04-18 16:55:48+00:00 Summary: Honor hybrid property / method docstrings The docstring specified on a hybrid property or method is now honored at the class level, allowing it to work with tools like Sphinx autodoc. The mechanics here necessarily involve some wrapping of expressions to occur for hybrid properties, which may cause them to appear differently using introspection. Fixes: #3653 Change-Id: I02549977fe8b2a051802eed7b00cc532fbc214e3 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/239 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...> - 2016-04-15 16:48:08
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b59cbb5fd7d2/ Changeset: b59cbb5fd7d2 Branch: None User: cito Date: 2016-04-15 16:00:27+00:00 Summary: - Add support for PostgreSQL with PyGreSQL Change-Id: I040b75ff3b4110e7e8b26442a4eb226ba8c26715 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/234 Affected #: 9 files https://bitbucket.org/zzzeek/sqlalchemy/commits/35e93db7ffb5/ Changeset: 35e93db7ffb5 Branch: master User: zzzeek Date: 2016-04-15 16:47:33+00:00 Summary: Merge "- Add support for PostgreSQL with PyGreSQL" 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...> - 2016-04-12 21:30:37
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/cf6ed33ba918/ Changeset: cf6ed33ba918 Branch: None User: zzzeek Date: 2016-04-12 21:28:56+00:00 Summary: - .gitreview default branch Change-Id: I7c70b2a4f92dbed5924e2592b204434e09fae007 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/41901a4242a0/ Changeset: 41901a4242a0 Branch: rel_1_0 User: zzzeek Date: 2016-04-12 21:29:38+00:00 Summary: - default branch rel_1_0 Change-Id: I3f42b9f9571ad7f75e1f4b5fac6944ea2f186b4b Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/59beb9b6cb7e/ Changeset: 59beb9b6cb7e Branch: rel_0_9 User: zzzeek Date: 2016-04-12 21:29:53+00:00 Summary: - default branch rel_0_9 Change-Id: Ib20281d6ea595d6507ec8568b26a0235c88a41a7 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...> - 2016-04-09 01:43:52
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2880f24d93a7/ Changeset: 2880f24d93a7 Branch: None User: EoghanMurray Date: 2016-04-07 10:57:14+00:00 Summary: Mention the correct way of adding multiple attributes which refer to the same column Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/bde46e335938/ Changeset: bde46e335938 Branch: None User: zzzeek Date: 2016-04-09 01:42:11+00:00 Summary: Merge remote-tracking branch 'origin/pr/257' Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/e7c885f156f7/ Changeset: e7c885f156f7 Branch: rel_1_0 User: EoghanMurray Date: 2016-04-09 01:42:46+00:00 Summary: Mention the correct way of adding multiple attributes which refer to the same column (cherry picked from commit 2880f24d93a774d02cde83dbabfd80ad279cbb05) 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...> - 2016-04-09 01:41:27
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/c8db0862c102/ Changeset: c8db0862c102 Branch: None User: Rachid Belaid Date: 2016-04-07 03:41:34+00:00 Summary: Fix typo from "addreses" to "addresses" Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/47472dde24d9/ Changeset: 47472dde24d9 Branch: rel_1_0 User: Rachid Belaid Date: 2016-04-09 01:40:48+00:00 Summary: Fix typo from "addreses" to "addresses" (cherry picked from commit c8db0862c102281da617d395b1826ff523af302e) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/0d618de316b0/ Changeset: 0d618de316b0 Branch: rel_0_9 User: Rachid Belaid Date: 2016-04-09 01:40:53+00:00 Summary: Fix typo from "addreses" to "addresses" (cherry picked from commit c8db0862c102281da617d395b1826ff523af302e) 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...> - 2016-04-06 17:32:26
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/bef15a950ec4/ Changeset: bef15a950ec4 Branch: None User: _diana_ Date: 2016-04-06 17:28:25+00:00 Summary: - don't load deferred columns on unexpire for merge with load=False, fixes #3488 Change-Id: Ic9577b800e4a4e2465ec7f3a2e95bd231f5337ee Co-Authored-By: Mike Bayer <mi...@zz...> Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/829bd30834cc/ Changeset: 829bd30834cc Branch: master User: zzzeek Date: 2016-04-06 17:32:10+00:00 Summary: Merge "- don't load deferred columns on unexpire for merge with load=False, fixes #3488" 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...> - 2016-04-06 14:01:34
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b1c9b3bd384f/ Changeset: b1c9b3bd384f Branch: None User: scop Date: 2016-04-04 10:46:07+00:00 Summary: Fix some broken links in docs Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/34be0bc78183/ Changeset: 34be0bc78183 Branch: None User: zzzeek Date: 2016-04-06 13:59:35+00:00 Summary: Merge remote-tracking branch 'origin/pr/255' Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/12d5ae8b7176/ Changeset: 12d5ae8b7176 Branch: rel_1_0 User: scop Date: 2016-04-06 14:00:03+00:00 Summary: Fix some broken links in docs (cherry picked from commit b1c9b3bd384fc40e1c411abef12eaf04b574612f) Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7f81b8a58757/ Changeset: 7f81b8a58757 Branch: rel_0_9 User: scop Date: 2016-04-06 14:00:09+00:00 Summary: Fix some broken links in docs (cherry picked from commit b1c9b3bd384fc40e1c411abef12eaf04b574612f) Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/a5ba00385870/ Changeset: a5ba00385870 Branch: rel_0_8 User: scop Date: 2016-04-06 14:00:15+00:00 Summary: Fix some broken links in docs (cherry picked from commit b1c9b3bd384fc40e1c411abef12eaf04b574612f) 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...> - 2016-03-31 19:26:41
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fdb6ab6a1d5d/ Changeset: fdb6ab6a1d5d Branch: None User: zzzeek Date: 2016-03-31 19:24:14+00:00 Summary: - Add a git review file Change-Id: Ib19e9ee0854f0d123ea625fb976f1a398cf88c87 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/dee288d83fad/ Changeset: dee288d83fad Branch: rel_1_0 User: zzzeek Date: 2016-03-31 19:26:06+00:00 Summary: - Add a git review file Change-Id: Ib19e9ee0854f0d123ea625fb976f1a398cf88c87 (cherry picked from commit fdb6ab6a1d5d55d900c388e039835c6433032977) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/4729af0d7c84/ Changeset: 4729af0d7c84 Branch: rel_0_9 User: zzzeek Date: 2016-03-31 19:26:12+00:00 Summary: - Add a git review file Change-Id: Ib19e9ee0854f0d123ea625fb976f1a398cf88c87 (cherry picked from commit fdb6ab6a1d5d55d900c388e039835c6433032977) 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...> - 2016-03-31 13:56:25
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/10def637d317/ Changeset: 10def637d317 Branch: None User: zzzeek Date: 2016-03-31 13:55:20+00:00 Summary: - callcount refresh due to negative indexes change for nocext 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...> - 2016-03-30 23:01:03
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fdb65744d44a/ Changeset: fdb65744d44a Branch: None User: zzzeek Date: 2016-03-30 22:59:01+00:00 Summary: - limit this to sqlite for now 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...> - 2016-03-30 21:48:09
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f84ef1f83cc6/ Changeset: f84ef1f83cc6 Branch: None User: lele Date: 2016-01-28 08:04:40+00:00 Summary: - properly handle negative indexes in RowProxy.__getitem__() Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/4df1e07bb9c4/ Changeset: 4df1e07bb9c4 Branch: None User: zzzeek Date: 2016-03-30 21:05:30+00:00 Summary: Merge remote-tracking branch 'origin/pr/231' into pr231 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/dd20f56bc9a3/ Changeset: dd20f56bc9a3 Branch: None User: zzzeek Date: 2016-03-30 21:27:53+00:00 Summary: - make sure negative row indexes are based on the size of the number of columns we're actually reporting on - add more tests for negative row index - changelog/migration Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/03d35a833cff/ Changeset: 03d35a833cff Branch: None User: zzzeek Date: 2016-03-30 21:36:03+00:00 Summary: - move all resultproxy tests intio test_resultset Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bdd29fd56b0d/ Changeset: bdd29fd56b0d Branch: rel_1_0 User: zzzeek Date: 2016-03-30 21:44:04+00:00 Summary: - move all resultproxy tests intio test_resultset, adapted from 03d35a833cff68013781640b1192d079ab7e1154 in master (not cherry-picked) 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...> - 2016-03-30 21:01:59
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4a3205df84b7/ Changeset: 4a3205df84b7 Branch: None User: Patrick Date: 2016-03-30 20:45:40+00:00 Summary: Docstring Fix Change the docstring in short_selects example to match the code Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/fb7e141abd7e/ Changeset: fb7e141abd7e Branch: rel_1_0 User: Patrick Date: 2016-03-30 21:01:21+00:00 Summary: Docstring Fix Change the docstring in short_selects example to match the code (cherry picked from commit 4a3205df84b737f5fe55914fe22eef7264f20764) 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...> - 2016-03-30 20:33:44
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b3b3c68a4a08/ Changeset: b3b3c68a4a08 Branch: None User: _diana_ Date: 2016-01-28 03:54:05+00:00 Summary: sqlite: reflect primary key constraint names, fixes #3629 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/abeb762f885a/ Changeset: abeb762f885a Branch: None User: _diana_ Date: 2016-01-28 23:55:12+00:00 Summary: same logic, but without the inner function Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/e6cbf44d6dd7/ Changeset: e6cbf44d6dd7 Branch: None User: zzzeek Date: 2016-03-30 20:25:41+00:00 Summary: Merge remote-tracking branch 'origin/pr/230' Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/5370f0503ad7/ Changeset: 5370f0503ad7 Branch: None User: zzzeek Date: 2016-03-30 20:32:55+00:00 Summary: - changelog for #3629, fixes #3629 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...> - 2016-03-30 13:30:39
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9bdbf19d5417/ Changeset: 9bdbf19d5417 Branch: None User: NestorTejero Date: 2016-03-30 06:48:48+00:00 Summary: redundant "using the by changing" -> "using the" Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/c30fa88d867b/ Changeset: c30fa88d867b Branch: rel_1_0 User: NestorTejero Date: 2016-03-30 13:29:50+00:00 Summary: redundant "using the by changing" -> "using the" (cherry picked from commit 9bdbf19d54174c1077689bc472dc088c9b06aa24) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/70fce7db3091/ Changeset: 70fce7db3091 Branch: rel_0_9 User: NestorTejero Date: 2016-03-30 13:29:53+00:00 Summary: redundant "using the by changing" -> "using the" (cherry picked from commit 9bdbf19d54174c1077689bc472dc088c9b06aa24) 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...> - 2016-03-29 21:58:08
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fb9d481e898b/ Changeset: fb9d481e898b Branch: None User: zzzeek Date: 2016-03-29 21:56:02+00:00 Summary: - Added :meth:`.Select.lateral` and related constructs to allow for the SQL standard LATERAL keyword, currently only supported by Postgresql. fixes #2857 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...> - 2016-03-25 23:33:51
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/63d2a486bf84/ Changeset: 63d2a486bf84 Branch: None User: zzzeek Date: 2016-03-25 23:33:15+00:00 Summary: - remember to not reassign self.connection now that __connect() has no return value 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...> - 2016-03-25 22:31:56
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/8a776122a378/ Changeset: 8a776122a378 Branch: None User: zzzeek Date: 2016-03-25 22:31:17+00:00 Summary: - Added connection pool events :meth:`ConnectionEvents.close`, :meth:`.ConnectionEvents.detach`, :meth:`.ConnectionEvents.close_detached`. 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...> - 2016-03-24 15:19:31
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d594691a1af4/ Changeset: d594691a1af4 Branch: None User: zzzeek Date: 2016-03-24 15:18:53+00:00 Summary: - oracle doesn't release savepoints 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...> - 2016-03-21 15:06:29
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e3abb63293be/ Changeset: e3abb63293be Branch: None User: mgedmin Date: 2016-03-21 10:00:49+00:00 Summary: ReST fix: missing backtick Fixes a misrendering at http://docs.sqlalchemy.org/en/latest/dialects/mssql.html#nullability: Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/2d5b7a139f4d/ Changeset: 2d5b7a139f4d Branch: None User: zzzeek Date: 2016-03-21 15:05:40+00:00 Summary: Merge remote-tracking branch 'origin/pr/251' Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/7a206fdc3251/ Changeset: 7a206fdc3251 Branch: rel_1_0 User: mgedmin Date: 2016-03-21 15:06:00+00:00 Summary: ReST fix: missing backtick Fixes a misrendering at http://docs.sqlalchemy.org/en/latest/dialects/mssql.html#nullability: (cherry picked from commit e3abb63293be80379d20b4c3f0d1cd093459a9eb) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/7cec2dbb7373/ Changeset: 7cec2dbb7373 Branch: rel_0_9 User: mgedmin Date: 2016-03-21 15:06:08+00:00 Summary: ReST fix: missing backtick Fixes a misrendering at http://docs.sqlalchemy.org/en/latest/dialects/mssql.html#nullability: (cherry picked from commit e3abb63293be80379d20b4c3f0d1cd093459a9eb) 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. |