Reformat changes and split into sections

This commit is contained in:
Bruno Alla 2025-03-28 12:18:12 +00:00
parent f03915461f
commit b8e26f694f

View File

@ -42,55 +42,59 @@ You can determine your currently installed version using `pip show`:
**Date**: 31th March 2025 **Date**: 31th March 2025
## What's Changed This release is considered a significant release to improve upstream support with Django and Python. Some of these may change the behaviour of existing features and pre-existing behaviour. Specifically, some fixes were added to around the support of `UniqueConstraint` with nullable fields which will improve built-in serializer validation.
* Provide tests for hashing of `OperandHolder` by @vanya909 in https://github.com/encode/django-rest-framework/pull/9437
* Remove long deprecated code from request wrapper by @sevdog in https://github.com/encode/django-rest-framework/pull/9441 ## Features
* Update documentation: Add adrf third party package by @maerteijn in https://github.com/encode/django-rest-framework/pull/9198
* Fix wrong link PR(#9435) on release-notes 3.15.2 by @FraCata00 in https://github.com/encode/django-rest-framework/pull/9444 * Add official support for Django 5.1 and its new `LoginRequiredMiddleware` in https://github.com/encode/django-rest-framework/pull/9514 and https://github.com/encode/django-rest-framework/pull/9657
* Update release-notes.md by @AlvaroVega in https://github.com/encode/django-rest-framework/pull/9451 * Add official Django 5.2a1 support in https://github.com/encode/django-rest-framework/pull/9634
* Add Zuplo to sponsors by @tomchristie in https://github.com/encode/django-rest-framework/pull/9460 * Add support for Python 3.13 in https://github.com/encode/django-rest-framework/pull/9527 and https://github.com/encode/django-rest-framework/pull/9556
* Fix get_template_context to handle also lists by @sevdog in https://github.com/encode/django-rest-framework/pull/9467 * Support Django 2.1+ test client JSON data automatically serialized in https://github.com/encode/django-rest-framework/pull/6511 and fix a regression in https://github.com/encode/django-rest-framework/pull/9615
* Update tutorials links in Community contributions docs by @andreagrandi in https://github.com/encode/django-rest-framework/pull/9476
* Added protections to AttributeErrors raised within properties by @james-mchugh in https://github.com/encode/django-rest-framework/pull/9455 ## Bug fixes
* Fix unique_together validation with source by @yuekui in https://github.com/encode/django-rest-framework/pull/9482
* Update tutorials-and-resources.md by @ifeanyidavid in https://github.com/encode/django-rest-framework/pull/9479 * Fix unique together validator to respect condition's fields from `UniqueConstraint` in https://github.com/encode/django-rest-framework/pull/9360
* Update jobs.md by @p-schlickmann in https://github.com/encode/django-rest-framework/pull/9480 * Fix raising on nullable fields part of `UniqueConstraint` in https://github.com/encode/django-rest-framework/pull/9531
* Update django.po by @akkuman in https://github.com/encode/django-rest-framework/pull/9505 * Fix `unique_together` validation with source in https://github.com/encode/django-rest-framework/pull/9482
* Fix "Converter is already registered" deprecation warning. by @noamkush in https://github.com/encode/django-rest-framework/pull/9512 * Added protections to `AttributeError` raised within properties in https://github.com/encode/django-rest-framework/pull/9455
* Update browsable-api.md by @rafaelgramoschi in https://github.com/encode/django-rest-framework/pull/9509 * Fix `get_template_context` to handle also lists in https://github.com/encode/django-rest-framework/pull/9467
* Accept integers as min/max values of DecimalField by @browniebroke in https://github.com/encode/django-rest-framework/pull/9515 * Fix "Converter is already registered" deprecation warning. in https://github.com/encode/django-rest-framework/pull/9512
* Add official support for Django 5.1 by @browniebroke in https://github.com/encode/django-rest-framework/pull/9514 * Fix noisy warning and accept integers as min/max values of `DecimalField` in https://github.com/encode/django-rest-framework/pull/9515
* Spelling mistakes in Farsi language were corrected by @Sinaatkd in https://github.com/encode/django-rest-framework/pull/9521 * Fix usages of `open()` in `setup.py` in https://github.com/encode/django-rest-framework/pull/9661
* Move path converter docs into a separate section by @browniebroke in https://github.com/encode/django-rest-framework/pull/9524
* Add test covering update view without `queryset` attribute by @browniebroke in https://github.com/encode/django-rest-framework/pull/9528 ## Translations
* Add support for Python 3.13 by @browniebroke in https://github.com/encode/django-rest-framework/pull/9527
* Fix Transifex link by @peterthomassen in https://github.com/encode/django-rest-framework/pull/9541 * Add some missing Chinese translations in https://github.com/encode/django-rest-framework/pull/9505
* Fixing and adding missing pt-br translations by @gtkacz in https://github.com/encode/django-rest-framework/pull/9535 * Fix spelling mistakes in Farsi language were corrected in https://github.com/encode/django-rest-framework/pull/9521
* Use final version of Python 3.13 by @sliverc in https://github.com/encode/django-rest-framework/pull/9556 * Fixing and adding missing Brazilian Portuguese translations in https://github.com/encode/django-rest-framework/pull/9535
* Update 1-serialization.md by @gabrielromagnoli1987 in https://github.com/encode/django-rest-framework/pull/9543
* Fix docs typo in Serializers Validators by @cheehong1030 in https://github.com/encode/django-rest-framework/pull/9563 ## Removals
* Tutorial updates by @wsvincent in https://github.com/encode/django-rest-framework/pull/9589
* Removed extra <> in validators example by @amansharma612 in https://github.com/encode/django-rest-framework/pull/9590 * Remove long deprecated code from request wrapper in [#9441](https://github.com/encode/django-rest-framework/pull/9441)
* Fix raising on nullable fields part of `UniqueConstraint` by @browniebroke in https://github.com/encode/django-rest-framework/pull/9531 * Remove deprecated `AutoSchema._get_reference` method in https://github.com/encode/django-rest-framework/pull/9525
* support django 2.1+ test client json data automatically serialized by @terencehonles in https://github.com/encode/django-rest-framework/pull/6511
* Fix typo in renderers.md by @Gluroda in https://github.com/encode/django-rest-framework/pull/9616 ## Documentation and internal changes
* Fixed regression that tests using format still work by @sliverc in https://github.com/encode/django-rest-framework/pull/9615
* Update `strftime` formats link in the documentation by @deepakangadi in https://github.com/encode/django-rest-framework/pull/9624 * Provide tests for hashing of `OperandHolder` in https://github.com/encode/django-rest-framework/pull/9437
* Update SECURITY.md by @tomchristie in https://github.com/encode/django-rest-framework/pull/9628 * Update documentation: Add `adrf` third party package in https://github.com/encode/django-rest-framework/pull/9198
* Switch to codecov GHA by @browniebroke in https://github.com/encode/django-rest-framework/pull/9618 * Update tutorials links in Community contributions docs in https://github.com/encode/django-rest-framework/pull/9476
* Add note in 'Introspecting ViewSet actions' docs section by @EXG1O in https://github.com/encode/django-rest-framework/pull/9633 * Fix usage of deprecated Django function in example from docs in https://github.com/encode/django-rest-framework/pull/9509
* Drop deprecated `AutoSchema._get_reference` method by @browniebroke in https://github.com/encode/django-rest-framework/pull/9525 * Move path converter docs into a separate section in https://github.com/encode/django-rest-framework/pull/9524
* Improved description of allowed throttling rates in documentation by @decadenza in https://github.com/encode/django-rest-framework/pull/9640 * Add test covering update view without `queryset` attribute in https://github.com/encode/django-rest-framework/pull/9528
* Add missing ignore_outcome=true for the Python 3.13 - Django main combination by @browniebroke in https://github.com/encode/django-rest-framework/pull/9637 * Fix Transifex link in https://github.com/encode/django-rest-framework/pull/9541
* add django 5.2a1 initial support by @auvipy in https://github.com/encode/django-rest-framework/pull/9634 * Fix example `httpie` call in docs in https://github.com/encode/django-rest-framework/pull/9543
* Fix unique together validator doesn't respect condition's fields by @kalekseev in https://github.com/encode/django-rest-framework/pull/9360 * Fix example for serializer field with choices in docs in https://github.com/encode/django-rest-framework/pull/9563
* add rest-framework-gm2m-relations package that provides read/write serialization for generic many to many field by @mojtabaakbari221b in https://github.com/encode/django-rest-framework/pull/9063 * Remove extra `<>` in validators example in https://github.com/encode/django-rest-framework/pull/9590
* Update django 5.2b1 by @auvipy in https://github.com/encode/django-rest-framework/pull/9657 * Update `strftime` link in the docs in https://github.com/encode/django-rest-framework/pull/9624
* Update usage of open() in setup.py by @mikemanger in https://github.com/encode/django-rest-framework/pull/9661 * Switch to codecov GHA in https://github.com/encode/django-rest-framework/pull/9618
* Fix typos by @mikemanger in https://github.com/encode/django-rest-framework/pull/9662 * Add note regarding availability of the `action` attribute in 'Introspecting ViewSet actions' docs section in https://github.com/encode/django-rest-framework/pull/9633
* Add django-pyoidc as a third party authentication library by @gbip in https://github.com/encode/django-rest-framework/pull/9667 * Improved description of allowed throttling rates in documentation in https://github.com/encode/django-rest-framework/pull/9640
* Add `rest-framework-gm2m-relations` package to the list of 3rd party libraries in https://github.com/encode/django-rest-framework/pull/9063
* Fix a number of typos in the test suite in the docs in https://github.com/encode/django-rest-framework/pull/9662
* Add `django-pyoidc` as a third party authentication library in https://github.com/encode/django-rest-framework/pull/9667
## New Contributors ## New Contributors
* @maerteijn made their first contribution in https://github.com/encode/django-rest-framework/pull/9198 * @maerteijn made their first contribution in https://github.com/encode/django-rest-framework/pull/9198
* @FraCata00 made their first contribution in https://github.com/encode/django-rest-framework/pull/9444 * @FraCata00 made their first contribution in https://github.com/encode/django-rest-framework/pull/9444
* @AlvaroVega made their first contribution in https://github.com/encode/django-rest-framework/pull/9451 * @AlvaroVega made their first contribution in https://github.com/encode/django-rest-framework/pull/9451