summaryrefslogtreecommitdiff
path: root/docs/internals
AgeCommit message (Collapse)Author
2016-11-04Updated "fork Django on GitHub" link.Tim Graham
2016-10-31Updated by bio.Anssi Kääriäinen
2016-10-27Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham
2016-10-27Updated "running the tests" to use 'pip install -e'.Tim Graham
2016-10-24Fixed #26357 -- Allowed admin popups to work on links added after page load.Julian Andrews
2016-10-24Documented how to request CVE IDs.Tim Graham
2016-10-15Updated security policy according to current practices.Tim Graham
Also added security release date notifications to django-announce.
2016-10-10Fixed #26447 -- Deprecated settings.USE_ETAGS in favor of ↵Denis Cornehl
ConditionalGetMiddleware.
2016-10-07Updated security team roster.Markus Holtermann
2016-10-06Fixed docs typos in lines ending with a dash.Tim Graham
2016-10-04Refs #18974 -- Deprecated @models.permalink() decorator.Tim Graham
2016-09-21Doc'd how to use GitHub's "Squash and merge" button.Tim Graham
2016-09-21Added myself to ops team (#7273)Markus Holtermann
2016-09-12Fixed #25187 -- Made request available in authentication backends.Aleksej Manaev
2016-09-12Fixed #27098 -- Deprecated DatabaseIntrospection.get_indexesClaude Paroz
Thanks Akshesh <aksheshdoshi@gmail.com> for help with the PostgreSQL query. Thanks Tim Graham for the review.
2016-09-08Fixed #27175 -- Deprecated silencing exceptions from the {% include %} ↵Jon Dufresne
template tag. Thanks Tim Graham for the review.
2016-09-07Refs #26956 -- Allowed is_safe_url() to validate against multiple hostsJon Dufresne
2016-09-01Updated roadmap link for 1.11.Ed Morley
2016-08-31Fixed #20892 -- Allowed configuring memcached client using OPTIONS.Ed Morley
Previously, the MemcachedCache backend ignored `OPTIONS` and PyLibMCCache used them to set pylibmc behaviors. Both backends now pass `OPTIONS` as keyword arguments to the client constructors.
2016-08-25Fixed #27067 -- Deprecated string_concat() in favor of format_lazy().Mattias Loverot
2016-08-19Added technical board for 1.11 release cycle.Tim Graham
The current board has been re-elected.
2016-08-17Fixed #26840 -- Added test.utils.setup/teardown_databases().Andreas Pelme
2016-08-09Fixed #26952 -- Added tips for installing test suite dependencies.an0o0nym
2016-08-06Fixed a few grammar issues in working-with-git doc.Adam Zapletal
2016-07-28Fixed #26929 -- Deprecated extra_context parameter of ↵Andrew Nester
contrib.auth.views.logout_then_login().
2016-07-20Fixed #22446 -- Added tox.ini to automate pull request checks.Tobias McNulty
2016-07-16Fixed #17209 -- Added password reset/change class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-07-13Fixed typo in docs/internals/contributing/writing-code/coding-style.txtJiang Haiyun
2016-06-24Refs #17209 -- Added LoginView and LogoutView class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-06-03Fixed #26701 -- Replaced /newticket links to Trac with /.shaunagm
2016-06-02Added a ticket tracker link in docs/internals/contributing/bugs-and-features.txtTim Graham
2016-06-02Fixed #26699 -- Mentioned doc theming difference (locally-built vs. website).Philip James
2016-05-28Added RemovedInDjango21WarningTim Graham
2016-05-20Removed versionadded/changed annotations for 1.9.Tim Graham
2016-05-19Fixed #26637 -- Removed obsolete note in ↵Tim Graham
docs/internals/contributing/writing-documentation.txt
2016-05-17Refs #26601 -- Deprecated old-style middleware.Tim Graham
2016-05-17Fixed #10506, #13793, #14891, #25201 -- Introduced new APIs to specify ↵Loïc Bistuer
models' default and base managers. This deprecates use_for_related_fields. Old API: class CustomManager(models.Model): use_for_related_fields = True class Model(models.Model): custom_manager = CustomManager() New API: class Model(models.Model): custom_manager = CustomManager() class Meta: base_manager_name = 'custom_manager' Refs #20932, #25897. Thanks Carl Meyer for the guidance throughout this work. Thanks Tim Graham for writing the docs.
2016-05-10Fixed #24046 -- Deprecated the "escape" half of utils.safestring.Tim Graham
2016-04-30Fixed #26058 -- Delegated os.path bits of FileField's filename generation to ↵Cristiano
the Storage.
2016-04-28Fixed #26554 -- Updated docs URLs to readthedocs.ioTim Graham
2016-04-25Refs #26033 -- Added password hasher support for Argon2 v1.3.Bas Westerbaan
The previous version of Argon2 uses encoded hashes of the form: $argon2d$m=8,t=1,p=1$<salt>$<data> The new version of Argon2 adds its version into the hash: $argon2d$v=19$m=8,t=1,p=1$<salt>$<data> This lets Django handle both version properly.
2016-04-23Fixed #26533 -- Renamed Widget._format_value() to format_value().Tim Graham
2016-04-22Fixed #26320 -- Deprecated implicit OneToOnField parent_link.Tim Graham
2016-04-22Updated my bioMarkus Holtermann
2016-04-16Fixed #26509 -- Deprecated the contrib.gis.utils.precision_wkt() function.krishbharadwaj
2016-04-15Fixed #19567 -- Added JavaScriptCatalog and JSONCatalog class-based viewsClaude Paroz
Thanks Cristiano Coelho and Tim Graham for the reviews.
2016-04-13Refs #16508 -- Renamed the current "virtual" fields to "private".Michal Petrucha
The only reason why GenericForeignKey and GenericRelation are stored separately inside _meta is that they need to be cloned for every model subclass, but that's not true for any other virtual field. Actually, it's only true for GenericRelation.
2016-04-09Fixed #25847 -- Made User.is_(anonymous|authenticated) properties.Jeremy Lainé
2016-04-05Fixed #26448 -- Added details for running tests with a different database ↵krishbharadwaj
backend.
2016-03-19Fixed a broken link in docs/internals/contributing/writing-documentation.txt.Amine