sqlalchemy-commits Mailing List for SQLAlchemy (Page 52)
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...> - 2014-12-04 23:30:43
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f5ff86983f9c/ Changeset: f5ff86983f9c Branch: None User: zzzeek Date: 2014-12-04 23:29:56+00:00 Summary: - The :meth:`.Operators.match` operator is now handled such that the return type is not strictly assumed to be boolean; it now returns a :class:`.Boolean` subclass called :class:`.MatchType`. The type will still produce boolean behavior when used in Python expressions, however the dialect can override its behavior at result time. In the case of MySQL, while the MATCH operator is typically used in a boolean context within an expression, if one actually queries for the value of a match expression, a floating point value is returned; this value is not compatible with SQLAlchemy's C-based boolean processor, so MySQL's result-set behavior now follows that of the :class:`.Float` type. A new operator object ``notmatch_op`` is also added to better allow dialects to define the negation of a match operation. fixes #3263 Affected #: 14 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...> - 2014-12-04 17:01:53
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/87bfcf91e965/ Changeset: 87bfcf91e965 Branch: None User: zzzeek Date: 2014-12-04 17:01:19+00:00 Summary: - The :meth:`.PGDialect.has_table` method will now query against ``pg_catalog.pg_table_is_visible(c.oid)``, rather than testing for an exact schema match, when the schema name is None; this so that the method will also illustrate that temporary tables are present. Note that this is a behavioral change, as Postgresql allows a non-temporary table to silently overwrite an existing temporary table of the same name, so this changes the behavior of ``checkfirst`` in that unusual scenario. fixes #3264 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...> - 2014-12-01 18:33:25
|
12 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/25434e9209af/ Changeset: 25434e9209af Branch: None User: ScottDugas Date: 2014-10-22 19:09:05+00:00 Summary: Support additional args/kwargs on cursor method fdbsql has an optional nested kwarg, which is supported in the actual code, but not in the testing proxy Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/9c0eb840788e/ Changeset: 9c0eb840788e Branch: None User: ScottDugas Date: 2014-10-23 14:24:35+00:00 Summary: Print useful traceback on error _expect_failure was rethrowing the exception without keeping the traceback, so it was really hard to find out what was actually wrong Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/9687b272bdc7/ Changeset: 9687b272bdc7 Branch: None User: ScottDugas Date: 2014-10-23 15:46:34+00:00 Summary: Added new requirement for check_constraints Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2ce9333a24a1/ Changeset: 2ce9333a24a1 Branch: None User: ScottDugas Date: 2014-10-23 17:01:23+00:00 Summary: Forgot to update usage of ex to exc_value Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/470061bcdc0d/ Changeset: 470061bcdc0d Branch: None User: ScottDugas Date: 2014-10-23 21:55:13+00:00 Summary: Added requirement to test for bind limit Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/fdbea8795862/ Changeset: fdbea8795862 Branch: None User: ScottDugas Date: 2014-10-23 21:59:27+00:00 Summary: require check constraints for tests Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e01dab9b1fba/ Changeset: e01dab9b1fba Branch: None User: ScottDugas Date: 2014-10-29 21:42:52+00:00 Summary: Set the length for MyType implementation Mysql drops the type in these tests, when it does visit_typeclause, since it's an unkown type it just says none, and doesn't do a cast. Firebird also doesn't support varchar with length, it throws an error on these types. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/5b3fc8743582/ Changeset: 5b3fc8743582 Branch: None User: ScottDugas Date: 2014-10-30 15:06:45+00:00 Summary: Added requirement for temporary tables Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ebb9d57cb385/ Changeset: ebb9d57cb385 Branch: None User: ScottDugas Date: 2014-10-30 20:40:36+00:00 Summary: Removed accidental print statements Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/b31ab006897d/ Changeset: b31ab006897d Branch: None User: ScottDugas Date: 2014-11-03 19:54:51+00:00 Summary: Merge branch 'master' into fdbsql-tests Conflicts: lib/sqlalchemy/testing/exclusions.py Affected #: 123 files https://bitbucket.org/zzzeek/sqlalchemy/commits/8d154f84f1a5/ Changeset: 8d154f84f1a5 Branch: None User: ScottDugas Date: 2014-11-03 20:24:31+00:00 Summary: It now calls raise_from_cause master was updated to call util.raise_from_cause which is better than what I had Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/156f473de000/ Changeset: 156f473de000 Branch: None User: zzzeek Date: 2014-12-01 18:31:48+00:00 Summary: Merge remote-tracking branch 'origin/pr/151' into pr151 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...> - 2014-11-29 19:48:28
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/98c2a6797074/ Changeset: 98c2a6797074 Branch: None User: zzzeek Date: 2014-11-29 19:46:34+00:00 Summary: - Fixed bug in :meth:`.Table.tometadata` method where the :class:`.CheckConstraint` associated with a :class:`.Boolean` or :class:`.Enum` type object would be doubled in the target table. The copy process now tracks the production of this constraint object as local to a type object. fixes #3260 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...> - 2014-11-26 19:59:59
|
6 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4533096fde35/ Changeset: 4533096fde35 Branch: None User: jplaverdure Date: 2014-10-21 19:25:27+00:00 Summary: Update to make "changed" attribute only present on the parent class Changed attribute will now only be created on the parent class in case inheritance was used. Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/670f723e136b/ Changeset: 670f723e136b Branch: pr144 User: zzzeek Date: 2014-11-26 19:15:01+00:00 Summary: - Modified the :ref:`examples_versioned_history` example such that the "changed" timestamp column is mapped explicitly such that it is linked with that of the parent mapper if any, in order to avoid warnings. Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/a88be57fb7ef/ Changeset: a88be57fb7ef Branch: None User: zzzeek Date: 2014-11-26 19:58:32+00:00 Summary: - formatting Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/de62497b0327/ Changeset: de62497b0327 Branch: None User: zzzeek Date: 2014-11-26 19:58:44+00:00 Summary: - Updated the :ref:`examples_versioned_history` example such that mapped columns are re-mapped to match column names as well as grouping of columns; in particular, this allows columns that are explicitly grouped in a same-column-named joined inheritance scenario to be mapped in the same way in the history mappings, avoiding warnings added in the 0.9 series regarding this pattern and allowing the same view of attribute keys. Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/03418cad573d/ Changeset: 03418cad573d Branch: None User: zzzeek Date: 2014-11-26 19:59:26+00:00 Summary: - formatting (cherry picked from commit a88be57fb7ef96e914d8a7fb90de375ec7f0befd) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/e695d35e3966/ Changeset: e695d35e3966 Branch: rel_0_9 User: zzzeek Date: 2014-11-26 19:59:28+00:00 Summary: - Updated the :ref:`examples_versioned_history` example such that mapped columns are re-mapped to match column names as well as grouping of columns; in particular, this allows columns that are explicitly grouped in a same-column-named joined inheritance scenario to be mapped in the same way in the history mappings, avoiding warnings added in the 0.9 series regarding this pattern and allowing the same view of attribute keys. (cherry picked from commit de62497b03274c860ea2554dfbacb3064ce02c19) 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...> - 2014-11-26 18:52:27
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/16d9d366bd80/ Changeset: 16d9d366bd80 Branch: None User: jvanasco Date: 2014-10-03 17:15:52+00:00 Summary: * adding 'isouter=False' to sqlalchemy.orm.query.Query (https://bitbucket.org/zzzeek/sqlalchemy/issue/3217/make-join-more-standard-or-improve-error) $ python setup.py develop $ pip install nose $ pip install mock $ ./sqla_nose.py test.orm.test_joins ..................................................................................................... ---------------------------------------------------------------------- Ran 101 tests in 1.222s OK $ ./sqla_nose.py test.orm .............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................. ........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................S......................................................................................................................................................................................................................................................................................................................S............................................................................................................................................................................................................. ..........................................................................................................................................S.......S..S.SSS.SS...............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................S................................S..S........................S...........................................................................................SSS.S.........SSSSSSSS......SSSSSSSSS........SS...SS...............S.............................S...................................... ........................SS..SS..............................................................................................................S. ---------------------------------------------------------------------- Ran 3103 tests in 82.607s OK (SKIP=46) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/55ad1d915908/ Changeset: 55ad1d915908 Branch: None User: zzzeek Date: 2014-11-26 18:45:25+00:00 Summary: Merge branch 'issue_bb_3217' of https://bitbucket.org/jvanasco/sqlalchemy-alt into pr32 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/99e51151244c/ Changeset: 99e51151244c Branch: None User: zzzeek Date: 2014-11-26 18:50:43+00:00 Summary: - changelog, improve docstring/test for #3217. fixes #3217 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/028f7b8a8688/ Changeset: 028f7b8a8688 Branch: None User: zzzeek Date: 2014-11-26 18:51:39+00:00 Summary: - set default dialect 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...> - 2014-11-26 18:42:22
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/498be33c8f28/ Changeset: 498be33c8f28 Branch: None User: jvanasco Date: 2014-11-26 18:41:03+00:00 Summary: added docs to clarify that sql statement is already in a dialect (cherry picked from commit 0f5a400b77862d2ae8f5d1a326fe9571da8fc0cb) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/7b6e02aac7c2/ Changeset: 7b6e02aac7c2 Branch: rel_0_9 User: jon_nelson Date: 2014-11-26 18:42:09+00:00 Summary: - fix minor spelling error (cherry picked from commit 5fd779df0c958dc1ec2766f55d80b3090d2427eb) 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...> - 2014-11-26 18:41:54
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f6c64fd0a64f/ Changeset: f6c64fd0a64f Branch: None User: jon_nelson Date: 2014-11-15 02:01:11+00:00 Summary: Merged zzzeek/sqlalchemy into master Affected #: 8 files https://bitbucket.org/zzzeek/sqlalchemy/commits/5fd779df0c95/ Changeset: 5fd779df0c95 Branch: None User: jon_nelson Date: 2014-11-15 04:20:56+00:00 Summary: - fix minor spelling error Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/07f3aff03b8d/ Changeset: 07f3aff03b8d Branch: master User: zzzeek Date: 2014-11-26 18:41:42+00:00 Summary: Merged in jon_nelson/sqlalchemy/minor_spelling_error (pull request #37) - fix minor spelling error 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...> - 2014-11-26 18:40:37
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/0f5a400b7786/ Changeset: 0f5a400b7786 Branch: None User: jvanasco Date: 2014-10-17 23:35:29+00:00 Summary: added docs to clarify that sql statement is already in a dialect Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/ca320be944c8/ Changeset: ca320be944c8 Branch: master User: zzzeek Date: 2014-11-26 18:40:15+00:00 Summary: Merged in jvanasco/sqlalchemy-alt/issue_docs_event_statement (pull request #33) added docs to clarify that sql statement is already in a dialect 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...> - 2014-11-26 15:35:23
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/fb06fa9d6e6f/ Changeset: fb06fa9d6e6f Branch: None User: zzzeek Date: 2014-11-26 15:34:46+00:00 Summary: - add an order_by here Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/4fb4dfb20b95/ Changeset: 4fb4dfb20b95 Branch: rel_0_9 User: zzzeek Date: 2014-11-26 15:35:01+00:00 Summary: - add an order_by here (cherry picked from commit fb06fa9d6e6f6da8eee5b7dfc196c3e12761da61) 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...> - 2014-11-26 04:34:25
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d69f44b78090/ Changeset: d69f44b78090 Branch: None User: zzzeek Date: 2014-11-26 04:28:54+00:00 Summary: - add a new option --force-write-profiles to rewrite profiles even if they are passing Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ee38bcdec26d/ Changeset: ee38bcdec26d Branch: None User: zzzeek Date: 2014-11-26 04:29:15+00:00 Summary: - refresh all zoomark profiles Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/79c0aa6b7320/ Changeset: 79c0aa6b7320 Branch: None User: zzzeek Date: 2014-11-26 04:33:47+00:00 Summary: - use self.parent, not table here as there's an attributeerror trap for self.table that behaves differently in py3k 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...> - 2014-11-25 23:02:16
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/f992ca1944d5/ Changeset: f992ca1944d5 Branch: rel_0_9 User: zzzeek Date: 2014-11-24 17:34:18+00:00 Summary: - Fixed a bug in the examples/generic_assocaitions/discriminator_on_association.py example, where the subclasses of AddressAssociation were not being mapped as "single table inheritance", leading to problems when trying to use the mappings further. (cherry picked from commit 2098001ad3e0a40aa909a347ec91c12fab04a657) Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/212d93366d1c/ Changeset: 212d93366d1c Branch: None User: zzzeek Date: 2014-11-25 23:01:31+00:00 Summary: - The behavioral contract of the :attr:`.ForeignKeyConstraint.columns` collection has been made consistent; this attribute is now a :class:`.ColumnCollection` like that of all other constraints and is initialized at the point when the constraint is associated with a :class:`.Table`. fixes #3243 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...> - 2014-11-24 23:50:14
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ba926a09b493/ Changeset: ba926a09b493 Branch: None User: zzzeek Date: 2014-11-24 22:35:50+00:00 Summary: - add some logging to path_registry to help debug eager loading issues Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/de11f9498258/ Changeset: de11f9498258 Branch: master User: zzzeek Date: 2014-11-24 23:49:32+00:00 Summary: - The :meth:`.PropComparator.of_type` modifier has been improved in conjunction with loader directives such as :func:`.joinedload` and :func:`.contains_eager` such that if two :meth:`.PropComparator.of_type` modifiers of the same base type/path are encountered, they will be joined together into a single "polymorphic" entity, rather than replacing the entity of type A with the one of type B. E.g. a joinedload of ``A.b.of_type(BSub1)->BSub1.c`` combined with joinedload of ``A.b.of_type(BSub2)->BSub2.c`` will create a single joinedload of ``A.b.of_type((BSub1, BSub2)) -> BSub1.c, BSub2.c``, without the need for the ``with_polymorphic`` to be explicit in the query. fixes #3256 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...> - 2014-11-24 17:34:50
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/2098001ad3e0/ Changeset: 2098001ad3e0 Branch: master User: zzzeek Date: 2014-11-24 17:33:56+00:00 Summary: - Fixed a bug in the examples/generic_assocaitions/discriminator_on_association.py example, where the subclasses of AddressAssociation were not being mapped as "single table inheritance", leading to problems when trying to use the mappings further. 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...> - 2014-11-14 16:08:18
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/de9103aae22b/ Changeset: de9103aae22b Branch: None User: zzzeek Date: 2014-11-14 16:06:43+00:00 Summary: - correct this to rewrite a multiple profile line correctly Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/69979c8b2e4d/ Changeset: 69979c8b2e4d Branch: None User: zzzeek Date: 2014-11-14 16:07:02+00:00 Summary: - callcounts 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...> - 2014-11-13 18:18:31
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/026449c15ff3/ Changeset: 026449c15ff3 Branch: None User: zzzeek Date: 2014-11-13 18:17:38+00:00 Summary: - Fixed a leak which would occur in the unsupported and highly non-recommended use case of replacing a relationship on a fixed mapped class many times, referring to an arbitrarily growing number of target mappers. A warning is emitted when the old relationship is replaced, however if the mapping were already used for querying, the old relationship would still be referenced within some registries. fixes #3251 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/533f9b6b8a30/ Changeset: 533f9b6b8a30 Branch: rel_0_9 User: zzzeek Date: 2014-11-13 18:18:03+00:00 Summary: - Fixed a leak which would occur in the unsupported and highly non-recommended use case of replacing a relationship on a fixed mapped class many times, referring to an arbitrarily growing number of target mappers. A warning is emitted when the old relationship is replaced, however if the mapping were already used for querying, the old relationship would still be referenced within some registries. fixes #3251 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...> - 2014-11-12 14:39:01
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/30075f9015c9/ Changeset: 30075f9015c9 Branch: None User: Jon Nelson Date: 2014-11-12 03:34:57+00:00 Summary: - don't do inline string interpolation when logging Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/64e53f26a538/ Changeset: 64e53f26a538 Branch: master User: zzzeek Date: 2014-11-12 14:38:41+00:00 Summary: Merged in jon_nelson/sqlalchemy/logging_interpolation (pull request #35) - don't do inline string interpolation when logging 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...> - 2014-11-11 17:35:45
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b013fb82f5a5/ Changeset: b013fb82f5a5 Branch: None User: zzzeek Date: 2014-11-11 17:34:00+00:00 Summary: - Fixed issue where the columns from a SELECT embedded in an INSERT, either through the values clause or as a "from select", would pollute the column types used in the result set produced by the RETURNING clause when columns from both statements shared the same name, leading to potential errors or mis-adaptation when retrieving the returning rows. fixes #3248 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/fc2d19537331/ Changeset: fc2d19537331 Branch: rel_0_9 User: zzzeek Date: 2014-11-11 17:34:25+00:00 Summary: - Fixed issue where the columns from a SELECT embedded in an INSERT, either through the values clause or as a "from select", would pollute the column types used in the result set produced by the RETURNING clause when columns from both statements shared the same name, leading to potential errors or mis-adaptation when retrieving the returning rows. fixes #3248 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...> - 2014-11-10 23:02:44
|
4 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a19b2f419cd8/ Changeset: a19b2f419cd8 Branch: None User: zzzeek Date: 2014-11-10 22:37:26+00:00 Summary: - The :attr:`.Column.key` attribute is now used as the source of anonymous bound parameter names within expressions, to match the existing use of this value as the key when rendered in an INSERT or UPDATE statement. This allows :attr:`.Column.key` to be used as a "substitute" string to work around a difficult column name that doesn't translate well into a bound parameter name. Note that the paramstyle is configurable on :func:`.create_engine` in any case, and most DBAPIs today support a named and positional style. fixes #3245 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/21022f9760e3/ Changeset: 21022f9760e3 Branch: None User: zzzeek Date: 2014-11-10 22:58:09+00:00 Summary: - in lieu of adding a new system of translating bound parameter names for psycopg2 and others, encourage users to take advantage of positional styles by documenting "paramstyle". A section is added to psycopg2 specifically as this is a pretty common spot for named parameters that may be unusually named. fixes #3246. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/d6da110c8135/ Changeset: d6da110c8135 Branch: None User: zzzeek Date: 2014-11-10 22:59:27+00:00 Summary: - in lieu of adding a new system of translating bound parameter names for psycopg2 and others, encourage users to take advantage of positional styles by documenting "paramstyle". A section is added to psycopg2 specifically as this is a pretty common spot for named parameters that may be unusually named. fixes #3246. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/c5d2f0999b15/ Changeset: c5d2f0999b15 Branch: rel_0_9 User: zzzeek Date: 2014-11-10 23:02:14+00:00 Summary: - we aren't changing .key behavior yet here, this is just documentation 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...> - 2014-11-06 22:43:53
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4b09f1423b38/ Changeset: 4b09f1423b38 Branch: None User: Paulo Bu Date: 2014-11-06 20:14:17+00:00 Summary: Small improvement on FlushError can't update error message Output in the error message the table name and the column name. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9b1777288ba9/ Changeset: 9b1777288ba9 Branch: None User: zzzeek Date: 2014-11-06 22:41:16+00:00 Summary: Merge pull request #149 from pbu88/small_error_reporting_improvement_update Small improvement on FlushError can't update error message Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/68f1bcc9da19/ Changeset: 68f1bcc9da19 Branch: ticket_3100 User: zzzeek Date: 2014-11-06 22:43:01+00:00 Summary: Merge branch 'master' into ticket_3100 Conflicts: lib/sqlalchemy/orm/persistence.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...> - 2014-11-06 22:38:56
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/590498bf844e/ Changeset: 590498bf844e Branch: None User: zzzeek Date: 2014-11-06 22:15:30+00:00 Summary: Merge branch 'master' into ticket_3100 Affected #: 110 files https://bitbucket.org/zzzeek/sqlalchemy/commits/0c19d765dce8/ Changeset: 0c19d765dce8 Branch: ticket_3100 User: zzzeek Date: 2014-11-06 22:31:14+00:00 Summary: bulk_updates 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...> - 2014-11-05 20:12:38
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9e621d18aa84/ Changeset: 9e621d18aa84 Branch: None User: univerio Date: 2014-08-07 19:08:43+00:00 Summary: Added documentation about interaction between `subqueryload` and LIMIT/OFFSET. Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/9f592d6481b6/ Changeset: 9f592d6481b6 Branch: None User: zzzeek Date: 2014-11-05 19:45:14+00:00 Summary: Merge branch 'subqueryload_order' of https://bitbucket.org/univerio/sqlalchemy into pr26 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/8200c2cd35b3/ Changeset: 8200c2cd35b3 Branch: None User: zzzeek Date: 2014-11-05 20:11:13+00:00 Summary: - edits to the subqueryload ordering merge Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/df5bf966e4a4/ Changeset: df5bf966e4a4 Branch: None User: univerio Date: 2014-11-05 20:11:50+00:00 Summary: Added documentation about interaction between `subqueryload` and LIMIT/OFFSET. Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/6db07cfd8754/ Changeset: 6db07cfd8754 Branch: rel_0_9 User: zzzeek Date: 2014-11-05 20:11:59+00:00 Summary: - edits to the subqueryload ordering merge 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...> - 2014-11-05 17:29:07
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/d95ea952d0bb/ Changeset: d95ea952d0bb Branch: rel_0_9 User: zzzeek Date: 2014-11-05 17:28:42+00:00 Summary: - missing import 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...> - 2014-11-05 16:04:47
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/ea637cef2d9e/ Changeset: ea637cef2d9e Branch: None User: Paulo Bu Date: 2014-11-05 12:23:03+00:00 Summary: Small improvement on FlushError can't delete error message Output in the error message the table name and the column name. Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/8d97f32f4f79/ Changeset: 8d97f32f4f79 Branch: None User: zzzeek Date: 2014-11-05 16:03:24+00:00 Summary: Merge pull request #148 from pbu88/small_error_reporting_improvement Small improvement on FlushError can't delete error message 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...> - 2014-11-05 09:23:15
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/edec583b459e/ Changeset: edec583b459e Branch: None User: zzzeek Date: 2014-11-05 09:22:30+00:00 Summary: - Fixed bug regarding expression mutations which could express itself as a "Could not locate column" error when using :class:`.Query` to select from multiple, anonymous column entities when querying against SQLite, as a side effect of the "join rewriting" feature used by the SQLite dialect. fixes #3241 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/a54540383b9c/ Changeset: a54540383b9c Branch: rel_0_9 User: zzzeek Date: 2014-11-05 09:22:53+00:00 Summary: - Fixed bug regarding expression mutations which could express itself as a "Could not locate column" error when using :class:`.Query` to select from multiple, anonymous column entities when querying against SQLite, as a side effect of the "join rewriting" feature used by the SQLite dialect. fixes #3241 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. |