sqlalchemy-commits Mailing List for SQLAlchemy (Page 44)
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-04-01 23:42:35
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/01a1c3256aee/ Changeset: 01a1c3256aee Branch: rel_0_9 User: zzzeek Date: 2015-04-01 23:37:05+00:00 Summary: - :class:`.Query` doesn't support joins, subselects, or special FROM clauses when using the :meth:`.Query.update` or :meth:`.Query.delete` methods; instead of silently ignoring these fields if methods like :meth:`.Query.join` or :meth:`.Query.select_from` has been called, a warning is emitted. In 1.0.0b5 this will raise an error. Partial cherry pick from 5302bcebb8e18fdad7448ffb60d2a2017eab26c8. fixes #3349 - don't realy need _no_select_modifiers anymore Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/fe1922764151/ Changeset: fe1922764151 Branch: None User: zzzeek Date: 2015-04-01 23:37:43+00:00 Summary: - :class:`.Query` doesn't support joins, subselects, or special FROM clauses when using the :meth:`.Query.update` or :meth:`.Query.delete` methods; instead of silently ignoring these fields if methods like :meth:`.Query.join` or :meth:`.Query.select_from` has been called, an error is raised. In 0.9.10 this only emits a warning. fixes #3349 - don't needlessly call _compile_context() and build up a whole statement that we never need. Construct QueryContext as it's part of the event contract, but don't actually call upon mapper attributes; use more direct systems of determining the update or delete table. - don't realy need _no_select_modifiers anymore Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2cae4f262b2f/ Changeset: 2cae4f262b2f Branch: None User: zzzeek Date: 2015-04-01 23:41:26+00:00 Summary: - use odict here for test determinism 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-04-01 20:56:51
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4b164935481c/ Changeset: 4b164935481c Branch: None User: zzzeek Date: 2015-04-01 20:50:32+00:00 Summary: - Fixed bug where updated PG index reflection as a result of :ticket:`3184` would cause index operations to fail on Postgresql versions 8.4 and earlier. The enhancements are now disabled when using an older version of Postgresql. fixes #3343 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/59816435dae7/ Changeset: 59816435dae7 Branch: None User: zzzeek Date: 2015-04-01 20:55:58+00:00 Summary: - Added a list() call around a weak dictionary used within the commit phase of the session, which without it could cause a "dictionary changed size during iter" error if garbage collection interacted within the process. Change was introduced by 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-03-31 19:11:32
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5ed49f38c372/ Changeset: 5ed49f38c372 Branch: None User: zzzeek Date: 2015-03-31 19:10:42+00:00 Summary: - The warning emitted by the unicode type for a non-unicode type has been liberalized to warn for values that aren't even string values, such as integers; previously, the updated warning system of 1.0 made use of string formatting operations which would raise an internal TypeError. While these cases should ideally raise totally, some backends like SQLite and MySQL do accept them and are potentially in use by legacy code, not to mention that they will always pass through if unicode conversion is turned off for the target backend. fixes #3346 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...> - 2015-03-31 17:30:07
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/dedc85ba9d8e/ Changeset: dedc85ba9d8e Branch: None User: zzzeek Date: 2015-03-31 17:29:10+00:00 Summary: - further fixes for #3347; track the mappers we're joining between fully and match on those, rather than trying to compare selectables; fixes #3347 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...> - 2015-03-31 03:30:48
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4318edf9bb3e/ Changeset: 4318edf9bb3e Branch: None User: zzzeek Date: 2015-03-31 03:29:39+00:00 Summary: - use an ordered dict so that queries are deterministic Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-03-30 21:50:27
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a15b2ac0a184/ Changeset: a15b2ac0a184 Branch: None User: zzzeek Date: 2015-03-30 21:15:48+00:00 Summary: call this 1.0.0b5 for the moment Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/1a56177c21cd/ Changeset: 1a56177c21cd Branch: None User: zzzeek Date: 2015-03-30 21:49:39+00:00 Summary: - Fixed a bug related to "nested" inner join eager loading, which exists in 0.9 as well but is more of a regression in 1.0 due to :ticket:`3008` which turns on "nested" by default, such that a joined eager load that travels across sibling paths from a common ancestor using innerjoin=True will correctly splice each "innerjoin" sibling into the appropriate part of the join, when a series of inner/outer joins are mixed together. fixes #3347 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...> - 2015-03-29 14:12:39
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/78b1850ae564/ Changeset: 78b1850ae564 Branch: None User: zzzeek Date: 2015-03-29 14:05:16+00:00 Summary: 1.0.0b4 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-03-26 21:35:51
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/a518b31f3b13/ Changeset: a518b31f3b13 Branch: None User: Ernest Walzel Date: 2015-03-26 18:28:11+00:00 Summary: Fix typos agaisnt -> against 'a Alias' -> 'an Alias' Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/2b2ad50340be/ Changeset: 2b2ad50340be Branch: rel_0_9 User: Ernest Walzel Date: 2015-03-26 21:35:17+00:00 Summary: Fix typos agaisnt -> against 'a Alias' -> 'an Alias' (cherry picked from commit a518b31f3b131ae8304026109cd826e38c2afc26) 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-03-24 23:31:02
|
3 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/422fca43f8af/ Changeset: 422fca43f8af Branch: None User: zzzeek Date: 2015-03-24 23:30:09+00:00 Summary: fdb drivers seem to be no longer available Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/d1d86375e89c/ Changeset: d1d86375e89c Branch: rel_0_9 User: zzzeek Date: 2015-03-24 23:30:26+00:00 Summary: fdb drivers seem to be no longer available (cherry picked from commit 422fca43f8af1bfba0c2a2d24aa2eca7fc3bd558) Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/ce0aff9eb58f/ Changeset: ce0aff9eb58f Branch: rel_0_8 User: zzzeek Date: 2015-03-24 23:30:34+00:00 Summary: fdb drivers seem to be no longer available (cherry picked from commit 422fca43f8af1bfba0c2a2d24aa2eca7fc3bd558) 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-03-24 21:11:48
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/4c17337da60b/ Changeset: 4c17337da60b Branch: None User: zzzeek Date: 2015-03-24 21:11:22+00:00 Summary: - fix this for pg8000 of all backends... 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-03-24 16:36:08
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/50b7e818c232/ Changeset: 50b7e818c232 Branch: None User: zzzeek Date: 2015-03-24 16:35:30+00:00 Summary: - also add this to Oracle, and defensively to firebird and sybase 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-03-24 16:29:27
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/86cebccc4c3c/ Changeset: 86cebccc4c3c Branch: None User: zzzeek Date: 2015-03-24 16:28:19+00:00 Summary: - Turned off the "simple order by" flag on the MSSQL dialect; this is the flag that per :ticket:`2992` causes an order by or group by an expression that's also in the columns clause to be copied by label, even if referenced as the expression object. The behavior for MSSQL is now the old behavior that copies the whole expression in by default, as MSSQL can be picky on these particularly in GROUP BY expressions. fixes #3338 - Add a test that includes a composed label in a GROUP BY 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...> - 2015-03-24 14:56:07
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/bdcaa0f6ca58/ Changeset: bdcaa0f6ca58 Branch: None User: zzzeek Date: 2015-03-24 14:55:29+00:00 Summary: - The "auto-attach" feature of constraints such as :class:`.UniqueConstraint` and :class:`.CheckConstraint` has been further enhanced such that when the constraint is associated with non-table-bound :class:`.Column` objects, the constraint will set up event listeners with the columns themselves such that the constraint auto attaches at the same time the columns are associated with the table. This in particular helps in some edge cases in declarative but is also of general use. fixes #3341 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-03-23 16:34:36
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/04545727d411/ Changeset: 04545727d411 Branch: None User: zzzeek Date: 2015-03-23 16:33:48+00:00 Summary: - Fixed bug in new "label resolution" feature of :ticket:`2992` where a label that was anonymous, then labeled again with a name, would fail to be locatable via a textual label. This situation occurs naturally when a mapped :func:`.column_property` is given an explicit label in a query. fixes #3340 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-03-22 23:27:56
|
5 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/41ca5c8c6769/ Changeset: 41ca5c8c6769 Branch: None User: zzzeek Date: 2015-03-22 23:10:10+00:00 Summary: - Fixed unicode support for PyMySQL when using an "executemany" operation with unicode parameters. SQLAlchemy now passes both the statement as well as the bound parameters as unicode objects, as PyMySQL generally uses string interpolation internally to produce the final statement, and in the case of executemany does the "encode" step only on the final statement. fixes #3337 (cherry picked from commit dcf5408f7d315b4d9ddec5d0d696eb364d763099) Conflicts: lib/sqlalchemy/dialects/mysql/pymysql.py Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/b2624bcde4c2/ Changeset: b2624bcde4c2 Branch: None User: zzzeek Date: 2015-03-22 23:14:33+00:00 Summary: - add a note that we aren't really doing zxjdbc right now even though these files are present. (cherry picked from commit ffddfe1b17b5c09dcb6289f807200f7c8279190e) Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ddab2d2351fc/ Changeset: ddab2d2351fc Branch: None User: zzzeek Date: 2015-03-22 23:25:10+00:00 Summary: - more updates to the unicode mess to frame this in as up-to-date recommendations as possible Affected #: 5 files https://bitbucket.org/zzzeek/sqlalchemy/commits/db853306c404/ Changeset: db853306c404 Branch: None User: zzzeek Date: 2015-03-22 23:25:13+00:00 Summary: - Fixed unicode support for PyMySQL when using an "executemany" operation with unicode parameters. SQLAlchemy now passes both the statement as well as the bound parameters as unicode objects, as PyMySQL generally uses string interpolation internally to produce the final statement, and in the case of executemany does the "encode" step only on the final statement. fixes #3337 Affected #: 3 files https://bitbucket.org/zzzeek/sqlalchemy/commits/3c8ac32d8bbc/ Changeset: 3c8ac32d8bbc Branch: rel_0_9 User: zzzeek Date: 2015-03-22 23:27:31+00:00 Summary: - merge recent commits from master which reorganize and clarify MySQL unicode documentation, bringing it up-to-date with current DBAPI support Affected #: 9 files Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-03-21 19:19:00
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/b1146821aa88/ Changeset: b1146821aa88 Branch: None User: zzzeek Date: 2015-03-21 19:18:36+00:00 Summary: some doc defenses 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...> - 2015-03-21 19:15:29
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/9a4a8a8684b0/ Changeset: 9a4a8a8684b0 Branch: None User: zzzeek Date: 2015-03-21 19:14:47+00:00 Summary: - totally skip on mysqlconnector for now Affected #: 1 file Repository URL: https://bitbucket.org/zzzeek/sqlalchemy/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. |
From: Bitbucket <com...@bi...> - 2015-03-21 19:11:32
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/1447abc5347b/ Changeset: 1447abc5347b Branch: fix_mysqlconnector User: zzzeek Date: 2015-03-21 19:10:51+00:00 Summary: - wip for #3336 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-03-21 17:13:04
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/c09c21c9f318/ Changeset: c09c21c9f318 Branch: None User: zzzeek Date: 2015-03-21 17:12:15+00:00 Summary: - Fixed bug in new "label resolution" feature of :ticket:`2992` where the string label placed in the order_by() or group_by() of a statement would place higher priority on the name as found inside the FROM clause instead of a more locally available name inside the columns clause. fixes #3335 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-03-21 13:57:28
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/10593e77689c/ Changeset: 10593e77689c Branch: None User: zzzeek Date: 2015-03-21 13:57:01+00:00 Summary: - oursql is unsupported on this 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-03-21 00:00:30
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/3ae00fea903b/ Changeset: 3ae00fea903b Branch: None User: zzzeek Date: 2015-03-20 23:53:12+00:00 Summary: - Repaired the commit for issue #2771 which was inadvertently commented out. - add __backend__ to the dialect suite so that it runs on CI. - will be 1.0.0b3 Affected #: 4 files https://bitbucket.org/zzzeek/sqlalchemy/commits/7d6dfb4cf75e/ Changeset: 7d6dfb4cf75e Branch: None User: zzzeek Date: 2015-03-20 23:54:45+00:00 Summary: - 1.0.0b3 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-03-20 20:47:01
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/1bcd99bec9eb/ Changeset: 1bcd99bec9eb Branch: None User: zzzeek Date: 2015-03-20 20:09:56+00:00 Summary: - 1.0.0b2 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-03-20 20:09:10
|
1 new commit in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/e429f9ebe75f/ Changeset: e429f9ebe75f Branch: None User: zzzeek Date: 2015-03-20 20:07:09+00:00 Summary: - test fix 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-03-20 19:18:54
|
2 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/69dadc88e0b9/ Changeset: 69dadc88e0b9 Branch: None User: methane Date: 2015-03-13 20:35:11+00:00 Summary: Add mention about mysqlclient Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/824e9013797c/ Changeset: 824e9013797c Branch: None User: zzzeek Date: 2015-03-20 19:17:07+00:00 Summary: Merge branch 'mysqlclient' of https://bitbucket.org/methane/sqlalchemy into pr48 Conflicts: lib/sqlalchemy/dialects/mysql/mysqldb.py 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-03-20 19:11:37
|
6 new commits in sqlalchemy: https://bitbucket.org/zzzeek/sqlalchemy/commits/5794b777cbb4/ Changeset: 5794b777cbb4 Branch: None User: Thomas Grainger Date: 2015-03-18 11:45:24+00:00 Summary: map MySQL encodings to python encodings fixes #2771 Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/6e8ecd161bfb/ Changeset: 6e8ecd161bfb Branch: None User: Thomas Grainger Date: 2015-03-18 11:47:17+00:00 Summary: add utf8mb4 recommendation Affected #: 1 file https://bitbucket.org/zzzeek/sqlalchemy/commits/834973092c1b/ Changeset: 834973092c1b Branch: None User: zzzeek Date: 2015-03-20 16:07:00+00:00 Summary: Merge branch 'support-emoji-on-mysql' of https://bitbucket.org/graingert/sqlalchemy into pr49 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/58ce4d53bf5e/ Changeset: 58ce4d53bf5e Branch: None User: zzzeek Date: 2015-03-20 19:08:23+00:00 Summary: - add a test for #2771, fixes #2771 - changelog for #2771 Affected #: 2 files https://bitbucket.org/zzzeek/sqlalchemy/commits/3971690731d1/ Changeset: 3971690731d1 Branch: None User: zzzeek Date: 2015-03-20 19:08:35+00:00 Summary: - reorganize MySQL docs re: unicode, other cleanup and updates Affected #: 9 files https://bitbucket.org/zzzeek/sqlalchemy/commits/ffddfe1b17b5/ Changeset: ffddfe1b17b5 Branch: None User: zzzeek Date: 2015-03-20 19:10:52+00:00 Summary: - add a note that we aren't really doing zxjdbc right now even though these files are present. 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. |