sqlalchemy-commits Mailing List for SQLAlchemy (Page 27)
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-01-26 21:43:06
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/8163de4cc9e0/ Changeset: 8163de4cc9e0 Branch: None User: zzzeek Date: 2016-01-26 21:41:26+00:00 Summary: - rework ColumnCollection to no longer persist "all_col_set"; we don't need this collection except in the extend/update uses where we create it ad-hoc. simplifies pickling. Compatibility with 1.0 should be OK as ColumnColleciton uses __getstate__ in any case and the __setstate__ contract hasn't changed. - Fixed bug in :class:`.Table` metadata construct which appeared around the 0.9 series where adding columns to a :class:`.Table` that was unpickled would fail to correctly establish the :class:`.Column` within the 'c' collection, leading to issues in areas such as ORM configuration. This could impact use cases such as ``extend_existing`` and others. fixes #3632 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-01-26 21:09:38
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9d9fc93b7065/ Changeset: 9d9fc93b7065 Branch: master User: zzzeek Date: 2016-01-26 21:09:23+00:00 Summary: - The workaround for right-nested joins on SQLite, where they are rewritten as subqueries in order to work around SQLite's lack of support for this syntax, is lifted when SQLite version 3.7.16 or greater is detected. fixes #3634 - The workaround for SQLite's unexpected delivery of column names as ``tablename.columnname`` for some kinds of queries is now disabled when SQLite version 3.10.0 or greater is detected. fixes #3633 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...> - 2016-01-26 18:39:04
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/df3f125bd84f/ Changeset: df3f125bd84f Branch: master User: zzzeek Date: 2016-01-26 18:38:34+00:00 Summary: remove PYTHONNOUSERSITE, not sure why this was here, it apparently interferes with coverage 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-01-26 17:57:36
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d100bfcf606f/ Changeset: d100bfcf606f Branch: master User: zzzeek Date: 2016-01-26 17:57:18+00:00 Summary: - another approach at coverage 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-01-26 17:06:48
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ebefbb3d3d37/ Changeset: ebefbb3d3d37 Branch: master User: zzzeek Date: 2016-01-26 17:06:24+00:00 Summary: - try to improve the default coverage job 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-01-25 00:37:37
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/70e24adaba6b/ Changeset: 70e24adaba6b Branch: master User: zzzeek Date: 2016-01-25 00:37:16+00:00 Summary: - fix the deps for the last change 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-01-25 00:30:02
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/0ad559922958/ Changeset: 0ad559922958 Branch: master User: zzzeek Date: 2016-01-25 00:29:26+00:00 Summary: - unfortunately we have to force the paths to be shorter due to https://github.com/pypa/virtualenv/issues/596 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-01-24 23:29:09
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/6b0515039214/ Changeset: 6b0515039214 Branch: master User: zzzeek Date: 2016-01-24 23:28:09+00:00 Summary: - add a new qualifier "native" vs. "dbapi" unicode to avoid profiling problems here - add extras_require to setup.py for the most common DBAPIs - rework tox.ini to use extras, specify a test matrix built in 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...> - 2016-01-23 23:31:26
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/7d70dfd412c0/ Changeset: 7d70dfd412c0 Branch: rel_1_0 User: zzzeek Date: 2016-01-23 23:30:37+00:00 Summary: - fix array test that was essentially taking a weird guess at the primary key of a row based on other tests invoking around it Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/926784f51361/ Changeset: 926784f51361 Branch: None User: zzzeek Date: 2016-01-23 23:31:07+00:00 Summary: - fix array test that was essentially taking a weird guess at the primary key of a row based on other tests invoking around it (cherry picked from commit 7d70dfd412c05fd8349339da01b472bd3df02082) 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-01-23 22:31:28
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2419bfe34cd5/ Changeset: 2419bfe34cd5 Branch: None User: zzzeek Date: 2016-01-23 22:31:02+00:00 Summary: - fix stray connection Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/baacacaad879/ Changeset: baacacaad879 Branch: rel_1_0 User: zzzeek Date: 2016-01-23 22:31:13+00:00 Summary: - fix stray connection (cherry picked from commit 2419bfe34cd5a1f4ead67d556ba74f3f1950762b) 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-01-23 21:39:45
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/67a69da3aa86/ Changeset: 67a69da3aa86 Branch: None User: zzzeek Date: 2016-01-23 21:38:44+00:00 Summary: - restate the "secondary" / AssociationProxy warning more strongly. references #3638 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6c4aa115ae7c/ Changeset: 6c4aa115ae7c Branch: rel_1_0 User: zzzeek Date: 2016-01-23 21:39:19+00:00 Summary: - restate the "secondary" / AssociationProxy warning more strongly. references #3638 (cherry picked from commit 67a69da3aa86c8b2b560ed79a9c91408ad704879) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/f8bc9c2bd3f7/ Changeset: f8bc9c2bd3f7 Branch: rel_0_9 User: zzzeek Date: 2016-01-23 21:39:27+00:00 Summary: - restate the "secondary" / AssociationProxy warning more strongly. references #3638 (cherry picked from commit 67a69da3aa86c8b2b560ed79a9c91408ad704879) 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-01-23 20:32:37
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/77a4794ed24c/ Changeset: 77a4794ed24c Branch: None User: zzzeek Date: 2016-01-23 20:32:10+00:00 Summary: - use regex here, columns dont matter, keep coming up with different orderings 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-01-23 19:59:36
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/65010e97bca9/ Changeset: 65010e97bca9 Branch: None User: zzzeek Date: 2016-01-23 19:58:42+00:00 Summary: - use uuid fragments for provision names to enable multiple test suites per server Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/bea513385566/ Changeset: bea513385566 Branch: rel_1_0 User: zzzeek Date: 2016-01-23 19:59:03+00:00 Summary: - use uuid fragments for provision names to enable multiple test suites per server (cherry picked from commit 65010e97bca995657c2843f6aa8ad48bab370182) 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-01-23 19:37:15
|
6 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/269313218ddd/ Changeset: 269313218ddd Branch: None User: zzzeek Date: 2016-01-23 19:29:25+00:00 Summary: - move out match compiler test to test_compiler - test_query isn't assertscompiledsql Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d18d6d9baf4c/ Changeset: d18d6d9baf4c Branch: None User: zzzeek Date: 2016-01-23 19:30:30+00:00 Summary: - native unicode expectations are too difficult to maintain w/ the number of drivers /DBURIs / python versions Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/cd3ea1d56bde/ Changeset: cd3ea1d56bde Branch: None User: zzzeek Date: 2016-01-23 19:33:40+00:00 Summary: - move out match compiler test to test_compiler - test_query isn't assertscompiledsql (cherry picked from commit 269313218ddd06a21387085295c553becbd00e46) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/341a52015bad/ Changeset: 341a52015bad Branch: rel_1_0 User: zzzeek Date: 2016-01-23 19:34:08+00:00 Summary: - native unicode expectations are too difficult to maintain w/ the number of drivers /DBURIs / python versions (cherry picked from commit d18d6d9baf4c98c47af70c0a7c796423396a51c1) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/110f02e17612/ Changeset: 110f02e17612 Branch: None User: zzzeek Date: 2016-01-23 19:35:49+00:00 Summary: - move out match compiler test to test_compiler - test_query isn't assertscompiledsql (cherry picked from commit 269313218ddd06a21387085295c553becbd00e46) (cherry picked from commit cd3ea1d56bdec8b5b00cd10c5ecc6017bb99bcdd) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f6db433fcdfe/ Changeset: f6db433fcdfe Branch: rel_0_9 User: zzzeek Date: 2016-01-23 19:36:52+00:00 Summary: - native unicode expectations are too difficult to maintain w/ the number of drivers /DBURIs / python versions (cherry picked from commit d18d6d9baf4c98c47af70c0a7c796423396a51c1) (cherry picked from commit 341a52015bad4051ddd01396582488106f826118) 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-01-21 22:31:21
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/82300be01675/ Changeset: 82300be01675 Branch: rel_1_0 User: zzzeek Date: 2016-01-21 22:30:56+00:00 Summary: - add missing IGNORE_EXCEPTION_DETAIL flag 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-01-21 22:21:20
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/24bad4bf1af8/ Changeset: 24bad4bf1af8 Branch: None User: zzzeek Date: 2016-01-21 22:20:52+00:00 Summary: - make this test deterministic 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-01-21 20:33:51
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/89fa08792e98/ Changeset: 89fa08792e98 Branch: None User: zzzeek Date: 2016-01-21 20:21:33+00:00 Summary: - documenation updates to clarify specific SQLite versions that have problems with right-nested joins and UNION column keys; references #3633 references #3634. backport from 1.1 to 0.9 announcing 1.1 as where these behaviors will be retired based on version-specific checks - fix test_resultset so that it passes when SQLite 3.10.0 is present, references #3633 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9cc769ac4004/ Changeset: 9cc769ac4004 Branch: None User: zzzeek Date: 2016-01-21 20:23:56+00:00 Summary: - documenation updates to clarify specific SQLite versions that have problems with right-nested joins and UNION column keys; references #3633 references #3634. backport from 1.1 to 0.9 announcing 1.1 as where these behaviors will be retired based on version-specific checks - fix test_resultset so that it passes when SQLite 3.10.0 is present, references #3633 (cherry picked from commit 89fa08792e98b9e31452aa3c949d9b909b10e7cd) Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/dc4eb7904e22/ Changeset: dc4eb7904e22 Branch: rel_0_9 User: zzzeek Date: 2016-01-21 20:31:37+00:00 Summary: - documenation updates to clarify specific SQLite versions that have problems with right-nested joins and UNION column keys; references #3633 references #3634. backport from 1.1 to 0.9 announcing 1.1 as where these behaviors will be retired based on version-specific checks - fix test_resultset so that it passes when SQLite 3.10.0 is present, references #3633 (cherry picked from commit 89fa08792e98b9e31452aa3c949d9b909b10e7cd) Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/38958f7b3f3e/ Changeset: 38958f7b3f3e Branch: None User: zzzeek Date: 2016-01-21 20:32:53+00:00 Summary: - add a forwards-test here as well Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/107f1f47b91c/ Changeset: 107f1f47b91c Branch: rel_1_0 User: zzzeek Date: 2016-01-21 20:33:18+00:00 Summary: - add a forwards-test here as well (cherry picked from commit 38958f7b3f3e6009c419ba8e021f2b14c1f2b89a) 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-01-20 23:00:52
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/963aa3029742/ Changeset: 963aa3029742 Branch: None User: zzzeek Date: 2016-01-20 22:59:56+00:00 Summary: - Added new parameter :paramref:`.orm.mapper.passive_deletes` to available mapper options. This allows a DELETE to proceed for a joined-table inheritance mapping against the base table only, while allowing for ON DELETE CASCADE to handle deleting the row from the subclass tables. fixes #2349 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...> - 2016-01-20 21:33:22
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/61016f17d1a5/ Changeset: 61016f17d1a5 Branch: None User: zzzeek Date: 2016-01-20 21:32:27+00:00 Summary: - The unsupported Sybase dialect now raises ``NotImplementedError`` when attempting to compile a query that includes "offset"; Sybase has no straightforward "offset" feature. fixes #2278 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-01-20 21:22:12
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/47d8858c5440/ Changeset: 47d8858c5440 Branch: None User: zzzeek Date: 2016-01-20 21:20:08+00:00 Summary: - generalize the verbiage on LargeBinary so that it doesn't create confusion for inherited classes such as BYTEA, fixes Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/851acda63cf2/ Changeset: 851acda63cf2 Branch: rel_1_0 User: zzzeek Date: 2016-01-20 21:20:52+00:00 Summary: - generalize the verbiage on LargeBinary so that it doesn't create confusion for inherited classes such as BYTEA, fixes (cherry picked from commit 47d8858c54401cdf10285b7935049faf87432f55) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e85e8c5f0242/ Changeset: e85e8c5f0242 Branch: rel_0_9 User: zzzeek Date: 2016-01-20 21:21:31+00:00 Summary: - generalize the verbiage on LargeBinary so that it doesn't create confusion for inherited classes such as BYTEA, fixes (cherry picked from commit 47d8858c54401cdf10285b7935049faf87432f55) 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-01-20 20:59:48
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/24dba714cb56/ Changeset: 24dba714cb56 Branch: None User: zzzeek Date: 2016-01-20 20:58:24+00:00 Summary: - update oracle JDBC driver URL, fixes #3554 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/dc22f66d943a/ Changeset: dc22f66d943a Branch: rel_1_0 User: zzzeek Date: 2016-01-20 20:58:43+00:00 Summary: - update oracle JDBC driver URL, fixes #3554 (cherry picked from commit 24dba714cb56e1f5a4dca5453cc5f442e6ee08ab) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/4a0cbc7be95a/ Changeset: 4a0cbc7be95a Branch: rel_0_9 User: zzzeek Date: 2016-01-20 20:58:47+00:00 Summary: - update oracle JDBC driver URL, fixes #3554 (cherry picked from commit 24dba714cb56e1f5a4dca5453cc5f442e6ee08ab) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d636f6c167fc/ Changeset: d636f6c167fc Branch: rel_0_8 User: zzzeek Date: 2016-01-20 20:59:27+00:00 Summary: - update oracle JDBC driver URL, fixes #3554 (cherry picked from commit 24dba714cb56e1f5a4dca5453cc5f442e6ee08ab) 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-01-20 20:30:42
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a53bd6f74b4f/ Changeset: a53bd6f74b4f Branch: None User: zzzeek Date: 2016-01-20 20:28:35+00:00 Summary: - cross link for concrete helper classes - remove redundant concrete helper docs from declarative docs, two places is enough Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/5ee4f0fa6291/ Changeset: 5ee4f0fa6291 Branch: rel_1_0 User: zzzeek Date: 2016-01-20 20:29:06+00:00 Summary: - cross link for concrete helper classes - remove redundant concrete helper docs from declarative docs, two places is enough (cherry picked from commit a53bd6f74b4f41fd04c8cde1f8b58bbb766fe18d) Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/58fe04576208/ Changeset: 58fe04576208 Branch: rel_0_9 User: zzzeek Date: 2016-01-20 20:30:17+00:00 Summary: - cross link for concrete helper classes - remove redundant concrete helper docs from declarative docs, two places is enough (cherry picked from commit a53bd6f74b4f41fd04c8cde1f8b58bbb766fe18d) 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-01-20 19:04:16
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b53667526eb9/ Changeset: b53667526eb9 Branch: rel_0_9 User: zzzeek Date: 2016-01-20 19:03:29+00:00 Summary: - typo Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/65833346e0be/ Changeset: 65833346e0be Branch: rel_1_0 User: zzzeek Date: 2016-01-20 19:03:44+00:00 Summary: - typo (cherry picked from commit b53667526eb9b2fabccfb097a5b76906d6452249) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/baabf3bedbdf/ Changeset: baabf3bedbdf Branch: None User: zzzeek Date: 2016-01-20 19:03:49+00:00 Summary: - typo (cherry picked from commit b53667526eb9b2fabccfb097a5b76906d6452249) 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-01-20 18:36:02
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/632c4f21fa3c/ Changeset: 632c4f21fa3c Branch: None User: zzzeek Date: 2016-01-20 18:34:57+00:00 Summary: - redo the docs for concrete inheritance to more strongly favor declarative, fixes #2890 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/575cad0a1bc1/ Changeset: 575cad0a1bc1 Branch: rel_1_0 User: zzzeek Date: 2016-01-20 18:35:26+00:00 Summary: - redo the docs for concrete inheritance to more strongly favor declarative, fixes #2890 (cherry picked from commit 632c4f21fa3cab353b801f585183494c529c6896) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/78926055cc7f/ Changeset: 78926055cc7f Branch: rel_0_9 User: zzzeek Date: 2016-01-20 18:35:30+00:00 Summary: - redo the docs for concrete inheritance to more strongly favor declarative, fixes #2890 (cherry picked from commit 632c4f21fa3cab353b801f585183494c529c6896) 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-01-20 17:23:13
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/02271efd8976/ Changeset: 02271efd8976 Branch: None User: zzzeek Date: 2016-01-20 17:22:17+00:00 Summary: - clarify the "Adding" section also illustrates updates, fixes #2942 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/b425fd8eda88/ Changeset: b425fd8eda88 Branch: rel_1_0 User: zzzeek Date: 2016-01-20 17:22:46+00:00 Summary: - clarify the "Adding" section also illustrates updates, fixes #2942 (cherry picked from commit 02271efd8976154f855646478b5438db078f7101) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/9588b6b244f3/ Changeset: 9588b6b244f3 Branch: rel_0_9 User: zzzeek Date: 2016-01-20 17:22:50+00:00 Summary: - clarify the "Adding" section also illustrates updates, fixes #2942 (cherry picked from commit 02271efd8976154f855646478b5438db078f7101) 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. |