| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-11-11 | Fixed #21351 -- Replaced memoize with Python's lru_cache. | Bouke Haarsma | |
| Replaced the custom, untested memoize with a similar decorator from Python's 3.2 stdlib. Although some minor performance degradation (see ticket), it is expected that in the long run lru_cache will outperform memoize once it is implemented in C. Thanks to EvilDMP for the report and Baptiste Mispelon for the idea of replacing memoize with lru_cache. | |||
| 2013-11-09 | Fixed spelling of compatibility. | Tim Graham | |
| 2013-11-09 | Recommended flake8 to check coding style. | Tim Graham | |
| 2013-11-09 | Fixed #16969 -- Don't connect to named database when possible | Claude Paroz | |
| Thanks Andreas Pelme for the report and initial patch, and Aymeric Augustin, Shai Berger and Tim Graham for the reviews. | |||
| 2013-11-07 | Added more items to the release checklist. | Baptiste Mispelon | |
| 2013-11-06 | Added missing info to the release checklist. | Baptiste Mispelon | |
| 2013-11-05 | Fixed #18419 -- Full backwards compatibility for old language codes | Bouke Haarsma | |
| Improved documentation about zh-* deprecation and upgrade path. Thanks to Baptiste Mispelon for the code reviews. | |||
| 2013-11-04 | Fixed #18149 -- Changed language codes for Chinese | Bouke Haarsma | |
| Language codes for Chinese are zh_Hans (Simplified) and zh_Hant (Traditional). Added support for browsers that still send the deprecated language codes. Thanks to Olli Wang for the report. | |||
| 2013-10-27 | Fix note syntax usage. | Eric Holscher | |
| http://sphinx.readthedocs.org/en/latest/markup/para.html?highlight=note#directive-note | |||
| 2013-10-23 | Fixed #19941 -- Removed sys.path hack when running the test suite. | Tim Graham | |
| Thanks jezdez for the suggestion. | |||
| 2013-10-22 | Fixed #5789 -- Changed LocaleMiddleware session variable to '_language'. | Bouke Haarsma | |
| The old 'django_language' variable will still be read from in order to migrate users. The backwards-compatability shim will be removed in Django 1.8. Thanks to jdunck for the report and stugots for the initial patch. | |||
| 2013-10-17 | Fixed #18659 -- Deprecated request.REQUEST and MergeDict | Bouke Haarsma | |
| Thanks Aymeric Augustin for the suggestion. | |||
| 2013-10-14 | Fixed #19617 -- Refactored Form metaclasses to support more inheritance ↵ | Loic Bistuer | |
| scenarios. Thanks apollo13, funkybob and mjtamlyn for the reviews. | |||
| 2013-10-14 | Amend my description in committers.txt. | Marc Tamlyn | |
| 2013-10-11 | Fixed #13252 -- Added ability to serialize with natural primary keys. | Tai Lee | |
| Added ``--natural-foreign`` and ``--natural-primary`` options and deprecated the ``--natural`` option to the ``dumpdata`` management command. Added ``use_natural_foreign_keys`` and ``use_natural_primary_keys`` arguments and deprecated the ``use_natural_keys`` argument to ``django.core.serializers.Serializer.serialize()``. Thanks SmileyChris for the suggestion. | |||
| 2013-10-10 | Whitespace cleanup. | Tim Graham | |
| * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs. | |||
| 2013-10-09 | Fixed #21222 - Documented that 'default' and 'other' must be different ↵ | Tim Graham | |
| databases when running tests. Thanks vernondcole for the suggestion. | |||
| 2013-10-04 | Fixed #21213 -- Added docs for Django's mailing lists. | Unai Zalakain | |
| Added docs/internals/mailing-lists.txt documenting the use of django's mailing lists. All references across docs changed to point to this page. The referencing makes use of substitution because there's no way to make a :ref: link in a non-inline fashion in Sphinx. It also makes use of rst_epilog Sphinx conf for making this substitutions across all the docs. | |||
| 2013-10-01 | Fixed #21147 -- Avoided time.time precision issue with cache backends. | Michael Manfre | |
| The precision of time.time() is OS specific and it is possible for the resolution to be low enough to allow reading a cache key previously set with a timeout of 0. | |||
| 2013-09-28 | Fixed #20439 -- Started deprecation of IPAddressField | Erik Romijn | |
| 2013-09-26 | Added missing word in bio update. | Preston Holmes | |
| I a word :-/ | |||
| 2013-09-26 | Updated my bio. | Preston Holmes | |
| 2013-09-25 | Fixed wording in unit tests documentation. | Baptiste Mispelon | |
| 2013-09-22 | Fixed #21141 -- Update Sphinx URL | Rogério Yokomizo | |
| Updated Sphinx URL from http://sphinx.pocoo.org/ to http://sphinx-doc.org/. | |||
| 2013-09-20 | Fixed #20702 -- Deprecated get_formsets in favor of get_formsets_with_inlines. | tschilling | |
| Thanks stanislas.guerra at gmail.com for the report. | |||
| 2013-09-19 | Increase default PBKDF2 iterations | Paul McMillan | |
| Increases the default PBKDF2 iterations, since computers have gotten faster since 2011. In the future, we plan to increment by 10% per major version. | |||
| 2013-09-19 | Corrected markup problems in new security summary page. | Russell Keith-Magee | |
| 2013-09-18 | Fix #21121: Add archive of security issues. | James Bennett | |
| 2013-09-17 | Fixed #21024 -- Documented how to deprecate a feature. | Tim Graham | |
| 2013-09-16 | Fixed #17627 -- Renamed util.py files to utils.py | Tim Graham | |
| Thanks PaulM for the suggestion and Luke Granger-Brown and Wiktor Kołodziej for the initial patch. | |||
| 2013-09-13 | Documentation -- added instructions on working with pull requests | Kevin Christopher Henry | |
| Since non-core contributors are asked to review patches, instructions on working with pull requests were added to the Working with Git and GitHub page (based on the existing instructions in the core committers page). | |||
| 2013-09-09 | Fixed #17262 -- Refactored tzinfo implementations. | Aymeric Augustin | |
| This commit deprecates django.utils.tzinfo in favor of the more recent django.utils.timezone which was introduced when Django gained support for time zones. | |||
| 2013-09-09 | Fixed #19885 -- cleaned up the django.test namespace | Kevin Christopher Henry | |
| * override_settings may now be imported from django.test * removed Approximate from django.test * updated documentation for things importable from django.test Thanks akaariai for the suggestion. | |||
| 2013-09-07 | Added a note about LTS releases. | Jacob Kaplan-Moss | |
| 2013-09-06 | Fixed instructions for running a subset of tests. | Tim Graham | |
| 2013-09-06 | Fixed #20975 -- Fixed identation in docs/internals/committers.txt | Daniel Boeve | |
| Thanks EvilDMP for the report. | |||
| 2013-09-05 | Fixed #21035 -- Changed docs to treat the acronym SQL phonetically. | Eric Boersma | |
| The documentation and comments now all use 'an' to refer to the word SQL and not 'a'. | |||
| 2013-09-05 | Fixed #21047 -- Added CLA mesage on the new contributor advice doc | micahhausler | |
| 2013-08-27 | Updated instructions for running contrib tests. | Matt Robenolt | |
| 2013-08-21 | Added myself to the committers list. | evildmp | |
| 2013-08-19 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: docs/ref/django-admin.txt | |||
| 2013-08-16 | Remove the last FIXME from the howto-release-Django doc. | Carl Meyer | |
| 2013-08-15 | Updated docs following deprecation of django.views.defaults.shortcut | Alasdair Nicol | |
| Follows 3f2befc | |||
| 2013-08-10 | Merge pull request #1464 from evildmp/squashing_commits | Julien Phalip | |
| Clarified misleading wording about squashing commits | |||
| 2013-08-10 | clarified misleading wording about squashing commits | Daniele Procida | |
| 2013-08-09 | Fixed #20868 -- Added an email to django-announce as a security step. | Tim Graham | |
| Thanks garrison for the report. | |||
| 2013-08-09 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/core/management/commands/flush.py django/core/management/commands/syncdb.py django/db/models/loading.py docs/internals/deprecation.txt docs/ref/django-admin.txt docs/releases/1.7.txt | |||
| 2013-08-04 | Introduced ModelAdmin.get_fields() and refactored get_fieldsets() to use it. | Loic Bistuer | |
| Refs #18681. This also starts the deprecation of ModelAdmin.declared_fieldsets | |||
| 2013-08-04 | Deprecated SortedDict (replaced with collections.OrderedDict) | Curtis Maloney | |
| Thanks Loic Bistuer for the review. | |||
| 2013-07-30 | Rename allow_syncdb to allow_migrate | Andrew Godwin | |
