<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/db/models/query.py, branch 1.4.12</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=1.4.12</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=1.4.12'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2012-09-02T16:17:15Z</updated>
<entry>
<title>[1.4.x] Fixed #17788 -- Added batch_size argument to qs.bulk_create()</title>
<updated>2012-09-02T16:17:15Z</updated>
<author>
<name>Anssi Kääriäinen</name>
<email>akaariai@gmail.com</email>
</author>
<published>2012-04-29T01:22:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=23268608512444de626e63dee1815fb5b5207a48'/>
<id>urn:sha1:23268608512444de626e63dee1815fb5b5207a48</id>
<content type='text'>
The qs.bulk_create() method did not work with large batches together
with SQLite3. This commit adds a way to split the bulk into smaller
batches. The default batch size is unlimited except for SQLite3 where
the batch size is limited to 999 SQL parameters per batch.

Thanks to everybody who participated in the discussions at Trac.

Backpatch of 29132ebdef0e0b9c09e456b05f0e6a22f1106a4f from master (with
documentation changes removed).
</content>
</entry>
<entry>
<title>Fix #17876: Corrected an exception (regression) raised where select_realted and only is used on a proxy model. Thanks milosu and charettes.</title>
<updated>2012-03-12T22:33:18Z</updated>
<author>
<name>Karen Tracey</name>
<email>kmtracey@gmail.com</email>
</author>
<published>2012-03-12T22:33:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9d98b9eb4bee1c9d69694f37dc618c36ecfecb8d'/>
<id>urn:sha1:9d98b9eb4bee1c9d69694f37dc618c36ecfecb8d</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17692 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #17668 - prefetch_related does not work in in_bulk</title>
<updated>2012-02-28T19:34:04Z</updated>
<author>
<name>Luke Plant</name>
<email>L.Plant.98@cantab.net</email>
</author>
<published>2012-02-28T19:34:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=de9942a6673cfbe442abdfabc1e8f7c0a652ef5b'/>
<id>urn:sha1:de9942a6673cfbe442abdfabc1e8f7c0a652ef5b</id>
<content type='text'>
Thanks to gurets for the report, and akaariai for the initial patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17600 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #16340 -- Made `get_or_create()` re-raise any `IntegrityError` with its original traceback. Thanks to d0ugal and Jonas Obrist.</title>
<updated>2012-01-02T21:30:47Z</updated>
<author>
<name>Julien Phalip</name>
<email>jphalip@gmail.com</email>
</author>
<published>2012-01-02T21:30:47Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=31b1cbc623c246570e7301c0334df938d840638f'/>
<id>urn:sha1:31b1cbc623c246570e7301c0334df938d840638f</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17333 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Added support for modifying the effect of ``DISTINCT`` clauses so they</title>
<updated>2011-12-22T20:42:40Z</updated>
<author>
<name>Ramiro Morales</name>
<email>cramm0@gmail.com</email>
</author>
<published>2011-12-22T20:42:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=287565779d3ae4d3229ecbb2ff356c79b920e7d0'/>
<id>urn:sha1:287565779d3ae4d3229ecbb2ff356c79b920e7d0</id>
<content type='text'>
only consider some fields (PostgreSQL only).

For this, the ``distinct()`` QuerySet method now accepts an optional
list of model fields names and generates ``DISTINCT ON`` clauses on
these cases. Thanks Jeffrey Gelens and Anssi Kääriäinen for their work.

Fixes #6422.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17244 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #16818 -- Fixed ORM bug with many-to-many add() method where it wasn't committing the change. Thanks, pressureman and kmtracey</title>
<updated>2011-12-09T23:16:56Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2011-12-09T23:16:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=073d987a84d7ebdf3b70789f22b8a12a9f5ae96f'/>
<id>urn:sha1:073d987a84d7ebdf3b70789f22b8a12a9f5ae96f</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17189 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #17335 -- Added supports_select_related hook for django-nonrel. Thanks, jonash</title>
<updated>2011-12-05T23:11:43Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2011-12-05T23:11:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5f9dbef4bb5d8b9f077cd6a01b5e554f6dfb4f19'/>
<id>urn:sha1:5f9dbef4bb5d8b9f077cd6a01b5e554f6dfb4f19</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17170 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Small code clarification in prefetch_related code using better variable names</title>
<updated>2011-11-29T12:50:10Z</updated>
<author>
<name>Luke Plant</name>
<email>L.Plant.98@cantab.net</email>
</author>
<published>2011-11-29T12:50:10Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f2ebb169f9bf195a7c8126437708a482691a520d'/>
<id>urn:sha1:f2ebb169f9bf195a7c8126437708a482691a520d</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17162 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #17014  - added protection against infinite recursion.</title>
<updated>2011-10-07T16:06:02Z</updated>
<author>
<name>Luke Plant</name>
<email>L.Plant.98@cantab.net</email>
</author>
<published>2011-10-07T16:06:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=64da8eec3077eaaba5cfa62775523da772f4de44'/>
<id>urn:sha1:64da8eec3077eaaba5cfa62775523da772f4de44</id>
<content type='text'>
Thanks to akaariai for the report and tests.

No tests have been added, since unittests for termination are basically
impossible, and the failure condition will take down the developer's machine
in this case. It has been tested against the cases in #17014.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16940 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #17003 - prefetch_related should support foreign keys/one-to-one</title>
<updated>2011-10-07T16:05:53Z</updated>
<author>
<name>Luke Plant</name>
<email>L.Plant.98@cantab.net</email>
</author>
<published>2011-10-07T16:05:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=052a011ee6122482a471795c1994bbcfdb069611'/>
<id>urn:sha1:052a011ee6122482a471795c1994bbcfdb069611</id>
<content type='text'>
Support for `GenericForeignKey` is also included.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16939 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
