summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-01Fixed #23145 -- Dropped support for Oracle < 11.1Tim Graham
2014-08-01Fixed #7220 -- Allowed AbstractBaseUser.last_login to be null.Tim Graham
Thanks veena for the suggestion and Simon Charette and Kévin Etienne for reviews.
2014-08-01Removed some PostGIS 1.4 notes in the docs (refs #23108).Tim Graham
2014-08-01Fixed #23108 -- Dropped support for PostgreSQL 8.4 & PostGIS 1.3, 1.4.Tim Graham
Thanks Claude Paroz for the review.
2014-08-01Fixed typo in docs/topics/testing/tools.txt.Tim Graham
2014-08-01Fixed #23103 -- Annotated ImageField file with image and content_type ↵Petras Zdanavičius
attributes. Thanks Jeremy Dunck for the suggestion and Nick Sanford for review.
2014-08-01Merge branch 'team-organization'.Aymeric Augustin
https://groups.google.com/d/msg/django-developers/8b-wxEzWO3c/Hx3Uqg9XrksJ
2014-08-01Removed references to well-known political systems.Aymeric Augustin
Some cultures can't handle these words.
2014-08-01Adjusted 'internals' docs to the new organization.Aymeric Augustin
Most of these changes are about using the correct vocabulary -- "core team member" vs "core developer/committer" and adding internal links.
2014-08-01Left formal decisions up to the technical board.Aymeric Augustin
As the core team grows towards 50 people, it isn't reasonable to give everyone veto rights anymore.
2014-08-01Documented current roles.Aymeric Augustin
2014-08-01Introduced a technical board.Aymeric Augustin
Extended the scope of the core team a bit (depending on your current perspective on that scope).
2014-08-01Removed references to partial commit acces.Aymeric Augustin
2014-08-01Renamed "committers" to "team".Aymeric Augustin
2014-08-01Fixed #21940 -- Added kwargs to contribute_to_class() of model fields..Mitar
Thanks Kronuz for the suggestion.
2014-07-31Replaced django-admin.py with django-admin in the man page.Florian Apolloner
2014-07-31Fixed #22808 -- Made ModelMultipleChoiceField validation more robust to ↵Niclas Olofsson
invalid data types.. Thanks Mattias Lindvall for the report and inital patch.
2014-07-31Used JsonResponse in CBV examples.Loic Bistuer
Thanks Hiroki Kiyohara and Tim Graham for the reviews.
2014-07-31Fixed #22956 -- Made PermissionManager.get_by_natural_key() use the correct ↵Jürno Ader
database for content type lookup.
2014-07-31Updated timezone docs to use timezone.now()Tim Graham
Thanks James Cleveland for the report and Aymeric for suggesting the solution.
2014-07-31Fixed #16383 -- Raised the AttributeError raised in property of an object ↵Anubhav Joshi
when used in a template. Thanks maraujop for the report and Hiroki and Tim Graham for review.
2014-07-31Fixed #13163 -- Added ability to show change links on inline objects in admin.Nick Sandford
Thanks DrMeers for the suggestion.
2014-07-31Fixed flake8 warnings.Tim Graham
2014-07-30Fixed the previous commit for Python3.Florian Apolloner
2014-07-30Fixed #23112 -- Field.get_choices tries to index an iterableareski
2014-07-30Fixed test failure on Windows.Tim Graham
os.close(fd) is needed to avoid "The process cannot access the file because it is being used by another process"
2014-07-30Fixed #23067 -- Updated docs to use django-adminChristoph Heer
2014-07-30Fixed #23134 -- Fixed typos in docs/ref/models/querysets.txt.Tim Graham
Thanks Josh Kupershmidt.
2014-07-30Fixed flake8 errors.Tim Graham
2014-07-30Fixed #23107 -- Made runserver output respect --no-color.areski
2014-07-30Forwardported 1.6.6 release note for #19107.Tim Graham
2014-07-30Fixed #23132 -- Removed confusing clause in auth docs.Tim Graham
2014-07-29Fixed #23129 -- Added 'true' and 'false' to `NullBooleanField`.Kit La Touche
JavaScript serializations of forms will sometimes render the boolean values as the strings 'true' and 'false', in lower case. Rather than repeat boilerplate in the JavaScript to circumvent this, it seems reasonable to allow Django to understand the lower-case versions of the booleans.
2014-07-29Fixed #23092: Squashing handles external dependenciesAndrew Godwin
2014-07-29Fixed #23127: south_migrations note in docsAndrew Godwin
2014-07-29Fixed #23090: Document and enforce not double-squashing migrationsAndrew Godwin
2014-07-29Fixed #23101: Prefer doing deletes before creates in autodetector.Andrew Godwin
Makes declined or missed renames still work (but drop data).
2014-07-29Fixed a typo in the admin documentation.David Arcos
The 'app' subpackage does not exist, should be 'app'.
2014-07-29Fix soft_applied in a way that doesn't break testsAndrew Godwin
2014-07-29Make detect_soft_applied exit correctly on non-create migrationsAndrew Godwin
2014-07-29Forwardported 1.6.6 release notes for refs #20292.Tim Graham
2014-07-29Fixed #23079 -- Added data loss issues to those that will be backported to LTS.Tim Graham
2014-07-29Fixed #23120 -- Updated GeoDjango tutorial for migrations workflow.Tim Graham
2014-07-29Fixed #22962 -- Default values for ArrayField with migrations.Marc Tamlyn
Fields normally try to force the default value to a string. As translatable strings are not valid default values for ArrayField, we can remove this behaviour which was causing issues with some migrations. Thanks to @schinckel for the report.
2014-07-29Fixed #23123 -- Don't use a bare except in ModelAdmin documentationBaptiste Mispelon
Thanks to wkschwartz for the report and to Tim for the patch.
2014-07-29Fixed #23114 -- Clarified documentation of template lookups.Baptiste Mispelon
Thanks to gmunumel and Tom Dalton for their help on the patch.
2014-07-28Fixed #23121: AlterModelOptions operation not changing state rightAndrew Godwin
2014-07-28Fixed #23100: Individual FK creation missing dependenciesAndrew Godwin
2014-07-28Fixed #22491 -- documented how select_for_update() should be tested.Moayad Mardini
Thanks Andreas Pelme for the report.
2014-07-28Fixed #23102 -- Documented that sql* commands now respect allow_migrate().Gabriel Muñumel