| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-08-25 | Fixed #25295 -- Restored 'no active translation' after language override | Claude Paroz | |
| Thanks David Nelson Adamec for the report and Tim Graham for the review. | |||
| 2015-08-24 | Fixed #25302 -- Prevented BrokenLinkEmailsMiddleware from reporting 404s ↵ | Maxime Lorant | |
| when Referer = URL. | |||
| 2015-08-24 | Fixed #23727 -- Inhibited the post_migrate signal when using ↵ | Tommy Beadle | |
| serialized_rollback. When using a TransactionTestCase with serialized_rollback=True, after creating the database and running its migrations (along with emitting the post_migrate signal), the contents of the database are serialized to _test_serialized_contents. After the first test case, _fixture_teardown() would flush the tables but then the post_migrate signal would be emitted and new rows (with new PKs) would be created in the django_content_type table. Then in any subsequent test cases in a suite, _fixture_setup() attempts to deserialize the content of _test_serialized_contents, but these rows are identical to the rows already in the database except for their PKs. This causes an IntegrityError due to the unique constraint in the django_content_type table. This change made it so that in the above scenario the post_migrate signal is not emitted after flushing the tables, since it will be repopulated during fixture_setup(). | |||
| 2015-08-22 | Tweak some examples. | Aymeric Augustin | |
| "Area man/woman" is confusing to people not familiar with the conventions of American journalism (like me). | |||
| 2015-08-22 | Recommend relative imports within Django components. | Aymeric Augustin | |
| django-developers thread: https://groups.google.com/d/msg/django-developers/11XvmVdx58w/sFrF0pL8LTgJ | |||
| 2015-08-22 | Forwardported release note for refs #25040. | Tim Graham | |
| 2015-08-21 | Fixed #25284 -- Documented removal of implicit QuerySet __in lookups. | Tim Graham | |
| 2015-08-20 | Refs #24914 -- Added docs for more auth mixin methods. | Tim Graham | |
| 2015-08-20 | Fixed #24951 -- Fixed AssertionError in delete queries involving a ↵ | Tim Graham | |
| foreign/primary key. Thanks Anssi Kääriäinen for help. | |||
| 2015-08-19 | Fixed #25153 -- Moved 'polls' first in tutorial's INSTALLED_APPS. | Tim Graham | |
| 2015-08-19 | Recommended the JavaScript Cookie library instead of jQuery cookie. | Marc | |
| jQuery cookie is no longer maintained in favor of the JavaScript cookie library. This also removes the jQuery dependency. | |||
| 2015-08-19 | Refs #24451 -- Corrected Django version for {% cycle %} deprecation. | Tim Graham | |
| 2015-08-19 | Fixed style issues in testing docs | Markus Holtermann | |
| 2015-08-18 | Added stub release notes for 1.8.5. | Tim Graham | |
| 2015-08-18 | Used consistent capitalization and hyphenation of "class-based views" in docs. | Anton Strogonoff | |
| 2015-08-18 | Added today's issue to the security archive. | Tim Graham | |
| 2015-08-18 | Fixed DoS possiblity in contrib.auth.views.logout() | Tim Graham | |
| Thanks Florian Apolloner and Carl Meyer for review. This is a security fix. | |||
| 2015-08-18 | Added stub release notes for security releases. | Tim Graham | |
| 2015-08-17 | Limited line length in docs/ref/contrib/messages.txt example. | Anton Strogonoff | |
| 2015-08-15 | Fixed #25180 -- Prevented varchar_patterns_ops and text_patterns_ops indexes ↵ | Caio Ariede | |
| for ArrayField. | |||
| 2015-08-15 | Fixed #24986 -- Added support for annotations in DISTINCT queries. | Valentina Mukhamedzhanova | |
| 2015-08-14 | Fixed #25268 -- Tweaked wording in docs/ref/forms/api.txt | Tim Graham | |
| 2015-08-13 | Fixed #24988 -- Documented passing a dictionary of ValidationErrors to ↵ | Adam Brenecki | |
| ValidationError | |||
| 2015-08-12 | Fixed #25254 -- Added JsonResponse json_dumps_params parameter. | Sambhav Satija | |
| 2015-08-12 | Corrected indentation of JsonResponse docs. | Tim Graham | |
| 2015-08-12 | Fixed #24257 -- Corrected i18n handling of percent signs. | Doug Beck | |
| Refactored tests to use a sample project. Updated extraction: * Removed special handling of single percent signs. * When extracting messages from template text, doubled all percent signs so they are not interpreted by gettext as string format flags. All strings extracted by gettext, if containing a percent sign, will now be labeled "#, python-format". Updated translation: * Used "%%" for "%" in template text before calling gettext. * Updated {% trans %} rendering to restore "%" from "%%". | |||
| 2015-08-11 | Updated memcached library links to point to PyPI. | Tim Graham | |
| 2015-08-11 | Fixed #25205 -- Removed doc references to deprecated GeoManager class. | Brendan Hayward | |
| 2015-08-11 | Fixed typo in docs/ref/contrib/gis/geoquerysets.txt | Tim Graham | |
| 2015-08-10 | Removed unnecessary comma in docs | Claude Paroz | |
| 2015-08-10 | Fixed #25160 -- Moved unsaved model instance data loss check to Model.save() | Tim Graham | |
| This mostly reverts 5643a3b51be338196d0b292d5626ad43648448d3 and 81e1a35c364e5353d2bf99368ad30a4184fbb653. Thanks Carl Meyer for review. | |||
| 2015-08-08 | Refs #25236 -- Discouraged use of ifequal/ifnotequal template tags. | Tim Graham | |
| 2015-08-08 | Corrected some inconsistent headings in docs/ref/templates/builtins.txt. | Tim Graham | |
| 2015-08-08 | Updated various links in docs | Claude Paroz | |
| 2015-08-08 | Updated Wikipedia links to use https | Claude Paroz | |
| 2015-08-08 | Updated Transifex links in docs | Claude Paroz | |
| 2015-08-07 | Fixed #25231 -- Added recording of squashed migrations in the migrate command. | mlavin | |
| Ensured squashed migrations are recorded as applied when the migrate command is run and all of the original migrations have been previously applied. | |||
| 2015-08-07 | Fixed #25233 -- Fixed HStoreField.has_changed() handling of initial values. | Tim Graham | |
| Thanks Simon Charette for review. | |||
| 2015-08-07 | Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql. | Caio Ariede | |
| 2015-08-05 | Fixed #25229 -- Clarified how an iterable works with @permission_required | Tim Graham | |
| 2015-08-05 | Fixed #22404 -- Added a view that exposes i18n catalog as a JSON | Sergey Kolosov | |
| Added django.views.i18n.json_catalog() view, which returns a JSON response containing translations, formats, and a plural expression for the specified language. | |||
| 2015-08-05 | Fixed #25213 -- Discouraged use of QuerySet.extra() | Tim Graham | |
| Thanks Anssi Kääriäinen for the draft text and Simon Charette for review. | |||
| 2015-08-05 | Fixed #25212 -- Documented the RawSQL expression. | Tim Graham | |
| 2015-08-04 | Fixed #25224 -- Fixed typo in docs/ref/contrib/flatpages.txt | Tim Graham | |
| 2015-08-04 | Fixed password_reset signature in docs | Alasdair Nicol | |
| 2015-08-04 | Fixed #25136 -- Documented Count('X', distinct=True) in aggregate topic guide. | Caio Ariede | |
| 2015-08-04 | Fixed #25211 -- Added HttpRequest.get_port() and USE_X_FORWARDED_PORT setting. | Matt Robenolt | |
| 2015-08-04 | Fixed #25215 -- Solved reference to forms.HStoreField in declaration of ↵ | Curtis Maloney | |
| HStoreField Correct test which was using the model field in a test form. | |||
| 2015-08-03 | Refs #17914 -- Discouraged using reverese() with callables. | Tim Graham | |
| 2015-08-01 | Fixed #25207 -- Misspelled word in documentation: dialogue | Caio Ariede | |
