| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-26 | Fix Python 3 support | Andrew Godwin | |
| 2013-07-26 | Fix "OK" alignment in migrate output | Andrew Godwin | |
| 2013-07-26 | Add --fake option to migrate | Andrew Godwin | |
| 2013-07-26 | Fix timezone warnings if USE_TZ=True | Andrew Godwin | |
| 2013-07-26 | Prettier imports | Andrew Godwin | |
| 2013-07-26 | Use new transaction API in syncdb section of migrate | Andrew Godwin | |
| 2013-07-26 | Remove nasty error message checking hack | Andrew Godwin | |
| 2013-07-26 | A bit more documentation | Andrew Godwin | |
| 2013-07-26 | Updated contrib.admin to use Email/URLInputs; refs #16630 | Tim Graham | |
| 2013-07-26 | Fixed related model lookup regression | Anssi Kääriäinen | |
| It has been possible to use models of wrong type in related field lookups. For example pigs__in=[a_duck] has worked. Changes to ForeignObject broke that. It might be a good idea to restrict the model types usable in lookups. This should be done intentionally, not accidentally and without any consideration for deprecation path. | |||
| 2013-07-26 | Fixed #20625 -- Chainable Manager/QuerySet methods. | Loic Bistuer | |
| Additionally this patch solves the orthogonal problem that specialized `QuerySet` like `ValuesQuerySet` didn't inherit from the current `QuerySet` type. This wasn't an issue until now because we didn't officially support custom `QuerySet` but it became necessary with the introduction of this new feature. Thanks aaugustin, akaariai, carljm, charettes, mjtamlyn, shaib and timgraham for the reviews. | |||
| 2013-07-25 | Fixed handling of template loader tests. | Carl Meyer | |
| Previously, the CachedLoaderTests were never run at all. | |||
| 2013-07-25 | Added versionadded directive missing from b7bd708. | Aymeric Augustin | |
| 2013-07-25 | Fixed #20769 -- Added "Python compatibility" section to the 1.6 release notes. | Tim Graham | |
| 2013-07-25 | Fixed #20679 -- Corrected CachedFilesMixin.post_process docstring. | Tim Graham | |
| Thanks bmispelon for the report. | |||
| 2013-07-25 | Add test for creating M2Ms | Andrew Godwin | |
| 2013-07-25 | More migration docs, and conversion of all easy syncdb references | Andrew Godwin | |
| 2013-07-25 | Fixed #18315 -- Documented QueryDict.popitem and QueryDict.pop | mark hellewell | |
| Thanks gcbirzan for the report. | |||
| 2013-07-25 | Small start to migrations documentation | Andrew Godwin | |
| 2013-07-25 | Fixed ._meta.pk_index() virtual field failure | Anssi Kääriäinen | |
| 2013-07-25 | Add tests for the migrate command and fix a bug they exposed | Andrew Godwin | |
| 2013-07-25 | Fixed #20792 -- Corrected DISALLOWED_USER_AGENTS docs. | Brenton Cleeland | |
| Thanks simonb for the report. | |||
| 2013-07-24 | Fixed #18168 -- clarified precedence of validation | Preston Holmes | |
| any choices set by formfield_for_choice_field are still subject to model validation of the model field's choices attribute | |||
| 2013-07-24 | Fixed #20766 -- Deprecated FastCGI support. | Tim Graham | |
| 2013-07-24 | Fixed #19941 -- Modified runtests.py to make running the tests easier. | Anssi Kääriäinen | |
| 1. Automatically use tests/../django as the Django version. 2. If settings aren't provided through --settings or DJANGO_SETTINGS_MODULE) then use test_sqlite. | |||
| 2013-07-24 | Merge pull request #1395 from funkbit/master | Marc Tamlyn | |
| Fixed typo in Custom management commands documentation. | |||
| 2013-07-24 | Fixed typo in Custom management commands documentation. | Jon Lønne | |
| 2013-07-24 | Fixed #14300 -- Fixed initial SQL location if models is a package. | Tim Graham | |
| Thanks al_the_x for the report and fheinz for the draft patch. | |||
| 2013-07-24 | Fixed #20794 -- Documented changes to validate_email | Dominic Rodger | |
| 4e2e8f39d changed the way validate_email behaves for foo@localhost email addresses, but wasn't listed in the release notes. | |||
| 2013-07-23 | Fixed #10284 -- ModelFormSet.save(commit=False) no longer deletes objects | Tim Graham | |
| Thanks laureline.guerin@ and Wedg. | |||
| 2013-07-23 | Fixed #20761 -- Reworded ForeignKey default error message | ersran9 | |
| 2013-07-23 | Fixed test failures introduced in e716518ad29898fb25c820023aaf2fdd1c9eb4af | Tim Graham | |
| refs #20761 | |||
| 2013-07-23 | Fixed #19900 -- Updated admin buttons to use CSS3 rounded corners. | Pedro Mourelle | |
| 2013-07-23 | Fixed #20760 -- Reduced timing variation in ModelBackend. | Aymeric Augustin | |
| Thanks jpaglier and erikr. | |||
| 2013-07-23 | Fixed #20761 -- Fixed DatabaseError handling in get_or_create and ↵ | Loic Bistuer | |
| update_or_create. | |||
| 2013-07-23 | Fixed #19019 -- Fixed UserAdmin to log password change. | Kirill Fomichev | |
| Thanks Tuttle for the report. | |||
| 2013-07-23 | Minor change to get_extra_descriptor_filter() | Anssi Kääriäinen | |
| Refs #20611. | |||
| 2013-07-23 | Fixed #20788 -- exclude() generated subquery failure | Anssi Kääriäinen | |
| "Fixed" by adding a test case, the original problem was already fixed by earlier ORM changes. Thanks to david@judicata.com for the report and test case. | |||
| 2013-07-23 | Fixed #20782 -- qs.values().aggregate() failure | Anssi Kääriäinen | |
| In the combination of .values().aggregate() the aggregate_select_mask didn't include the aggregates added. This resulted in bogus query. Thanks to Trac alias debanshuk for report. | |||
| 2013-07-22 | Make migrate command recognise prefixes and 'zero'. | Andrew Godwin | |
| 2013-07-22 | Make multi-app-cache tests work again | Andrew Godwin | |
| 2013-07-22 | Merge branch 'master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/backends/mysql/introspection.py django/db/backends/oracle/creation.py django/db/backends/postgresql_psycopg2/creation.py django/db/models/base.py django/db/models/loading.py | |||
| 2013-07-22 | Merge pull request #1390 from garnertb/master | Marc Tamlyn | |
| Fixed small grammatical error in docstring. | |||
| 2013-07-22 | Fixed small grammatical error in docstring. | Tyler Garner | |
| 2013-07-22 | Fixed #20773 -- [gis] Fixed regression in GoogleMap output | Claude Paroz | |
| Thanks Martyn Clement for the report and the initial patch. | |||
| 2013-07-22 | Fixed #20781 -- Fixed _has_changed regression with MultiValueField | Claude Paroz | |
| Thanks Tim Graham for the report. | |||
| 2013-07-21 | Fixed #13629 -- Added CSS classes to the `<body>` tag of some admin ↵ | Thomas Sorrel | |
| templates to allow style customizations per app or per model. | |||
| 2013-07-21 | Fixed an email validation regression | Claude Paroz | |
| Thanks Vincent Wagelaar for the report. | |||
| 2013-07-21 | Fixed #13696 -- ensured inline pk field is rendered | Karen Tracey | |
| 2013-07-19 | Fixed #20765 -- Set small values of `step` using exponential notation. | Simon Charette | |
| Browsers parse small factors of 10 as 0 under decimal notation. Thanks to Trac alias matklad for the report and Claude Paroz for the review. | |||
