summaryrefslogtreecommitdiff
path: root/docs/internals
Commit message (Collapse)AuthorAgeFilesLines
* Updated broken links in docs.Mariusz Felisiak2023-05-171-1/+1
|
* Made explicit the location of locally-built HTML docs.nessita2023-05-111-4/+5
|
* Fixed #34380 -- Allowed specifying a default URL scheme in forms.URLField.Coen van der Kamp2023-04-281-0/+3
| | | | This also deprecates "http" as the default scheme.
* Restored multiprocessing concurrency on coverage.py settingsMarc Gibbons2023-04-271-4/+9
| | | | | | | | | | | | | * Revert "Reverted "Fixed #33213 -- Doc'd testing code coverage in parallel and used it."" This reverts commit 78da5ca0c1f2ab3201f8f6cd629e80d805ea023d. * Restored coverage multiprocess concurrency with threads Investigating https://github.com/nedbat/coveragepy/issues/1585 revealed that thread tracing gets disabled when passing `concurrency = multiprocessing`. Adding `thread` restores it, and ensures that the `auser()` is reported as covered since the test suite uses `AsyncToSync` to execute this middleware (which spawns threads).
* Updated Django Transifex links.Claude Paroz2023-04-221-3/+3
| | | Subdomain was changed on April 3rd and redirects will stop on July 2023.
* Doc'd RemovedInDjangoXXWarning comments in deprecating a feature guide.Sarah Boyce2023-04-191-1/+25
|
* Refs #16055 -- Deprecated ↵David Wobrock2023-04-181-0/+8
| | | | get_joining_columns()/get_reverse_joining_columns() methods.
* Fixed #22569 -- Made ModelAdmin.lookup_allowed() respect get_list_filter().sarahboyce2023-04-171-0/+3
| | | | Thank you Simon Meers for the initial patch.
* Used extlinks for PyPI links.Tim Graham2023-04-175-71/+46
| | | | Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
* Updated release process for 2.0+ release numbering and latest practices.Mariusz Felisiak2023-04-041-51/+50
|
* Fixed #34446 -- Removed unneeded and incorrect example in coding style docs.JiriKr2023-03-301-9/+0
|
* Added Django Forum to mailing lists page.Carlton Gibson2023-03-241-5/+30
|
* Reverted "Fixed #33213 -- Doc'd testing code coverage in parallel and used it."Mariusz Felisiak2023-03-151-9/+4
| | | | | | This reverts commit 69352d85fa8412865db9e0c7f177b333c0eac3e2. Test coverage for async methods was no longer calculated with this change.
* Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot2023-03-014-23/+34
|
* Refs #34140 -- Added configurations to run blacken-docs linter and adjusted ↵Mariusz Felisiak2023-03-013-8/+19
| | | | | | | | | | | | | docs. This adds: - GitHub actions, - tox configuration, - pre-commit hook, and - makefile rules to run blacken-docs linter. Co-authored-by: David Smith <smithdc@gmail.com>
* Refs #34140 -- Corrected rst code-block and various formatting issues in docs.Joseph Victor Zammit2023-02-282-4/+6
|
* Fixed #34355 -- Deprecated passing positional arguments to BaseConstraint.Xavier Fernandez2023-02-221-0/+3
|
* Fixed #33213 -- Doc'd testing code coverage in parallel and used it.Paolo Melchiorre2023-02-111-4/+9
|
* Refs #34140 -- Applied rst code-block to non-Python examples.Carlton Gibson2023-02-106-60/+160
| | | | | Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews.
* Fixed #34324 -- Mentioned Discord server in contributing index.p0lygun2023-02-101-3/+4
|
* Refs #32339 -- Deprecated transitional form renderers.Mariusz Felisiak2023-01-181-0/+3
|
* Fixed #34233 -- Dropped support for Python 3.8 and 3.9.Mariusz Felisiak2023-01-181-5/+5
|
* Advanced deprecation warnings for Django 5.0.Mariusz Felisiak2023-01-171-0/+8
|
* Refs #26029 -- Deprecated DEFAULT_FILE_STORAGE and STATICFILES_STORAGE settings.Jarosław Wygoda2023-01-121-0/+6
|
* Refs #32355 -- Bumped minimum supported versions of 3rd-party packages.Mariusz Felisiak2023-01-051-5/+5
| | | | This bumps minimum supported versions of 3rd-party packages to the first releases to support Python 3.8.
* Refs #34118 -- Adopted asgiref coroutine detection shims.Carlton Gibson2022-12-201-1/+1
| | | Thanks to Mariusz Felisiak for review.
* Refs DEP 12 -- Renamed TB to Steering Council wherever mentioned.Andrew Godwin2022-12-202-70/+68
|
* Fixed #33199 -- Deprecated passing positional arguments to ↵SirAbhi132022-12-091-0/+3
| | | | | | Signer/TimestampSigner. Thanks Jacob Walls for the implementation idea.
* Updated various links to HTTPS and new locations.Mariusz Felisiak2022-12-061-1/+1
|
* Refs #33308 -- Deprecated support for passing encoded JSON string literals ↵Simon Charette2022-12-011-0/+3
| | | | | | | to JSONField & co. JSON should be provided as literal Python objects an not in their encoded string literal forms.
* Improved "rebase" example for upstream changes in working with Git docs.Smile2022-10-241-1/+1
|
* Fixed #34111 -- Made test runner with --debug-sql format SQL queries.Giebisch2022-10-241-1/+1
|
* Corrected curl call in working with Git docs.Smile2022-10-211-1/+1
|
* Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to ↵Gregor Gärtner2022-10-081-0/+2
| | | | | | assertQuerySetEqual(). Co-Authored-By: Michael Howitz <mh@gocept.com>
* Refs #33990 -- Renamed SimpleTestCase.assertFormsetError() to ↵Gregor Gärtner2022-10-071-0/+2
| | | | | | assertFormSetError(). Co-Authored-By: Michael Howitz <mh@gocept.com>
* Fixed #33924 -- Deprecated BaseGeometryWidget.map_height/map_width attributes.Claude Paroz2022-08-121-0/+3
|
* Fixed #33842 -- Used :source: role for links to repo files on GitHub.Ramil Yanbulatov2022-08-094-6/+6
|
* Fixed #33872 -- Deprecated ↵Mariusz Felisiak2022-08-031-0/+7
| | | | django.contrib.postgres.fields.CIText/CICharField/CIEmailField/CITextField.
* Refs #27236 -- Reverted AlterIndexTogether deprecation.Mariusz Felisiak2022-07-261-3/+0
| | | | This partly reverts a6385b382e05a614a99e5a5913d8e631823159a2.
* Refs #33691 -- Deprecated insecure password hashers.Claude Paroz2022-07-231-0/+4
| | | | | SHA1PasswordHasher, UnsaltedSHA1PasswordHasher, and UnsaltedMD5PasswordHasher are now deprecated.
* Fixed #33864 -- Deprecated length_is template filter.Nick Pope2022-07-231-0/+2
|
* Fixed #27236 -- Deprecated Meta.index_together in favor of Meta.indexes.David Wobrock2022-07-121-0/+5
| | | | This also deprecates AlterIndexTogether migration operation.
* Corrected various typos in contributing docs.Arslan Noor2022-06-307-29/+29
|
* Fixed #33422 -- Improved docs about isolating apps.Christopher Adams2022-06-271-61/+2
|
* Updated asgiref dependency for 4.1 release series.Carlton Gibson2022-06-161-1/+1
|
* Fixed #33764 -- Deprecated BaseUserManager.make_random_password().Ciaran McCormick2022-06-031-0/+2
|
* Fixed docs build with sphinxcontrib-spelling 7.5.0+.Mariusz Felisiak2022-05-313-3/+3
| | | | | sphinxcontrib-spelling 7.5.0+ includes captions of figures in the set of nodes for which the text is checked.
* Advanced deprecation warnings for Django 4.2.Carlton Gibson2022-05-171-0/+8
|
* Removed versionadded/changed annotations for 4.0.Carlton Gibson2022-05-171-4/+0
|
* Refs #32339 -- Deprecated default.html form template.David Smith2022-05-171-0/+3
| | | | Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>