summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2019-05-01[2.2.x] Updated man page for Django 2.2.Mariusz Felisiak
2019-05-01[2.2.x] Added release date for 2.2.1.Mariusz Felisiak
Backport of 2106b983c433586925df12cdca72374829756e45 from master
2019-04-30[2.2.x] Fixed #30412 -- Fixed crash when adding check constraints with OR'ed ↵can
condition on Oracle and SQLite. Backport of 719b7466203181066d9537d2e3bec687dffc9f41 from master
2019-04-30[2.2.x] Fixed #20629 -- Rephrased custom user models admonition.Tobias Kunze
Backport of eb16c7260e573ec513d84cb586d96bdf508f3173 from master
2019-04-30[2.2.x] Fixed #30408 -- Fixed crash when adding check constraints with LIKE ↵Simon Charette
operator on Oracle and PostgreSQL. The LIKE operator wildcard generated for contains, startswith, endswith and their case-insensitive variant lookups was conflicting with parameter interpolation on CREATE constraint statement execution. Ideally we'd delegate parameters interpolation in DDL statements on backends that support it but that would require backward incompatible changes to the Index and Constraint SQL generating methods. Thanks David Sanders for the report. Backport of a8b3f96f6acfa082f99166e0a1cfb4b0fbc0eace from master
2019-04-29[2.2.x] Fixed #30323 -- Fixed detecting changes by autoreloader when using ↵Tom Forbes
StatReloader. Backport of 6754bffa2b2df15a741008aa611c1bb0e8dff22b from master
2019-04-29[2.2.x] Refs #30323 -- Prevented crash of autoreloader when ↵Tom Forbes
get_resolver().urlconf_module raising an exception. Backport of 0636d4d2aa6e4469198fdf662225ad862e60c5e3 from master
2019-04-27[2.2.x] Fixed #30351 -- Handled pre-existing permissions in proxy model ↵Carlton Gibson
permissions data migration. Regression in 181fb60159e54d442d3610f4afba6f066a6dac05. Backport of 98296f86b340c8c9c968375d59f1d3a3479e60c2 from master
2019-04-26[2.2.x] Fixed #30361 -- Increased the default timeout of watchman client to ↵Jacob Green
5 seconds and made it customizable. Made the default timeout of watchman client customizable via DJANGO_WATCHMAN_TIMEOUT environment variable. Backport of ed3c59097a01ed3f32f8a8bed95307fb5c181251 from master
2019-04-26[2.2.x] Fixed #30312 -- Relaxed admin check from django.contrib.sessions to ↵Aarni Koskela
SessionMiddleware subclasses. Backport of efeceba589974b95b35b2e25df86498c96315518 from master
2019-04-25[2.2.x] Fixed #30318 -- Added check for importability of arguments of custom ↵Alasdair Nicol
error handler views. Thanks to Jon on Stack Overflow for reporting the issue. Backport of a5accc0368c6575b55976c06af36ed399c85c781 from master
2019-04-25[2.2.x] Fixed #30362 -- Noted partial indexes and constraints restrictions ↵Mariusz Felisiak
with abstract base classes. Thanks Carlton Gibson for the review. Backport of 5df3301aab9e1d1c386799263bef5cf013985c83 from master
2019-04-25[2.2.x] Fixed UniqueConstraint example in ref/models/constraints.txt.Mariusz Felisiak
Backport of f8f0f92ed9f73a025de599bd1a4965f2cc2ebbba from master
2019-04-24[2.2.x] Changed tuple Mate.unique_together/permissions to lists in docs.Luke Plant
Backport of 0c916255eb4d94e06e123fafec93efdba45b1259 from master
2019-04-23[2.2.x] Fixed #30385 -- Restored SearchVector(config) immutability.Simon Charette
Regression in 1a28dc3887e8d66d5e3ff08cf7fb0a6212b873e5. The usage of CONCAT to allow SearchVector to deal with non-text fields made the generated expression non-IMMUTABLE which prevents a functional index to be created for it. Using a combination of COALESCE and ::text makes sure the expression preserves its immutability. Refs #29582. Thanks Andrew Brown for the report, Nick Pope for the review. Backport of 405c8363362063542e9e79beac53c8437d389520 from master
2019-04-21[2.2.x] Fixed typo in docs/internals/contributing/committing-code.txt.Ville Skyttä
Backport of 34a68c2cbea837b81cd9ab6bc91563416612157c from master
2019-04-19[2.2.x] Made cosmetic edits in docs/releases/2.2.1.txt.Mariusz Felisiak
Backport of 753580ecd17de62fa8ab9cd43c4cd0b986f9e348 from master
2019-04-19[2.2.x] Fixed #30328 -- Fixed crash of IntegerField.validators when ↵Scott Fitsimones
limit_value in a custom validator is callable. Backport of a14c0fda15db7e0eb982ac7b68d47b45fc95b4cb from master
2019-04-18[2.2.x] Fixed #30335, #29139 -- Fixed crash when ordering or aggregating ↵can
over a nested JSONField key transform. Backport of d87bd29c4f8dfcdf3f4a4eb8340e6770a2416fe3 from master.
2019-04-17[2.2.x] Updated SpatiaLite install instructions to suggest first package ↵Willy Njundong
from recent Debian-based distributions. Backport of 8180ffba21bf10f4be905cb0d4890dc2bcff2788 from master
2019-04-16[2.2.x] Fixed #14808 -- Doc'd that trans and blocktrans tags don't escape ↵Tobias Kunze
translations. Backport of 7d49ad76562e8c0597a0eb66046ab423b12888d8 from master
2019-04-16[2.2.x] Fixed #14009 -- Fixed custom formset validation example in docs.Tobias Kunze
Backport of d610521bffe9d44a070ebe3a719b474aff6d3d1e from master
2019-04-16[2.2.x] Fixed typo in docs/ref/models/instances.txt.Gary Donovan
Backport of 516d858e7a3d01443cdc4e1eb4532b9d910f5e2b from master
2019-04-15[2.2.x] Fixed #30325 -- Reverted "Fixed #29725 -- Removed unnecessary join ↵Mariusz Felisiak
in QuerySet.count() and exists() on a many-to-many relation." This reverts commit 1299421cadc4fcf63585f2f88337078e43e660e0 due to a regression with custom managers. Backport of 5f7991c42cff73b6278106d499d719b726f85ead from master
2019-04-15[2.2.x] Fixed #30326 -- Doc'd how to avoid persistence of F() assignment.sage
Backport of bfae195b0a2c8dae755610a7e23add5c6bc37b5e from master
2019-04-14[2.2.x] Fixed #30350 -- Prevented recreation of migration for operations ↵Florian Apolloner
with a range object. Thanks to Mariusz Felisiak for helping with the patch. Backport of 2e38f2015aba224b68a91a3012b87223f3046bb6 from master.
2019-04-14[2.2.x] Corrected wording in docs/intro/overview.txt.gnl
Backport of 9f1d78f85704cb118e9f22efd57518a3584aa4ae from master
2019-04-13[2.2.x] Fixed #30347 -- Fixed typo in docs/topics/db/aggregation.txt.Daniel Musketa
Backport of ba726067604ce5a8ca3919edf653496722b433ab from master
2019-04-09[2.2.x] Fixed #30321 -- Added example of changed_data to forms docs.Bruno Furtado
Backport of 571ab44e8a8936014c22e7eebe4948d9611fd7ce from master
2019-04-08[2.2.x] Fixed #30330 -- Fixed setting of primary key to None during fast-delete.Florian Apolloner
Regression in bc7dd8490b882b2cefdc7faf431dc64c532b79c9. Backport of afc708cf6d047b35db57bd7c55baeffef459d279 from master
2019-04-07[2.2.x] Refs #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-06[2.2.x] Fixed #30332 -- Fixed crash of ordering by expressions with params ↵Simone Pellizzari
in ArrayAgg and StringAgg. Backport of d0315584b5ed6a47b486e65f6c88f80189f337ef from master.
2019-04-05[2.2.x] Fixed #30324 -- Forced utf-8 encoding when loading the template for ↵Nick Pope
the technical 500 debug page. Regression in 50b8493. Related to ea542a9. Backport of efb257a01764855a71051d5bcc7fd66c5ad6d210 from master
2019-04-05[2.2.x] Fixed #30331 -- Added support for psycopg2 2.8.Mariusz Felisiak
Backport of 5efaf078f7609a8c95045bcfdab0ba256b5449bf from master
2019-04-04[2.2.x] Fixed #30307 -- Fixed incorrect quoting of database user password ↵msg
when using dbshell on Oracle. Regression in acfc650f2a6e4a79e80237eabfa923ea3a05d709. Backport of 755673e1bca7edb6bee7a958f40d9ae54d85d44c from master
2019-04-03[2.2.x] Added stub release notes for 2.2.1.Mariusz Felisiak
Backport of e6588aa4e793b7f56f4cadbfa155b581e0efc59a from master
2019-04-02[2.2.x] Fixed typo in docs/releases/2.2.txt.Alex Gaynor
Backport of 851d9eac23e08ff10a2d6fe5368b02798761663c from master
2019-04-02[2.2.x] Fixed typo in docs/ref/settings.txt.Mariusz Felisiak
Backport of 4cbe2b06ce580423c62b6e49969f7e24d57d63b8 from master
2019-04-01[2.2.x] Corrected date format in 2.2 release notes.Carlton Gibson
Backport of 93daed25a41b5cf2f7804d91630caa1cd0786a9a from master
2019-04-01[2.2.x] Set release date in v2.2 release notes.Carlton Gibson
Backport of 7191beec4e2140bf2d6ff7e6ad2e1c25913c9c48 from master
2019-04-01[2.2.x] Updated man page for 2.2 final.Carlton Gibson
Backport of f9f09a8a0259e75a5009ce04e662a5a759f8a12f from master
2019-03-30[2.2.x] Fixed #30289 -- Prevented admin inlines for a ManyToManyField's ↵Tim Graham
implicit through model from being editable if the user only has the view permission. Backport of 8335d59200e4c64dfe3348ea93989d95e0107439 from master.
2019-03-30[2.2.x] Added stub 2.1.8 release notes.Tim Graham
Backport of e245046bb6e8b32360aa48b8a41fb7050f0fc730 from master
2019-03-30[2.2.x] Refs #30278 -- Fixed link in cached_property docs.Tim Graham
Backport of b9455b010e41d1c6e68faa11115212d50de3c231 from master.
2019-03-30[2.2.x] Refs #30278 -- Doc'd behavior of del on an unaccessed cached_property.Matthew Schinckel
Thanks to Curtis Maloney for the description of the problem. Backport of c3c2ec54f59428cdf0a35abce594fd2ada35c209 from master
2019-03-29[2.2.x] Fixed #30265 -- Fixed a tutorial number in Reusable App tutorial.Abhishek Bera
Backport of ca67f39afa54e281705563834d3684e8b27844b6 from master.
2019-03-29[2.2.x] Removed unnecessary /static from links to PostgreSQL docs.Nick Pope
Backport of 198a2a9381a415f76c3170753270f5087ce4475a from master.
2019-03-28[2.2.x] Used extlinks for Django's source code.Tim Graham
Backport of a68c029e224cebe540da7447dbbd27993b4aa793 from master.
2019-03-28[2.2.x] Fixed #30299 -- Removed jQuery dependency from getCookie() in CSRF docs.Tim Graham
Backport of 8e675e2bd8366adf5d0b579accfef75a7b1bc3bf from master
2019-03-28[2.2.x] Refs #1660 -- Doc'd the LANGUAGES_BIDI setting.Nick Pope
Backport of 07daa487aeb7d41d69d7d1cf9d4b3648e299e4ac from master