sqlalchemy-commits Mailing List for SQLAlchemy (Page 79)
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-12-20 15:27:08
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/65bd6ec96602/ Changeset: 65bd6ec96602 Branch: master User: zzzeek Date: 2013-12-20 16:26:09 Summary: - Fixed issue where a primary key column that has a Sequence on it, yet the column is not the "auto increment" column, either because it has a foreign key constraint or ``autoincrement=False`` set, would attempt to fire the Sequence on INSERT for backends that don't support sequences, when presented with an INSERT missing the primary key value. This would take place on non-sequence backends like SQLite, MySQL. [ticket:2896] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/acb8a2216caa/ Changeset: acb8a2216caa Branch: rel_0_9 User: zzzeek Date: 2013-12-20 16:26:26 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ae3c57f492c5/ Changeset: ae3c57f492c5 Branch: rel_0_8 User: zzzeek Date: 2013-12-20 16:26:35 Summary: - Fixed issue where a primary key column that has a Sequence on it, yet the column is not the "auto increment" column, either because it has a foreign key constraint or ``autoincrement=False`` set, would attempt to fire the Sequence on INSERT for backends that don't support sequences, when presented with an INSERT missing the primary key value. This would take place on non-sequence backends like SQLite, MySQL. [ticket:2896] 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-12-19 21:09:00
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5402e2f5dde6/ Changeset: 5402e2f5dde6 Branch: master User: zzzeek Date: 2013-12-19 22:07:35 Summary: remove print Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/affb88167acc/ Changeset: affb88167acc Branch: rel_0_9 User: zzzeek Date: 2013-12-19 22:07:43 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-19 21:05:52
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5f76f29c15b7/ Changeset: 5f76f29c15b7 Branch: master User: zzzeek Date: 2013-12-19 22:02:14 Summary: - Fixed bug with :meth:`.Insert.from_select` method where the order of the given names would not be taken into account when generating the INSERT statement, thus producing a mismatch versus the column names in the given SELECT statement. Also noted that :meth:`.Insert.from_select` implies that Python-side insert defaults cannot be used, since the statement has no VALUES clause. [ticket:2895] Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ceb12eae9075/ Changeset: ceb12eae9075 Branch: rel_0_9 User: zzzeek Date: 2013-12-19 22:02:40 Summary: Merge branch 'master' into rel_0_9 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2042493228a9/ Changeset: 2042493228a9 Branch: rel_0_8 User: zzzeek Date: 2013-12-19 22:05:15 Summary: - Fixed bug with :meth:`.Insert.from_select` method where the order of the given names would not be taken into account when generating the INSERT statement, thus producing a mismatch versus the column names in the given SELECT statement. Also noted that :meth:`.Insert.from_select` implies that Python-side insert defaults cannot be used, since the statement has no VALUES clause. [ticket:2895] Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-19 18:15:26
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/47eb5682d1b8/ Changeset: 47eb5682d1b8 Branch: master User: zzzeek Date: 2013-12-19 19:14:51 Summary: fix doc target Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/f5528e28f74b/ Changeset: f5528e28f74b Branch: rel_0_9 User: zzzeek Date: 2013-12-19 19:14:57 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-18 23:26:56
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2692238f45ae/ Changeset: 2692238f45ae Branch: master User: zzzeek Date: 2013-12-19 00:26:15 Summary: - Improvements to the system by which SQL types generate within ``__repr__()``, particularly with regards to the MySQL integer/numeric/ character types which feature a wide variety of keyword arguments. The ``__repr__()`` is important for use with Alembic autogenerate for when Python code is rendered in a migration script. [ticket:2893] Affected #: 7 files https://bitbucket.org/zzzeek/sqlalchemy/commits/bc8805506efb/ Changeset: bc8805506efb Branch: rel_0_9 User: zzzeek Date: 2013-12-19 00:26:41 Summary: Merge branch 'master' into rel_0_9 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-12-18 19:03:11
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f701f87c1374/ Changeset: f701f87c1374 Branch: master User: zzzeek Date: 2013-12-18 20:02:40 Summary: - skip this test for oracle Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/c39746247a4d/ Changeset: c39746247a4d Branch: rel_0_9 User: zzzeek Date: 2013-12-18 20:02:52 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-17 22:56:43
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/be06bcf3b94f/ Changeset: be06bcf3b94f Branch: master User: zzzeek Date: 2013-12-17 23:56:03 Summary: - remove very ancient TypeEngine constructor, not used by anything Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/93267146f1fa/ Changeset: 93267146f1fa Branch: rel_0_9 User: zzzeek Date: 2013-12-17 23:56:20 Summary: Merge branch 'master' into rel_0_9 Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-17 22:47:23
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fec03c88d659/ Changeset: fec03c88d659 Branch: master User: zzzeek Date: 2013-12-17 23:46:09 Summary: - make the json serializer and deserializer per-dialect, so that we are compatible with psycopg2's per-connection/cursor approach. add round trip tests for both native and non-native. Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ca1159d0848f/ Changeset: ca1159d0848f Branch: rel_0_9 User: zzzeek Date: 2013-12-17 23:46:56 Summary: Merge branch 'master' into rel_0_9 Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-17 22:17:12
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/653fcb892bd4/ Changeset: 653fcb892bd4 Branch: master User: zzzeek Date: 2013-12-17 23:16:43 Summary: this is a github PR Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d4ee945fe7fd/ Changeset: d4ee945fe7fd Branch: rel_0_9 User: zzzeek Date: 2013-12-17 23:16:49 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-17 21:30:54
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/c95e3c6512b0/ Changeset: c95e3c6512b0 Branch: master User: zzzeek Date: 2013-12-17 22:30:22 Summary: add JSON Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/94e39cea579f/ Changeset: 94e39cea579f Branch: rel_0_9 User: zzzeek Date: 2013-12-17 22:30:29 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-17 21:29:31
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/de2cfa2d1e94/ Changeset: de2cfa2d1e94 Branch: master User: zzzeek Date: 2013-12-17 22:28:43 Summary: autoincrement here Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/1ee5c07d1dee/ Changeset: 1ee5c07d1dee Branch: rel_0_9 User: zzzeek Date: 2013-12-17 22:28:55 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/3c4a565f2da0/ Changeset: 3c4a565f2da0 Branch: rel_0_8 User: zzzeek Date: 2013-12-17 22:29:06 Summary: autoincrement 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-12-17 20:41:03
|
14 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/64288c7d6ffc/ Changeset: 64288c7d6ffc Branch: None User: nathanrice Date: 2013-12-09 17:46:36 Summary: sqlalchemy/dialects/postgresql/__init__.py: - Added import references to JSON class sqlalchemy/dialects/postgresql/base.py: - Added visitor method for JSON class sqlalchemy/dialects/postgresql/pgjson (new): - JSON class, supports automatic serialization and deserialization of json data, as well as basic json operators. Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ba73d619ca21/ Changeset: ba73d619ca21 Branch: None User: nathanrice Date: 2013-12-09 17:52:23 Summary: Merge branch 'rel_0_9' of https://github.com/nathan-rice/sqlalchemy into rel_0_9 Affected #: 8 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f285b3536fe0/ Changeset: f285b3536fe0 Branch: None User: nathanrice Date: 2013-12-10 16:01:51 Summary: sqlalchemy/dialects/postgresql/pgjson: - Fixed reference to HSTORE - Corrected spelling of SQLAlchemy sqlalchemy/dialects/postgresql/psycopg2: - Added psycopg2 specific wrapper type for JSON which uses inherent json deserialization facilities - Added code to detect and utilize the JSON wrapper if psycopg2 >= 2.5 test/dialect/postgresql/test_types: - removed reference to use_native_hstore Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/059039e0f7ea/ Changeset: 059039e0f7ea Branch: None User: nathanrice Date: 2013-12-10 16:09:15 Summary: sqlalchemy/dialects/postgresql/psycopg2: - Removed unneeded import of psycopg2.extensions Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/015c73c83a1b/ Changeset: 015c73c83a1b Branch: None User: nathanrice Date: 2013-12-11 16:21:08 Summary: sqlalchemy/dialects/postgresql/pgjson: - Added support for additional operators - Made return as json default (rather than text) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/c64b7aabab33/ Changeset: c64b7aabab33 Branch: None User: nathanrice Date: 2013-12-11 16:27:10 Summary: sqlalchemy/dialects/postgresql/pgjson: - Updated documentation for JSON class Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/2c3afb4dcb6b/ Changeset: 2c3afb4dcb6b Branch: None User: zzzeek Date: 2013-12-17 20:03:20 Summary: Merge branch 'issue_2581' of github.com:nathan-rice/sqlalchemy into pg_json Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/10ac89cef3da/ Changeset: 10ac89cef3da Branch: None User: zzzeek Date: 2013-12-17 20:24:48 Summary: - enhance the exclusions system to support database versions within the __only_on__ attribute Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/73013914e7ea/ Changeset: 73013914e7ea Branch: None User: zzzeek Date: 2013-12-17 21:13:39 Summary: - rework JSON expressions to be based off __getitem__ exclusively - add support for "standalone" JSON objects; this involves getting CAST to upgrade the given type of a bound parameter. should add a core-only test for this. - add tests for "standalone" json round trips both with and without unicode - add mechanism by which we remove psycopg2's "json" handler in order to get the effect of using our non-native result handlers Affected #: 6 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e1802ff542f3/ Changeset: e1802ff542f3 Branch: None User: zzzeek Date: 2013-12-17 21:33:27 Summary: - using AssertsCompiledSQL so need __dialect__ Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d98fcca0b344/ Changeset: d98fcca0b344 Branch: None User: zzzeek Date: 2013-12-17 21:37:50 Summary: this test appears to be failing with pg 9.3, not sure how to restore it Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/80b6591dbea8/ Changeset: 80b6591dbea8 Branch: None User: zzzeek Date: 2013-12-17 21:38:35 Summary: - The :func:`.cast` function, when given a plain literal value, will now apply the given type to the given literal value on the bind parameter side according to the type given to the cast. This essentially replaces what would normally be the detected type of the literal value. This only takes effect if the auto-detected type of the literal value is either "nulltype" (e.g. couldn't detect) or a type that is of the same "affinity" as the cast type. The net change here is that the :func:`.cast` function includes more of the functionality already present in the :func:`.type_coerce` function. Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ed174b71bfaa/ Changeset: ed174b71bfaa Branch: master User: zzzeek Date: 2013-12-17 21:40:19 Summary: - changelog Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/a51cdab062a3/ Changeset: a51cdab062a3 Branch: rel_0_9 User: zzzeek Date: 2013-12-17 21:40:37 Summary: Merge branch 'master' into rel_0_9 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-12-17 00:35:19
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/207aaf2f41cf/ Changeset: 207aaf2f41cf Branch: master User: zzzeek Date: 2013-12-17 01:32:10 Summary: - for [ticket:2651], leaving CheckConstraint alone, preferring to keep backwards compatibility. A note about backslashing escapes is added. Because the Text() construct now supports bind params better, the example given in the code raises an exception now, so that should cover us. The exception itself has been enhanced to include the key name of the bound param. We're backporting this to 0.8 but 0.8 doesn't have the text->bind behavior that raises. Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/1e6ae7047ba1/ Changeset: 1e6ae7047ba1 Branch: rel_0_9 User: zzzeek Date: 2013-12-17 01:33:40 Summary: Merge branch 'master' into rel_0_9 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/0fefc6e22641/ Changeset: 0fefc6e22641 Branch: rel_0_8 User: zzzeek Date: 2013-12-17 01:34:48 Summary: - for [ticket:2651], leaving CheckConstraint alone, preferring to keep backwards compatibility. A note about backslashing escapes is added. Because the Text() construct now supports bind params better, the example given in the code raises an exception now, so that should cover us. The exception itself has been enhanced to include the key name of the bound param. We're backporting this to 0.8 but 0.8 doesn't have the text->bind behavior that raises. Conflicts: lib/sqlalchemy/sql/schema.py Affected #: 4 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-17 00:23:22
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/84f1d3417978/ Changeset: 84f1d3417978 Branch: master User: zzzeek Date: 2013-12-17 01:17:41 Summary: - An adjustment to the :func:`.subqueryload` strategy which ensures that the query runs after the loading process has begun; this is so that the subqueryload takes precedence over other loaders that may be hitting the same attribute due to other eager/noload situations at the wrong time. [ticket:2887] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/fc0f7e3a5cea/ Changeset: fc0f7e3a5cea Branch: rel_0_9 User: zzzeek Date: 2013-12-17 01:18:00 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/dcb7e7759ae8/ Changeset: dcb7e7759ae8 Branch: rel_0_8 User: zzzeek Date: 2013-12-17 01:22:26 Summary: - An adjustment to the :func:`.subqueryload` strategy which ensures that the query runs after the loading process has begun; this is so that the subqueryload takes precedence over other loaders that may be hitting the same attribute due to other eager/noload situations at the wrong time. [ticket:2887] 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-12-16 23:55:02
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/98c23acee6a8/ Changeset: 98c23acee6a8 Branch: master User: zzzeek Date: 2013-12-17 00:52:52 Summary: - fix up the FAQ regarding the "foo_id" issue - add session object states to the glossary Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/6f7ce05776cc/ Changeset: 6f7ce05776cc Branch: rel_0_9 User: zzzeek Date: 2013-12-17 00:53:14 Summary: Merge branch 'master' into rel_0_9 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/37ebd3f2f3ce/ Changeset: 37ebd3f2f3ce Branch: rel_0_8 User: zzzeek Date: 2013-12-17 00:54:30 Summary: - fix up the FAQ regarding the "foo_id" issue - add session object states to the glossary Conflicts: doc/build/glossary.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...> - 2013-12-16 20:27:54
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/1d9eb4101365/ Changeset: 1d9eb4101365 Branch: master User: zzzeek Date: 2013-12-16 21:25:48 Summary: - Fixed bug when using joined table inheritance from a table to a select/alias on the base, where the PK columns were also not same named; the persistence system would fail to copy primary key values from the base table to the inherited table upon INSERT. [ticket:2885] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/99f1dc7da634/ Changeset: 99f1dc7da634 Branch: rel_0_9 User: zzzeek Date: 2013-12-16 21:26:11 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e294767148c7/ Changeset: e294767148c7 Branch: rel_0_8 User: zzzeek Date: 2013-12-16 21:26:19 Summary: - Fixed bug when using joined table inheritance from a table to a select/alias on the base, where the PK columns were also not same named; the persistence system would fail to copy primary key values from the base table to the inherited table upon INSERT. [ticket:2885] 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-12-16 19:37:16
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/015e804c4889/ Changeset: 015e804c4889 Branch: master User: zzzeek Date: 2013-12-16 20:35:51 Summary: wrong method name Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/e5fa10149275/ Changeset: e5fa10149275 Branch: rel_0_9 User: zzzeek Date: 2013-12-16 20:35:59 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/329aefb11eb6/ Changeset: 329aefb11eb6 Branch: rel_0_8 User: zzzeek Date: 2013-12-16 20:36:30 Summary: wrong method name... Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-16 02:27:34
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b2223ab14988/ Changeset: b2223ab14988 Branch: master User: zzzeek Date: 2013-12-16 03:23:01 Summary: - add "force_nocheck" as a way to turn on unicode=force without even doing the isinstance() check - currently used only by psycopg2 + native enum + py2k. - didn't realize psycopg2 had UNICODEARRAY extension all this time; replace _PGArray with just using UNICODEARRAY instead. - replace unnecessary/inconsistent __import__ in _isolation_lookup. Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/1a05d769dc66/ Changeset: 1a05d769dc66 Branch: rel_0_9 User: zzzeek Date: 2013-12-16 03:27:09 Summary: Merge branch 'master' into rel_0_9 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-12-16 01:08:23
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/638c1c46b232/ Changeset: 638c1c46b232 Branch: master User: zzzeek Date: 2013-12-16 02:06:27 Summary: load_on_pending is different from enable_relationship_loading and should not be superseded. both have a potential use. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/f49051838fa2/ Changeset: f49051838fa2 Branch: rel_0_9 User: zzzeek Date: 2013-12-16 02:06:49 Summary: Merge branch 'master' into rel_0_9 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/296f648e39e1/ Changeset: 296f648e39e1 Branch: rel_0_8 User: zzzeek Date: 2013-12-16 02:07:59 Summary: load_on_pending is different from enable_relationship_loading and should not be superseded. both have a potential use. Conflicts: lib/sqlalchemy/orm/relationships.py Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-12 18:37:28
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9c41c2cdc61b/ Changeset: 9c41c2cdc61b Branch: rel_0_8 User: zzzeek Date: 2013-12-12 19:36:25 Summary: make the error message for [ticket:2889] more accurate, as we support composites to many-to-ones now also Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/752359936645/ Changeset: 752359936645 Branch: master User: zzzeek Date: 2013-12-12 19:36:58 Summary: make the error message for [ticket:2889] more accurate, as we support composites to many-to-ones now also Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/8a70b456ec8d/ Changeset: 8a70b456ec8d Branch: rel_0_9 User: zzzeek Date: 2013-12-12 19:37:02 Summary: Merge branch 'master' into rel_0_9 Affected #: 2 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-12 18:33:29
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f244287f4647/ Changeset: f244287f4647 Branch: master User: zzzeek Date: 2013-12-12 19:30:16 Summary: - :func:`.composite` will raise an informative error message when the columns/attribute (names) passed don't resolve to a Column or mapped attribute (such as an erroneous tuple); previously raised an unbound local. [ticket:2889] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9df84c6269dd/ Changeset: 9df84c6269dd Branch: rel_0_9 User: zzzeek Date: 2013-12-12 19:31:10 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/730f585dc687/ Changeset: 730f585dc687 Branch: rel_0_8 User: zzzeek Date: 2013-12-12 19:32:57 Summary: - :func:`.composite` will raise an informative error message when the columns/attribute (names) passed don't resolve to a Column or mapped attribute (such as an erroneous tuple); previously raised an unbound local. [ticket:2889] Conflicts: test/orm/test_composites.py 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-12-12 17:54:26
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ace7bdbc7857/ Changeset: ace7bdbc7857 Branch: master User: zzzeek Date: 2013-12-12 18:49:57 Summary: - Error message when a string arg sent to :func:`.relationship` which doesn't resolve to a class or mapper has been corrected to work the same way as when a non-string arg is received, which indicates the name of the relationship which had the configurational error. [ticket:2888] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e8823198a2cf/ Changeset: e8823198a2cf Branch: rel_0_9 User: zzzeek Date: 2013-12-12 18:50:12 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/69154698d20d/ Changeset: 69154698d20d Branch: rel_0_8 User: zzzeek Date: 2013-12-12 18:53:34 Summary: - Error message when a string arg sent to :func:`.relationship` which doesn't resolve to a class or mapper has been corrected to work the same way as when a non-string arg is received, which indicates the name of the relationship which had the configurational error. [ticket:2888] Conflicts: lib/sqlalchemy/orm/relationships.py 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-12-12 01:21:25
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9bef2001a604/ Changeset: 9bef2001a604 Branch: master User: zzzeek Date: 2013-12-12 02:19:56 Summary: move things that are 90% behavioral improvements to that section. the list of things that can definitely people should be more focused. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/91a1d0f14f74/ Changeset: 91a1d0f14f74 Branch: rel_0_9 User: zzzeek Date: 2013-12-12 02:20:41 Summary: Merge branch 'master' into rel_0_9 Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2013-12-12 01:02:34
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5294342018c6/ Changeset: 5294342018c6 Branch: None User: zzzeek Date: 2013-12-12 01:48:56 Summary: Merge branch 'master' into rel_0_9 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d5384d601107/ Changeset: d5384d601107 Branch: master User: zzzeek Date: 2013-12-12 02:00:39 Summary: - implement "literal binds" for the text() clause, [ticket:2882] Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b7c4d7e574a9/ Changeset: b7c4d7e574a9 Branch: rel_0_9 User: zzzeek Date: 2013-12-12 02:02:00 Summary: Merge branch 'master' into rel_0_9 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-12-12 00:49:29
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/84af7e6c2210/ Changeset: 84af7e6c2210 Branch: master User: zzzeek Date: 2013-12-12 01:48:27 Summary: - The :class:`.ForeignKey` class more aggressively checks the given column argument. If not a string, it checks that the object is at least a :class:`.ColumnClause`, or an object that resolves to one, and that the ``.table`` attribute, if present, refers to a :class:`.TableClause` or subclass, and not something like an :class:`.Alias`. Otherwise, a :class:`.ArgumentError` is raised. [ticket:2883] 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. |