<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/db/models/sql, branch 1.4.15</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=1.4.15</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=1.4.15'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2012-11-15T14:22:28Z</updated>
<entry>
<title>[1.4.x] Fixed #19058 -- Fixed Oracle GIS crash</title>
<updated>2012-11-15T14:22:28Z</updated>
<author>
<name>Anssi Kääriäinen</name>
<email>akaariai@gmail.com</email>
</author>
<published>2012-11-15T12:23:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=25e041f270bec5a69e525d47f18a73fe917d1787'/>
<id>urn:sha1:25e041f270bec5a69e525d47f18a73fe917d1787</id>
<content type='text'>
The problem is the same as in #10888 which was reintroduced when
bulk_insert was added. Thanks to Jani Tiainen for report, patch and
also testing the final patch on Oracle GIS.

Backpatch of 92d7f541da8b59520c833b19fbba52d3ecef2428
</content>
</entry>
<entry>
<title>Used SortedDict instead of dict to avoid random errors that may occur when dict randomization is enabled in Python. Refs #17758. Thanks Łukasz Rekucki.</title>
<updated>2012-03-22T18:09:22Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2012-03-22T18:09:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ce7113ccbe5047baeb317c4b854ec119f8b5b460'/>
<id>urn:sha1:ce7113ccbe5047baeb317c4b854ec119f8b5b460</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17777 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #10498 (again) -- Made sure the improvements done in r17641 have a smaller impact on speed. Thanks to Anssi Kääriäinen for the patch and Jonas Obrist for reviewing.</title>
<updated>2012-03-13T03:48:20Z</updated>
<author>
<name>Jannis Leidel</name>
<email>jannis@leidel.info</email>
</author>
<published>2012-03-13T03:48:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f7daa38a0025da1613e772af2aec419169b086cc'/>
<id>urn:sha1:f7daa38a0025da1613e772af2aec419169b086cc</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17698 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #17728 -- When filtering an annotation, ensured the values used in the filter are properly converted to their database representation. This bug was particularly visible with timezone-aware DateTimeFields. Thanks gg for the report and Carl for the review.</title>
<updated>2012-02-22T19:40:27Z</updated>
<author>
<name>Aymeric Augustin</name>
<email>aymeric.augustin@m4x.org</email>
</author>
<published>2012-02-22T19:40:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=8b5361619818a8e16562d054d7dc8ddf61147384'/>
<id>urn:sha1:8b5361619818a8e16562d054d7dc8ddf61147384</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17576 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #17678 -- Corrected setup of _meta.proxy_for_model and added _meta.concrete_model. Thanks Anssi Kääriäinen.</title>
<updated>2012-02-22T05:26:50Z</updated>
<author>
<name>Carl Meyer</name>
<email>carl@oddbird.net</email>
</author>
<published>2012-02-22T05:26:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=354c84d277e3a9516cd2af1567eb02cb4da1a3e4'/>
<id>urn:sha1:354c84d277e3a9516cd2af1567eb02cb4da1a3e4</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17573 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #11670 -- Prevented genuine model fields named 'year', 'month', 'gt', 'lt' etc. from being mistaken for lookup types in lookups across relations. Thanks to andy for the report, to jpwatts for the initial patch and to Anssi Kääriäinen and Alex Gaynor for the reviews.</title>
<updated>2012-02-05T07:11:53Z</updated>
<author>
<name>Julien Phalip</name>
<email>jphalip@gmail.com</email>
</author>
<published>2012-02-05T07:11:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=d02ba7f4ee7c448de28724369fc5dd9cf3e2538a'/>
<id>urn:sha1:d02ba7f4ee7c448de28724369fc5dd9cf3e2538a</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17450 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #17429 -- Ensured that `Meta.ordering=None` works the same if it were an empty list. Thanks to self[at]dicos[dot]ru for the report and to bigkevmcd for the patch.</title>
<updated>2012-01-03T09:06:19Z</updated>
<author>
<name>Julien Phalip</name>
<email>jphalip@gmail.com</email>
</author>
<published>2012-01-03T09:06:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=c93933441e77cefbcb354196bda9a29b7e75df18'/>
<id>urn:sha1:c93933441e77cefbcb354196bda9a29b7e75df18</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17334 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 various dodgy behaviours</title>
<updated>2011-12-17T17:37:24Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2011-12-17T17:37:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=20c8aa2a2029be50449b25122f85bbef0f2b957f'/>
<id>urn:sha1:20c8aa2a2029be50449b25122f85bbef0f2b957f</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17226 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #13640: Avoid generating an exception when a model has an attribute named 'evaluate'. Thanks LukaszKorzybski and tobias.</title>
<updated>2011-11-13T15:09:08Z</updated>
<author>
<name>Karen Tracey</name>
<email>kmtracey@gmail.com</email>
</author>
<published>2011-11-13T15:09:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=b8353016b7d6a4046f4c30017987c2e75597285b'/>
<id>urn:sha1:b8353016b7d6a4046f4c30017987c2e75597285b</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17093 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
