| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-19 | Corrected markup problems in new security summary page. | Russell Keith-Magee | |
| 2013-09-18 | Fixed two typos in the docs | Alex Gaynor | |
| 2013-09-18 | Fixed a typo in the docs | Alex Gaynor | |
| 2013-09-18 | Fix #21121: Add archive of security issues. | James Bennett | |
| 2013-09-18 | Fixed #19414 -- Added admin registration decorator | Brian Holdefehr | |
| Thanks stavros for the suggestion. | |||
| 2013-09-18 | Fixed #4278 -- Added a dirs parameter to a few functions to override ↵ | Berker Peksag | |
| TEMPLATE_DIRS. * django.template.loader.get_template() * django.template.loader.select_template() * django.shortcuts.render() * django.shortcuts.render_to_response() Thanks amcnabb for the suggestion. | |||
| 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-15 | Cleaned up 1.5.4/1.4.8 release notes | Tim Graham | |
| 2013-09-15 | Ensure that passwords are never long enough for a DoS. | Russell Keith-Magee | |
| * Limit the password length to 4096 bytes * Password hashers will raise a ValueError * django.contrib.auth forms will fail validation * Document in release notes that this is a backwards incompatible change Thanks to Josh Wright for the report, and Donald Stufft for the patch. This is a security fix; disclosure to follow shortly. | |||
| 2013-09-13 | Fixed #21100 -- Noted that Create/UpdateViews.fields is new in 1.6 | Tim Graham | |
| Thanks AndrewIngram for the suggestion. | |||
| 2013-09-13 | Fixed #21095 -- Documented new requirement for dates lookups. | Matt Austin | |
| Day, month, and week_day lookups now require time zone definitions in the database. | |||
| 2013-09-10 | Added 1.4.7/1.5.3 release notes | Tim Graham | |
| 2013-09-10 | Fixed #20919 -- Extended assertRedirects to be able to avoid fetching ↵ | Juan Catalano | |
| redirect's response. Thanks mjtamlyn for the suggestion. | |||
| 2013-09-10 | Fixed #16534 -- Improved ability to customize DiscoverRunner | Tim Graham | |
| Added DiscoverRunner.test_suite and .test_runner attributes. Thanks tomchristie for the suggestion and jcd for the patch. | |||
| 2013-09-09 | Fixed a little mistake in Django 1.7 release notes | Romain B. | |
| 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-09 | Improved release notes for ticket #10164 | Tim Graham | |
| Thanks Aymeric for the suggestions. refs #10164 | |||
| 2013-09-08 | Fix #20745: Don't silence TypeError raised inside templates. | Baptiste Mispelon | |
| Thanks to robin for the report and claudep for the review. | |||
| 2013-09-08 | Repositioned two paragraphs in the release notes. | Aymeric Augustin | |
| 2013-09-06 | Fixed some sphinx errors and added some links. | Tim Graham | |
| 2013-09-06 | Added new AdminSite attributes to 1.7 release notes | Adrian Holovaty | |
| 2013-09-06 | Merge pull request #1544 from evildmp/ticket_20920_rebase | Daniele Procida | |
| Fixed #20920 -- Consolidated F() and Q() documentation | |||
| 2013-09-06 | Consolidated documentation for F() and Q() | evildmp | |
| 2013-09-06 | Fixed #10164 -- Made AutoField increase monotonically on SQLite | Chris Wilson | |
| Thanks malte for the report. | |||
| 2013-09-06 | Fixed #16096 -- Added origin attribute to template instances. | Preston Timmons | |
| Thanks jdunck for the suggestion. | |||
| 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 #21000 -- Made cached_db session backend respect SESSION_CACHE_ALIAS | CHI Cheng | |
| 2013-09-03 | Fixed #21002 -- Documented JSON session serialization requires string keys | Tim Graham | |
| Thanks jeroen.pulles at redslider.net for the report. | |||
| 2013-08-31 | Made django.test.testcases not depend on staticfiles contrib app. | Ramiro Morales | |
| Do this by introducing a django.contrib.staticfiles.testing.StaticLiveServerCase unittest TestCase subclass. Fixes #20739. | |||
| 2013-08-30 | Improved {% include %} implementation | Curtis Maloney | |
| Merged BaseIncludeNode, ConstantIncludeNode and Include node. This avoids raising TemplateDoesNotExist at parsing time, allows recursion when passing a literal template name, and should make TEMPLATE_DEBUG behavior consistant. Thanks loic84 for help with the tests. Fixed #3544, fixed #12064, fixed #16147 | |||
| 2013-08-30 | Fixed #20988 -- Added model meta option select_on_save | Anssi Kääriäinen | |
| The option can be used to force pre 1.6 style SELECT on save behaviour. This is needed in case the database returns zero updated rows even if there is a matching row in the DB. One such case is PostgreSQL update trigger that returns NULL. Reviewed by Tim Graham. Refs #16649 | |||
| 2013-08-29 | Fixed #20881 -- Removed contrib.auth.models.AbstractUser.get_absolute_url() | Tim Graham | |
| The definition is arbitrary and creates a broken "view on site" link in the admin if a project doesn't define such a URL. | |||
| 2013-08-29 | Fixed #17356 -- Allowed {% include %} to render compiled templates | Curtis Maloney | |
| Reviewed by Loic Bistuer and Tim Graham. | |||
| 2013-08-28 | Fixed #20986 -- Enabled SelectDateWidget to use custom months | Loic Bistuer | |
| Reviewed by Trac alias MarkusH. | |||
| 2013-08-27 | Organized 1.7 minor features into subsections. | Tim Graham | |
| 2013-08-26 | Fixed #20972 -- Make messages cookie follow session cookie secure/httponly | Erik Romijn | |
| 2013-08-23 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/backends/oracle/base.py django/db/backends/postgresql_psycopg2/base.py django/db/models/signals.py tests/queries/tests.py | |||
| 2013-08-22 | Fixed #20922 -- Allowed customizing the serializer used by contrib.sessions | Tim Graham | |
| Added settings.SESSION_SERIALIZER which is the import path of a serializer to use for sessions. Thanks apollo13, carljm, shaib, akaariai, charettes, and dstufft for reviews. | |||
| 2013-08-22 | Fixed model.__eq__ and __hash__ for no pk value cases | Anssi Kääriäinen | |
| The __eq__ method now considers two instances without primary key value equal only when they have same id(). The __hash__ method raises TypeError for no primary key case. Fixed #18864, fixed #18250 Thanks to Tim Graham for docs review. | |||
| 2013-08-19 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: docs/ref/django-admin.txt | |||
| 2013-08-19 | Made Model.__eq__ consider proxy models equivalent | Anssi Kääriäinen | |
| Fixed #11892, fixed #16458, fixed #14492. | |||
| 2013-08-15 | Added release date to 1.5 release notes. | James Bennett | |
| Forwardport of 61283a8208 from 1.5.x | |||
| 2013-08-15 | Fixed some ReST errors regarding backticks | Tim Graham | |
| 2013-08-14 | Fixed #20709 -- Allowed {% widthratio %} to accept an "as" parameter. | Jonathan Slenders | |
| Thanks clay.evil@ for the suggestion. | |||
| 2013-08-14 | Fixed #11400 -- Passed kwargs from AbstractUser.email_user() to send_mail() | SusanTan | |
| Thanks Jug_ for suggestion, john_scott for the initial patch, and Tim Graham for code review. | |||
| 2013-08-13 | Fixed #20555 -- Make subwidget id attribute available | Matt Johnson | |
| In `BoundField.__iter__`, the widget's id attribute is now passed to each subwidget. A new id_for_label property was added to ChoiceInput. | |||
| 2013-08-13 | Added 1.4.6/1.5.2 release notes. | Tim Graham | |
| 2013-08-13 | Fixed #20883 -- Made model inheritance find parent links in abstract parents | Loic Bistuer | |
| 2013-08-12 | Added missing release notes for older versions of Django | Tim Graham | |
