summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-14Renamed camelCaseTestMethods to snake_case_test_methodsMarkus Holtermann
2019-04-14Fixed #30350 -- Prevented recreation of migration for operations with a ↵Florian Apolloner
range object. Thanks to Mariusz Felisiak for helping with the patch.
2019-04-14Fixed #30343 -- Fixed prefetch_related() for GenericForeignKey when PK of ↵Mariusz Felisiak
related field is UUIDField.
2019-04-14Corrected wording in docs/intro/overview.txt.gnl
2019-04-13Fixed #30358 -- Removed redundant assertion in ↵Krisjanis Vaiders
FormsUtilsTestCase.test_error_dict_copy().
2019-04-13Fixed #25941 -- Improved error message for runtests.py when django is not on ↵Thomas Allison
path.
2019-04-13Fixed #30363 -- Do not use exponential notation for small decimal numbers.Sjoerd Job Postmus
In 9cc6a60040b0f64f8ea066dd215176d4bd16621d a security patch was introduced to prevent allocating large segments of memory when a very large or very small decimal number was to be formatted. As a side-effect, there was a change in formatting of small decimal numbers even when the `decimal_pos` argument was provided, which meant that reasonable small decimal numbers (above 1e-199) would be formatted as `0.00`, while smaller decimal numbers (under 1e-200) would be formatted as `1e-200`.
2019-04-13Fixed #30347 -- Fixed typo in docs/topics/db/aggregation.txt.Daniel Musketa
2019-04-09Fixed #30321 -- Added example of changed_data to forms docs.Bruno Furtado
2019-04-08Fixed #30266 -- Kept a sequence owner when altering an ↵Dolan Antenucci
AutoField/BigAutoField on PostgreSQL.
2019-04-08Fixed #30330 -- Fixed setting of primary key to None during fast-delete.Florian Apolloner
Regression in bc7dd8490b882b2cefdc7faf431dc64c532b79c9.
2019-04-08Fixed #30304 -- Added support for the HttpOnly, SameSite, and Secure flags ↵Ran Benita
on language cookies.
2019-04-08Fixed #28373 -- Used connection timezone instead of UTC when making dates ↵can
timezone-aware on MySQL, SQLite, and Oracle. Thanks vtalpaert for the initial patch. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2019-04-07Refs #27807 -- Removed docs for User.username_validator.Tim Graham
The new override functionality claimed in refs #21379 doesn't work. Forwardport of 714fdbaa7048c2321f6238d9421137c33d9af7cc from stable/1.10.x.
2019-04-06Fixed #30332 -- Fixed crash of ordering by expressions with params in ↵Simone Pellizzari
ArrayAgg and StringAgg.
2019-04-06Refs #26067 -- Added more tests for ordering in StringAgg.Simone Pellizzari
2019-04-05Refs #20010 -- Unified DatabaseOperations.last_executed_query() on Oracle ↵Mariusz Felisiak
with other db backends. Thanks Simon Charette for the review.
2019-04-05Refs #30324 -- Forced utf-8 encoding when loading templates for the ↵Nick Pope
technical 404 debug and congrats page.
2019-04-05Fixed #30324 -- Forced utf-8 encoding when loading the template for the ↵Nick Pope
technical 500 debug page. Regression in 50b8493. Related to ea542a9.
2019-04-05Fixed bidirectionality on the congrats page.Majid Vaghari
2019-04-05Fixed #30331 -- Added support for psycopg2 2.8.Mariusz Felisiak
2019-04-04Fixed #30307 -- Fixed incorrect quoting of database user password when using ↵msg
dbshell on Oracle. Regression in acfc650f2a6e4a79e80237eabfa923ea3a05d709.
2019-04-03Fixed #30302 -- Fixed forms.model_to_dict() result if empty list of fields ↵belegnar
is passed.
2019-04-03Refs #30302 -- Added more tests for forms.model_to_dict().belegnar
2019-04-03Added stub release notes for 2.2.1.Mariusz Felisiak
2019-04-03Fixed typo in django/db/models/query_utils.py comment.David Beitey
2019-04-02Fixed typo in docs/releases/2.2.txt.Alex Gaynor
2019-04-02Fixed typo in docs/ref/settings.txt.Mariusz Felisiak
2019-04-01Fixed #30259 -- Fixed crash of admin views when properties don't have ↵Mariusz Felisiak
admin_order_field attribute.
2019-04-01Corrected date format in 2.2 release notes.Carlton Gibson
2019-04-01Updated contrib translations from Transifex.Claude Paroz
Forwardport of 7090cbf54202c21978a93bdb76ba006780e1865c from 2.2.x.
2019-04-01Updated core translations from TransifexClaude Paroz
Forwardport of 98f526e67c2899b9d44ba7cdbab5d70b1baa0060 from 2.2.x.
2019-04-01Set release date in v2.2 release notes.Carlton Gibson
2019-04-01Updated man page for 2.2 final.Carlton Gibson
2019-04-01Used QuerySet.bulk_create() in lookup.tests.JangHyukJin
2019-03-30Fixed #30289 -- Prevented admin inlines for a ManyToManyField's implicit ↵Tim Graham
through model from being editable if the user only has the view permission.
2019-03-30Added stub 2.1.8 release notes.Tim Graham
2019-03-30Made startapp/project's overlaying error message use 'app' or 'project'.oliver
2019-03-30Refs #29697 -- Added test for excluding m2m intermediary table.can
2019-03-30Refs #30278 -- Fixed link in cached_property docs.Tim Graham
2019-03-30Refs #30278 -- Doc'd behavior of del on an unaccessed cached_property.Matthew Schinckel
Thanks to Curtis Maloney for the description of the problem.
2019-03-30Optimized CommonMiddleware's check for DISALLOWED_USER_AGENTS.Brad
Avoided getattribute + getitem for each DISALLOWED_USER_AGENTS.
2019-03-30Fixed #30301 -- Removed OutputWrapper.__init__()'s style_func arg.Tim Graham
Unused since 533532302ae842c95cf7294ef6cd7f3e2bfaca65.
2019-03-29Fixed #30265 -- Fixed a tutorial number in Reusable App tutorial.Abhishek Bera
2019-03-29Removed unnecessary /static from links to PostgreSQL docs.Nick Pope
2019-03-29Fixed #30236 -- Made UsernameField render with autocapitalize="none" HTML ↵pmisteli
attribute. This prevents automatic capitalization, which is the default behavior in some browsers.
2019-03-29Fixed #30294 -- Allowed HttpResponse to accept memoryview content.sage
2019-03-28Moved extlinks in docs config to allow using 'version' variable.Tim Graham
After a stable branch is created, 'master' will change to 'stable/' + version + '.x'.
2019-03-28Used extlinks for Django's source code.Tim Graham
2019-03-28Fixed #30299 -- Removed jQuery dependency from getCookie() in CSRF docs.Tim Graham