sqlalchemy-commits Mailing List for SQLAlchemy (Page 37)
Brought to you by:
zzzeek
You can subscribe to this list here.
2006 |
Jan
|
Feb
(74) |
Mar
(167) |
Apr
(127) |
May
(190) |
Jun
(119) |
Jul
(77) |
Aug
(82) |
Sep
(84) |
Oct
(153) |
Nov
(45) |
Dec
(54) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(109) |
Feb
(80) |
Mar
(110) |
Apr
(106) |
May
(92) |
Jun
(147) |
Jul
(288) |
Aug
(307) |
Sep
(108) |
Oct
(156) |
Nov
(147) |
Dec
(134) |
2008 |
Jan
(126) |
Feb
(91) |
Mar
(184) |
Apr
(208) |
May
(212) |
Jun
(54) |
Jul
(106) |
Aug
(80) |
Sep
(58) |
Oct
(80) |
Nov
(119) |
Dec
(220) |
2009 |
Jan
(202) |
Feb
(50) |
Mar
(70) |
Apr
(46) |
May
(80) |
Jun
(61) |
Jul
(146) |
Aug
(81) |
Sep
(71) |
Oct
(74) |
Nov
(66) |
Dec
(82) |
2010 |
Jan
(112) |
Feb
(169) |
Mar
(235) |
Apr
(77) |
May
(22) |
Jun
(31) |
Jul
(46) |
Aug
(46) |
Sep
(70) |
Oct
(36) |
Nov
(37) |
Dec
(79) |
2011 |
Jan
(46) |
Feb
(54) |
Mar
(65) |
Apr
(73) |
May
(31) |
Jun
(46) |
Jul
(40) |
Aug
(36) |
Sep
(44) |
Oct
(33) |
Nov
(19) |
Dec
(10) |
2012 |
Jan
(60) |
Feb
(37) |
Mar
(35) |
Apr
(28) |
May
(27) |
Jun
(50) |
Jul
(33) |
Aug
(88) |
Sep
(64) |
Oct
(74) |
Nov
(62) |
Dec
(41) |
2013 |
Jan
(30) |
Feb
(37) |
Mar
(39) |
Apr
(52) |
May
(40) |
Jun
(85) |
Jul
(74) |
Aug
(76) |
Sep
(26) |
Oct
(76) |
Nov
(63) |
Dec
(65) |
2014 |
Jan
(68) |
Feb
(82) |
Mar
(87) |
Apr
(24) |
May
(66) |
Jun
(34) |
Jul
(86) |
Aug
(75) |
Sep
(70) |
Oct
(41) |
Nov
(23) |
Dec
(53) |
2015 |
Jan
(40) |
Feb
(39) |
Mar
(69) |
Apr
(64) |
May
(40) |
Jun
(43) |
Jul
(20) |
Aug
(48) |
Sep
(38) |
Oct
(28) |
Nov
(34) |
Dec
(44) |
2016 |
Jan
(82) |
Feb
(49) |
Mar
(25) |
Apr
(21) |
May
(19) |
Jun
(46) |
Jul
(38) |
Aug
(21) |
Sep
(33) |
Oct
(44) |
Nov
(26) |
Dec
(10) |
2017 |
Jan
(52) |
Feb
(18) |
Mar
(61) |
Apr
(43) |
May
(57) |
Jun
(36) |
Jul
(37) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Bitbucket <com...@bi...> - 2015-08-11 17:06:33
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/669a42c604e0/ Changeset: 669a42c604e0 Branch: None User: zzzeek Date: 2015-08-11 16:48:38+00:00 Summary: - pep8 test/orm/test_mapper Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/7841611413c7/ Changeset: 7841611413c7 Branch: None User: zzzeek Date: 2015-08-11 16:48:52+00:00 Summary: - pep8 test/orm/test_mapper (cherry picked from commit 669a42c604e007623aeeb50a6f01b217badc8ceb) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/5198b1de3102/ Changeset: 5198b1de3102 Branch: None User: zzzeek Date: 2015-08-11 17:05:17+00:00 Summary: - Fixed 1.0 regression where the "noload" loader strategy would fail to function for a many-to-one relationship. The loader used an API to place "None" into the dictionary which no longer actually writes a value; this is a side effect of :ticket:`3061`. - remove InstanceState._initialize() totally, it's used nowhere else and no longer does what it says it does - fill in fowards-port version ids throughout the changes for 1.0.9 Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7f3548909e5d/ Changeset: 7f3548909e5d Branch: rel_1_0 User: zzzeek Date: 2015-08-11 17:06:10+00:00 Summary: - Fixed 1.0 regression where the "noload" loader strategy would fail to function for a many-to-one relationship. The loader used an API to place "None" into the dictionary which no longer actually writes a value; this is a side effect of :ticket:`3061`. - remove InstanceState._initialize() totally, it's used nowhere else and no longer does what it says it does - fill in fowards-port version ids throughout the changes for 1.0.9 (cherry picked from commit 5198b1de31029cc985102cd13569086a7056c2f1) 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...> - 2015-08-11 01:41:06
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/39adada25d71/ Changeset: 39adada25d71 Branch: ticket_3499 User: zzzeek Date: 2015-08-11 01:40:46+00:00 Summary: - with pg JSON types, indexed/keyed access *always* returns json/jsonb; e.g. it never is automatically cast to the type of element in the structure. therefore we really don't need the concept of index_map, it's overkill. Replace it with a simple callback in Indexable where each type does its own setup_getitem(), and we're done. Add a convenience "index_type" attribute to HSTORE and an "astext_type" attribute to JSON/JSONB.. 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...> - 2015-08-10 21:08:39
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b914e9123848/ Changeset: b914e9123848 Branch: ticket_3499 User: zzzeek Date: 2015-08-10 21:07:24+00:00 Summary: - more or less completes hstore, json, array, adds basic tests for index_map. needs generic tests plus migration documentation. - in particular, the implicit "astext" within cast() is removed. PG has a built-in cast from json->jsonb and vice versa so we should stick with requiring explicit if they want astext.cast(). 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...> - 2015-08-10 17:21:54
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/020a7b643f25/ Changeset: 020a7b643f25 Branch: None User: zzzeek Date: 2015-08-10 14:06:27+00:00 Summary: dev Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b150781220af/ Changeset: b150781220af Branch: ticket_3499 User: zzzeek Date: 2015-08-10 17:21:17+00:00 Summary: - most of the index model working, no tests yet - ARRAY restored, most of JSON, not JSONB yet Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-08-10 14:08:28
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a7d7941d3eba/ Changeset: a7d7941d3eba Branch: None User: zzzeek Date: 2015-08-10 14:07:17+00:00 Summary: - Fixed two issues regarding Sybase reflection, allowing tables without primary keys to be reflected as well as ensured that a SQL statement involved in foreign key detection is pre-fetched up front to avoid driver issues upon nested queries. Fixes here courtesy Eugene Zapolsky; note that we cannot currently test Sybase to locally verify these changes. fixes #3508 fixes #3509 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/90327f6a9369/ Changeset: 90327f6a9369 Branch: rel_1_0 User: zzzeek Date: 2015-08-10 14:07:54+00:00 Summary: - Fixed two issues regarding Sybase reflection, allowing tables without primary keys to be reflected as well as ensured that a SQL statement involved in foreign key detection is pre-fetched up front to avoid driver issues upon nested queries. Fixes here courtesy Eugene Zapolsky; note that we cannot currently test Sybase to locally verify these changes. fixes #3508 fixes #3509 (cherry picked from commit a7d7941d3ebafd16f603785c4677e371c675d1c0) Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-08-09 18:20:02
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b0c88dd77114/ Changeset: b0c88dd77114 Branch: ticket_3499 User: zzzeek Date: 2015-08-09 18:14:41+00:00 Summary: - add a full suite for Indexable Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-08-09 17:22:57
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/481218e61364/ Changeset: 481218e61364 Branch: None User: zzzeek Date: 2015-08-09 16:22:29+00:00 Summary: - put ARRAY and related into their own module, easier to manage re: hstore/json Affected #: 7 files https://bitbucket.org/zzzeek/sqlalchemy/commits/10129773a7ca/ Changeset: 10129773a7ca Branch: ticket_3499 User: zzzeek Date: 2015-08-09 17:21:13+00:00 Summary: - begin moving general handling of __getitem__ and slice objects into core expression. we need to make a sql.elements.Slice object, which isn't a SQL standard thing; however there's no other place to put this as long as we want slice handling to have some meaning in Core. Basically any other backend that ever wants to use the [] operator, I don't want to re-implement everything for PG on that backend as well. this will need to have backend-agnostic tests in tests/sql/test_operator.py. Affected #: 6 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-08-09 14:24:27
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/51870ddaef8a/ Changeset: 51870ddaef8a Branch: None User: halfcrazy Date: 2015-08-09 04:00:17+00:00 Summary: fix typo int->into Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/e99dbe141d0c/ Changeset: e99dbe141d0c Branch: None User: zzzeek Date: 2015-08-09 14:22:41+00:00 Summary: Merge pull request #192 from halfcrazy/patch-1 fix typo int->into Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/5c0ada019a9c/ Changeset: 5c0ada019a9c Branch: rel_1_0 User: halfcrazy Date: 2015-08-09 14:23:38+00:00 Summary: fix typo int->into (cherry picked from commit 51870ddaef8abf61ee4c8d6337a72db5395a0a85) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/8f8453e469b0/ Changeset: 8f8453e469b0 Branch: rel_0_9 User: halfcrazy Date: 2015-08-09 14:23:43+00:00 Summary: fix typo int->into (cherry picked from commit 51870ddaef8abf61ee4c8d6337a72db5395a0a85) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/4ae3de721497/ Changeset: 4ae3de721497 Branch: rel_0_8 User: halfcrazy Date: 2015-08-09 14:23:50+00:00 Summary: fix typo int->into (cherry picked from commit 51870ddaef8abf61ee4c8d6337a72db5395a0a85) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-08-06 21:45:43
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/69fcabb33513/ Changeset: 69fcabb33513 Branch: None User: leorochael Date: 2015-08-06 21:26:45+00:00 Summary: Remove useless code `to_unicode` variable was created but was not used. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/838ce5bbad5a/ Changeset: 838ce5bbad5a Branch: None User: zzzeek Date: 2015-08-06 21:44:33+00:00 Summary: Merge pull request #191 from leorochael/leorochael-remove_dead_variable Remove useless code Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/9bb1a6d90704/ Changeset: 9bb1a6d90704 Branch: rel_1_0 User: leorochael Date: 2015-08-06 21:45:12+00:00 Summary: Remove useless code `to_unicode` variable was created but was not used. (cherry picked from commit 69fcabb335130bd0f6e9889c5b191c68192559b5) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/c02a944b8593/ Changeset: c02a944b8593 Branch: rel_0_9 User: leorochael Date: 2015-08-06 21:45:19+00:00 Summary: Remove useless code `to_unicode` variable was created but was not used. (cherry picked from commit 69fcabb335130bd0f6e9889c5b191c68192559b5) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-08-03 21:47:31
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b52fe06bade1/ Changeset: b52fe06bade1 Branch: ticket_3499 User: zzzeek Date: 2015-07-31 22:27:24+00:00 Summary: dev Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/292f5bec1cbf/ Changeset: 292f5bec1cbf Branch: None User: zzzeek Date: 2015-08-03 21:46:34+00:00 Summary: - add a note clarifying query.with_labels(), fixes #3506 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6416c2a3f768/ Changeset: 6416c2a3f768 Branch: rel_1_0 User: zzzeek Date: 2015-08-03 21:47:03+00:00 Summary: - add a note clarifying query.with_labels(), fixes #3506 (cherry picked from commit 292f5bec1cbfcaa9d16af8fe4149c7191f194f11) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/3d4edfa51b43/ Changeset: 3d4edfa51b43 Branch: rel_0_9 User: zzzeek Date: 2015-08-03 21:47:07+00:00 Summary: - add a note clarifying query.with_labels(), fixes #3506 (cherry picked from commit 292f5bec1cbfcaa9d16af8fe4149c7191f194f11) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-31 22:19:37
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/196775b351c7/ Changeset: 196775b351c7 Branch: None User: zzzeek Date: 2015-07-31 21:22:57+00:00 Summary: - wip... Affected #: 7 files https://bitbucket.org/zzzeek/sqlalchemy/commits/6dcf65efa455/ Changeset: 6dcf65efa455 Branch: ticket_3499 User: zzzeek Date: 2015-07-31 22:19:04+00:00 Summary: - start refactoring the workings of index operators Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-30 14:35:30
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/dd6110eed335/ Changeset: dd6110eed335 Branch: None User: zzzeek Date: 2015-07-30 14:34:36+00:00 Summary: - Fixed issue where the SQL Server dialect would reflect a string- or other variable-length column type with unbounded length by assigning the token ``"max"`` to the length attribute of the string. While using the ``"max"`` token explicitly is supported by the SQL Server dialect, it isn't part of the normal contract of the base string types, and instead the length should just be left as None. The dialect now assigns the length to None on reflection of the type so that the type behaves normally in other contexts. fixes #3504 Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-29 21:41:40
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d8efa2257ec6/ Changeset: d8efa2257ec6 Branch: None User: zzzeek Date: 2015-07-29 21:40:47+00:00 Summary: - Fixed support for cx_Oracle version 5.2, which was tripping up SQLAlchemy's version detection under Python 3 and inadvertently not using the correct unicode mode for Python 3. This would cause issues such as bound variables mis-interpreted as NULL and rows silently not being returned. fixes #3491 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bd0f65400ed2/ Changeset: bd0f65400ed2 Branch: rel_1_0 User: zzzeek Date: 2015-07-29 21:41:18+00:00 Summary: - Fixed support for cx_Oracle version 5.2, which was tripping up SQLAlchemy's version detection under Python 3 and inadvertently not using the correct unicode mode for Python 3. This would cause issues such as bound variables mis-interpreted as NULL and rows silently not being returned. fixes #3491 (cherry picked from commit d8efa2257ec650b345ec6e840984387263a957a6) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/fd6c64609cbf/ Changeset: fd6c64609cbf Branch: rel_0_9 User: zzzeek Date: 2015-07-29 21:41:22+00:00 Summary: - Fixed support for cx_Oracle version 5.2, which was tripping up SQLAlchemy's version detection under Python 3 and inadvertently not using the correct unicode mode for Python 3. This would cause issues such as bound variables mis-interpreted as NULL and rows silently not being returned. fixes #3491 (cherry picked from commit d8efa2257ec650b345ec6e840984387263a957a6) Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-29 20:55:33
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2e52f877638d/ Changeset: 2e52f877638d Branch: None User: zzzeek Date: 2015-07-29 20:54:02+00:00 Summary: - fix typo in suffix_with() docs, fixes #3502 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/80ca73e9b8c0/ Changeset: 80ca73e9b8c0 Branch: rel_1_0 User: zzzeek Date: 2015-07-29 20:54:41+00:00 Summary: - fix typo in suffix_with() docs, fixes #3502 (cherry picked from commit 2e52f877638ded9d8440fa94632bff0f1705a83e) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-27 02:44:49
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/7240262adb5d/ Changeset: 7240262adb5d Branch: rel_1_0 User: zzzeek Date: 2015-07-27 02:43:13+00:00 Summary: - using text().columns() for ORM matching won't work well until ticket #3501, so remove this from pre-1.1 tutorials Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/9490e64a28ca/ Changeset: 9490e64a28ca Branch: rel_0_9 User: zzzeek Date: 2015-07-27 02:44:29+00:00 Summary: - using text().columns() for ORM matching won't work well until ticket #3501, so remove this from pre-1.1 tutorials (cherry picked from commit 7240262adb5d74ec49abdd8561fca58b632c5e8e) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-26 20:38:23
|
8 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2997d3910d36/ Changeset: 2997d3910d36 Branch: None User: zzzeek Date: 2015-07-26 20:22:35+00:00 Summary: - typo Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/3d4e6a5f000a/ Changeset: 3d4e6a5f000a Branch: None User: zzzeek Date: 2015-07-26 20:22:48+00:00 Summary: - typo Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6422952a29ba/ Changeset: 6422952a29ba Branch: None User: zzzeek Date: 2015-07-26 20:27:15+00:00 Summary: - add an example of text.columns - correct the scalar() example output Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/7d268d4bcb5e/ Changeset: 7d268d4bcb5e Branch: None User: zzzeek Date: 2015-07-26 20:29:30+00:00 Summary: - remove "completely raw", whatever that is Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/95fb6fe7ae2c/ Changeset: 95fb6fe7ae2c Branch: None User: zzzeek Date: 2015-07-26 20:29:46+00:00 Summary: - remove "completely raw", whatever that is Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/4f51fa947ffa/ Changeset: 4f51fa947ffa Branch: None User: zzzeek Date: 2015-07-26 20:36:23+00:00 Summary: - work to bridge between core/ORM tutorials regarding the text() construct Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/62bbd6f57bdf/ Changeset: 62bbd6f57bdf Branch: rel_1_0 User: zzzeek Date: 2015-07-26 20:36:59+00:00 Summary: - work to bridge between core/ORM tutorials regarding the text() construct (cherry picked from commit 4f51fa947ffa0cadeab7ad7dcab649ce3fbcf970) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/996149e15303/ Changeset: 996149e15303 Branch: rel_0_9 User: zzzeek Date: 2015-07-26 20:37:59+00:00 Summary: - work to bridge between core/ORM tutorials regarding the text() construct (cherry picked from commit 4f51fa947ffa0cadeab7ad7dcab649ce3fbcf970) Conflicts: doc/build/core/tutorial.rst Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-26 20:10:32
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d73ffaafe656/ Changeset: d73ffaafe656 Branch: None User: zzzeek Date: 2015-07-26 20:09:25+00:00 Summary: - add an example of text.columns - correct the scalar() example output Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d9bc19026dcc/ Changeset: d9bc19026dcc Branch: rel_1_0 User: zzzeek Date: 2015-07-26 20:09:46+00:00 Summary: - add an example of text.columns - correct the scalar() example output Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-24 22:54:38
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3180f15837cc/ Changeset: 3180f15837cc Branch: None User: zzzeek Date: 2015-07-24 22:27:45+00:00 Summary: - Organize the tree for 1.1 Affected #: 9 files https://bitbucket.org/zzzeek/sqlalchemy/commits/5ab9ab7940a6/ Changeset: 5ab9ab7940a6 Branch: None User: zzzeek Date: 2015-07-24 22:52:25+00:00 Summary: - remove "distutils-only" mode, use setuptools only - add first-class "pytest" runner to setup.py, fixes #3489 - remove references to setuptools Feature and mark that "--without-cextensions" is removed, fixes #3500 Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-24 16:42:10
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9e092e339463/ Changeset: 9e092e339463 Branch: None User: zzzeek Date: 2015-07-24 16:24:18+00:00 Summary: - An adjustment to the new Postgresql feature of reflecting storage options and USING of :ticket:`3455` released in 1.0.6, to disable the feature for Postgresql versions < 8.2 where the ``reloptions`` column is not provided; this allows Amazon Redshift to again work as it is based on an 8.0.x version of Postgresql. Fix courtesy Pete Hollobon. references #3455 Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-23 20:35:23
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/c00ef11a0c14/ Changeset: c00ef11a0c14 Branch: None User: zzzeek Date: 2015-07-19 20:01:02+00:00 Summary: - pg8000 very annoyingly complaining here, use total literal Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-23 01:12:16
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9140a2f6af17/ Changeset: 9140a2f6af17 Branch: None User: zzzeek Date: 2015-07-22 23:59:09+00:00 Summary: - categorize this correctly Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/8c494c855aa0/ Changeset: 8c494c855aa0 Branch: rel_0_9 User: zzzeek Date: 2015-07-22 23:59:26+00:00 Summary: - categorize this correctly Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/552f1f135f66/ Changeset: 552f1f135f66 Branch: None User: zzzeek Date: 2015-07-23 00:00:13+00:00 Summary: 1.0.8 Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-22 22:09:27
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4096ad0f0980/ Changeset: 4096ad0f0980 Branch: None User: zzzeek Date: 2015-07-22 22:03:36+00:00 Summary: - Fixed critical issue whereby the pool "checkout" event handler may be called against a stale connection without the "connect" event handler having been called, in the case where the pool attempted to reconnect after being invalidated and failed; the stale connection would remain present and would be used on a subsequent attempt. This issue has a greater impact in the 1.0 series subsequent to 1.0.2, as it also delivers a blanked-out ``.info`` dictionary to the event handler; prior to 1.0.2 the ``.info`` dictionary is still the previous one. fixes #3497 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/0aee8eb0015b/ Changeset: 0aee8eb0015b Branch: rel_0_9 User: zzzeek Date: 2015-07-22 22:08:37+00:00 Summary: - Fixed critical issue whereby the pool "checkout" event handler may be called against a stale connection without the "connect" event handler having been called, in the case where the pool attempted to reconnect after being invalidated and failed; the stale connection would remain present and would be used on a subsequent attempt. This issue has a greater impact in the 1.0 series subsequent to 1.0.2, as it also delivers a blanked-out ``.info`` dictionary to the event handler; prior to 1.0.2 the ``.info`` dictionary is still the previous one. fixes #3497 (cherry picked from commit 4096ad0f0980f6940be57aaee85791df8f975cd7) 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...> - 2015-07-22 17:54:44
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e71cf56a8358/ Changeset: e71cf56a8358 Branch: rel_0_9 User: zzzeek Date: 2015-07-22 17:37:35+00:00 Summary: 0.9.10 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/a6e83b204ffc/ Changeset: a6e83b204ffc Branch: None User: zzzeek Date: 2015-07-22 17:53:28+00:00 Summary: 0.9.10 release date (cherry picked from commit e71cf56a835842cd7d7038d6527888cc1297005f) Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-15 17:08:12
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/eed8bcef3ae1/ Changeset: eed8bcef3ae1 Branch: None User: zzzeek Date: 2015-07-15 17:07:32+00:00 Summary: - add a note, references #3487 Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-07-13 19:39:54
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b68c9ac93eea/ Changeset: b68c9ac93eea Branch: None User: zzzeek Date: 2015-07-13 19:39:04+00:00 Summary: - Fixed bug in :class:`.AbstractConcreteBase` extension where a column setup on the ABC base which had a different attribute name vs. column name would not be correctly mapped on the final base class. The failure on 0.9 would be silent whereas on 1.0 it raised an ArgumentError, so may not have been noticed prior to 1.0. fixes #3480 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. |