summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-07-14Fixed typos in docs/ref/contrib/postgres/search.txtTom Carrick
2016-07-14Reworded a sentence in tutorial 7.Daniel Rice
2016-07-13Fixed #26889 -- Fixed missing PostgreSQL index in SchemaEditor.add_field().Jon Dufresne
2016-07-13Fixed typo in docs/internals/contributing/writing-code/coding-style.txtJiang Haiyun
2016-07-12Fixed #26884 -- Evaluated callables in QuerySet.update_or_create()'s ↵Kenneth
defaults when updating.
2016-07-12Fixed #26088 -- Made autodector detect changing proxy model to MTI.Jon Dufresne
2016-07-12Fixed #17657 -- Made ModelForm respect ModelMultipleChoiceField's to_field_name.Andrey Fedoseev
Follow up to 67d984413c9540074e4fe6aa033081a35cf192bc.
2016-07-12Fixed #26831 -- Documented session data must be JSON encodable for ↵Md. Sadaf Noor
JSONSerializer.
2016-07-12Fixed #26671 -- Made HashedFilesMixin ignore the 'chrome' scheme.Andrew Nester
2016-07-11Fixed #26792 -- Allowed None for the value of cache.get_or_set().Dmitry S..ky / skype: dvska-at-skype
2016-07-11Linked "Features removed" release notes to corresponding deprecation notes.Tim Graham
2016-07-11Fixed #26749 -- Preserved behavior of use_for_related_field during deprecation.Julien Hartmann
2016-07-09Fixed numpy deprecation warning silencing in template_tests.Baptiste Mispelon
2016-07-09Fixed #26872 -- Fixed text overflow in ModelAdmin.list_filter.Kenneth
2016-07-09Fixed #26881 -- Fixed duplicate managers in migrations.Loïc Bistuer
When both parent and child models had managers with the same name and a migrations opt-in both were added to the migration state.
2016-07-08Fixed #26796 -- Added a system check for m2m fields with ignored ↵Anderson Resende
limit_choices_to.
2016-07-08Fixed #26348 -- Added TruncTime and exposed it through the __time lookup.Simon Charette
Thanks Tim for the review.
2016-07-08Refs #25774, #26348 -- Allowed Trunc functions to operate with time fields.Simon Charette
Thanks Josh for the amazing testing setup and Tim for the review.
2016-07-08Refs #25774 -- Adjusted datetime database function docs field names.Simon Charette
2016-07-08Refs #17260 -- Prevented Oracle timezone conversion from stripping microseonds.Simon Charette
2016-07-08Added strict=True to all SchemaEditor.alter_field() calls in tests.Jon Dufresne
It should help catch bugs.
2016-07-08Fixed #26837 -- Documented ModelMultipleChoiceField.to_field_nameSean Marlow
2016-07-08Fixed #26802 -- Prevented crash when attaching bytes as text messageClaude Paroz
Thanks Tim Graham for the review.
2016-07-07Fixed #25317, #26090 -- Fixed swapping combinations of unique and db_index ↵Jon Dufresne
during migrations.
2016-07-07Refs #26709 -- Checked allow_migrate_model() in Add/RemoveIndex operations.Akshesh
2016-07-07Refs #26709 -- Documented SchemaEditor.add/remove_index().Akshesh
2016-07-07Refs #26709 -- Added 'model' argument to SchemaEditor.add/remove_index()Akshesh
This removes the dependency of the Index class on its model attribute when a name is passed to it. Thanks to Markush for discussions.
2016-07-07Fixed #26833 -- Fixed SchemaEditor._constraint_names() to handle ↵Jon Dufresne
features.uppercases_column_names.
2016-07-07Refs #26709 -- Added IndexOperation to avoid code duplication.Akshesh
2016-07-07Refs #26709 -- Required a name for Indexes passed to AddIndex.Akshesh
Thanks to Markush for discussions.
2016-07-07Fixed a typo in docs/ref/contrib/postgres/search.txt.Mathieu Richardoz
2016-07-06Fixed capitalization of "URL pattern".Tim Graham
2016-07-06Improved grammar in tutorial01.Daniel Rice
2016-07-06Promoted RemovedInDjango21Warning to error in Django's test suite.Tim Graham
2016-07-06Added copy-to-clipboard support for all code snippetsBaptiste Mispelon
2016-07-06Fixed #25461 -- Corrected meta API code examples to account for MTI.Romain Garrigues
In the case of multiple-table inheritance models, get_all_related_objects() and get_all_related_objects_with_model() don't return the auto-created OneToOneField, but the new examples didn't account for this.
2016-07-06Fixed typo in docs/topics/class-based-views/generic-display.txtTaylor Edmiston
2016-07-06Fixed #26841 -- Avoid remake tables for altering togethers in sqlite3 (#6888)akki
alter_index_together and alter_unique_together no more use _remake_table method in sqlite3
2016-07-04Fixed a typo in auth docs.Jiang Haiyun
2016-07-03Fixed #18682 -- Expanded explanation in stale content type deletion. (#6869)Erik Romijn
2016-07-03Refs #26808 -- Avoided clashing keyword arguments in test_autodetectorAkshesh
Factor method signatures in test_autodetector to avoid clashing keyword arguments when introducing indexes.
2016-07-02Fixed #26832 -- Added translated language name on the get_language_info ↵Leila20
documentation
2016-07-02Refs #21548 -- Skipped tests that rely on pillow when it's not installedBaptiste Mispelon
2016-07-02Fixed #26829 -- Simplified version detection command in tutorialMd. Sadaf Noor
2016-07-01Added package names to 'Error loading MySQLdb module' error.Adam Dobrawy
2016-07-01Fixed a urlpatterns_reverse test on Python 2 non-ASCII path.Tim Graham
2016-07-01Added parallel test running to "Speeding up the tests" docs.Harry Moreno
2016-06-30Fixed #21548 -- Added FileExtensionValidator and validate_image_file_extension.Berker Peksag
2016-06-30Fixed #26002 -- Explained ModelAdmin.get_search_results() example.Tim Graham
2016-06-30Fixed #25292 -- Fixed crash in ManyToManyField.through_fields check.Andrew Nester