<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/lib, branch pr/185</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>Fix code examples in automap's documentation</title>
<updated>2015-06-26T17:45:48+00:00</updated>
<author>
<name>Yuri Baida</name>
<email>yuri.baida@gmail.com</email>
</author>
<published>2015-06-26T17:45:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=5717186122d5538e53205268846beb7143a3d4cc'/>
<id>5717186122d5538e53205268846beb7143a3d4cc</id>
<content type='text'>
Fix camelize_classname and pluralize_collection functions as they didn't work as expected.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix camelize_classname and pluralize_collection functions as they didn't work as expected.</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed a major regression in the 1.0 series where the version_id_counter</title>
<updated>2015-06-25T01:53:15+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-25T01:53:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=1e2f1f5baabd4ec8866ec19b586bb493ea099852'/>
<id>1e2f1f5baabd4ec8866ec19b586bb493ea099852</id>
<content type='text'>
feature would cause an object's version counter to be incremented
when there was no net change to the object's row, but instead an object
related to it via relationship (e.g. typically many-to-one)
were associated or de-associated with it, resulting in an UPDATE
statement that updates the object's version counter and nothing else.
In the use case where the relatively recent "server side" and/or
"programmatic/conditional" version counter feature were used
(e.g. setting version_id_generator to False), the bug could cause an
UPDATE without a valid SET clause to be emitted.
fixes #3465
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
feature would cause an object's version counter to be incremented
when there was no net change to the object's row, but instead an object
related to it via relationship (e.g. typically many-to-one)
were associated or de-associated with it, resulting in an UPDATE
statement that updates the object's version counter and nothing else.
In the use case where the relatively recent "server side" and/or
"programmatic/conditional" version counter feature were used
(e.g. setting version_id_generator to False), the bug could cause an
UPDATE without a valid SET clause to be emitted.
fixes #3465
</pre>
</div>
</content>
</entry>
<entry>
<title>Missing comma in method args</title>
<updated>2015-06-22T20:27:56+00:00</updated>
<author>
<name>Benjamin Petersen</name>
<email>bnjmn@users.noreply.github.com</email>
</author>
<published>2015-06-22T20:27:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=ebe3e4569fc7e97c053c5bc8eb9a6288587d2b8b'/>
<id>ebe3e4569fc7e97c053c5bc8eb9a6288587d2b8b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed issue when using :class:`.VARBINARY` type in conjunction with</title>
<updated>2015-06-22T19:24:41+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-22T19:24:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=78095940a437c440266414b1fd122204b9c0312d'/>
<id>78095940a437c440266414b1fd122204b9c0312d</id>
<content type='text'>
an INSERT of NULL + pyodbc; pyodbc requires a special
object be passed in order to persist NULL.  As the :class:`.VARBINARY`
type is now usually the default for :class:`.LargeBinary` due to
:ticket:`3039`, this issue is partially a regression in 1.0.
The pymssql driver appears to be unaffected.
fixes #3464
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
an INSERT of NULL + pyodbc; pyodbc requires a special
object be passed in order to persist NULL.  As the :class:`.VARBINARY`
type is now usually the default for :class:`.LargeBinary` due to
:ticket:`3039`, this issue is partially a regression in 1.0.
The pymssql driver appears to be unaffected.
fixes #3464
</pre>
</div>
</content>
</entry>
<entry>
<title>- Re-fixed this issue first released in 1.0.5 to fix psycopg2cffi</title>
<updated>2015-06-22T15:35:02+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-22T15:35:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=24f8ab2bc360c1e0837ce7c5392839f87b57e916'/>
<id>24f8ab2bc360c1e0837ce7c5392839f87b57e916</id>
<content type='text'>
JSONB support once again, as they suddenly
switched on unconditional decoding of JSONB types in version 2.7.1.
Version detection now specifies 2.7.1 as where we should expect
the DBAPI to do json encoding for us.
fixes #3439
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
JSONB support once again, as they suddenly
switched on unconditional decoding of JSONB types in version 2.7.1.
Version detection now specifies 2.7.1 as where we should expect
the DBAPI to do json encoding for us.
fixes #3439
</pre>
</div>
</content>
</entry>
<entry>
<title>- repair that we use db_opts when the url here is different,</title>
<updated>2015-06-19T23:24:10+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-19T23:24:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=0e84dcc48563db66cbbc8952f4f7709003a1ae15'/>
<id>0e84dcc48563db66cbbc8952f4f7709003a1ae15</id>
<content type='text'>
as we are using db_opts for the first time with legacy_schema_args
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
as we are using db_opts for the first time with legacy_schema_args
</pre>
</div>
</content>
</entry>
<entry>
<title>- fixes to the warnings filters</title>
<updated>2015-06-19T21:18:03+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-19T21:18:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=61e83ec41bb0126e1c96a7a648e30a7f515c3ec9'/>
<id>61e83ec41bb0126e1c96a7a648e30a7f515c3ec9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- more edits, references #3461</title>
<updated>2015-06-19T18:54:26+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-19T18:54:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=7aa2100db3e6f768a280b4dfdb675d6709f94625'/>
<id>7aa2100db3e6f768a280b4dfdb675d6709f94625</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- for #3455</title>
<updated>2015-06-19T18:10:47+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-19T18:10:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=e625d2ea88f4ae3e0a667b3d2a904dafbd0421b9'/>
<id>e625d2ea88f4ae3e0a667b3d2a904dafbd0421b9</id>
<content type='text'>
- changelog
- versionadded + reflink for new pg storage parameters doc
- pep8ing
- add additional tests to definitely check that the Index object
is created all the way with the opts we want
fixes #3455
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- changelog
- versionadded + reflink for new pg storage parameters doc
- pep8ing
- add additional tests to definitely check that the Index object
is created all the way with the opts we want
fixes #3455
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/pr/179' into pr179</title>
<updated>2015-06-19T17:45:01+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2015-06-19T17:45:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=99ceed3e55e87c7aca9898359e68c90ecee7965c'/>
<id>99ceed3e55e87c7aca9898359e68c90ecee7965c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
