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
## What's Changed
* 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
* 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
* Update release-notes.md by @AlvaroVega in https://github.com/encode/django-rest-framework/pull/9451
* Add Zuplo to sponsors by @tomchristie in https://github.com/encode/django-rest-framework/pull/9460
* Fix get_template_context to handle also lists by @sevdog in https://github.com/encode/django-rest-framework/pull/9467
* 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
* 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
* Update jobs.md by @p-schlickmann in https://github.com/encode/django-rest-framework/pull/9480
* Update django.po by @akkuman in https://github.com/encode/django-rest-framework/pull/9505
* Fix "Converter is already registered" deprecation warning. by @noamkush in https://github.com/encode/django-rest-framework/pull/9512
* Update browsable-api.md by @rafaelgramoschi in https://github.com/encode/django-rest-framework/pull/9509
* Accept integers as min/max values of DecimalField by @browniebroke in https://github.com/encode/django-rest-framework/pull/9515
* Add official support for Django 5.1 by @browniebroke in https://github.com/encode/django-rest-framework/pull/9514
* Spelling mistakes in Farsi language were corrected by @Sinaatkd in https://github.com/encode/django-rest-framework/pull/9521
* 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
* 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
* Fixing and adding missing pt-br translations by @gtkacz in https://github.com/encode/django-rest-framework/pull/9535
* Use final version of Python 3.13 by @sliverc in https://github.com/encode/django-rest-framework/pull/9556
* 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
* 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
* Fix raising on nullable fields part of `UniqueConstraint` by @browniebroke in https://github.com/encode/django-rest-framework/pull/9531
* 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
* 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
* Update SECURITY.md by @tomchristie in https://github.com/encode/django-rest-framework/pull/9628
* Switch to codecov GHA by @browniebroke in https://github.com/encode/django-rest-framework/pull/9618
* Add note in 'Introspecting ViewSet actions' docs section by @EXG1O in https://github.com/encode/django-rest-framework/pull/9633
* Drop deprecated `AutoSchema._get_reference` method by @browniebroke in https://github.com/encode/django-rest-framework/pull/9525
* Improved description of allowed throttling rates in documentation by @decadenza in https://github.com/encode/django-rest-framework/pull/9640
* 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
* add django 5.2a1 initial support by @auvipy in https://github.com/encode/django-rest-framework/pull/9634
* Fix unique together validator doesn't respect condition's fields by @kalekseev in https://github.com/encode/django-rest-framework/pull/9360
* 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
* Update django 5.2b1 by @auvipy in https://github.com/encode/django-rest-framework/pull/9657
* Update usage of open() in setup.py by @mikemanger in https://github.com/encode/django-rest-framework/pull/9661
* Fix typos by @mikemanger in https://github.com/encode/django-rest-framework/pull/9662
* Add django-pyoidc as a third party authentication library by @gbip in https://github.com/encode/django-rest-framework/pull/9667
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.
## Features
* 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
* Add official Django 5.2a1 support in https://github.com/encode/django-rest-framework/pull/9634
* 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
* 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
## Bug fixes
* Fix unique together validator to respect condition's fields from `UniqueConstraint` in https://github.com/encode/django-rest-framework/pull/9360
* Fix raising on nullable fields part of `UniqueConstraint` in https://github.com/encode/django-rest-framework/pull/9531
* Fix `unique_together` validation with source in https://github.com/encode/django-rest-framework/pull/9482
* Added protections to `AttributeError` raised within properties in https://github.com/encode/django-rest-framework/pull/9455
* Fix `get_template_context` to handle also lists in https://github.com/encode/django-rest-framework/pull/9467
* Fix "Converter is already registered" deprecation warning. in https://github.com/encode/django-rest-framework/pull/9512
* Fix noisy warning and accept integers as min/max values of `DecimalField` in https://github.com/encode/django-rest-framework/pull/9515
* Fix usages of `open()` in `setup.py` in https://github.com/encode/django-rest-framework/pull/9661
## Translations
* Add some missing Chinese translations in https://github.com/encode/django-rest-framework/pull/9505
* Fix spelling mistakes in Farsi language were corrected in https://github.com/encode/django-rest-framework/pull/9521
* Fixing and adding missing Brazilian Portuguese translations in https://github.com/encode/django-rest-framework/pull/9535
## Removals
* Remove long deprecated code from request wrapper in [#9441](https://github.com/encode/django-rest-framework/pull/9441)
* Remove deprecated `AutoSchema._get_reference` method in https://github.com/encode/django-rest-framework/pull/9525
## Documentation and internal changes
* Provide tests for hashing of `OperandHolder` in https://github.com/encode/django-rest-framework/pull/9437
* Update documentation: Add `adrf` third party package in https://github.com/encode/django-rest-framework/pull/9198
* Update tutorials links in Community contributions docs in https://github.com/encode/django-rest-framework/pull/9476
* Fix usage of deprecated Django function in example from docs in https://github.com/encode/django-rest-framework/pull/9509
* Move path converter docs into a separate section in https://github.com/encode/django-rest-framework/pull/9524
* Add test covering update view without `queryset` attribute in https://github.com/encode/django-rest-framework/pull/9528
* Fix Transifex link in https://github.com/encode/django-rest-framework/pull/9541
* Fix example `httpie` call in docs in https://github.com/encode/django-rest-framework/pull/9543
* Fix example for serializer field with choices in docs in https://github.com/encode/django-rest-framework/pull/9563
* Remove extra `<>` in validators example in https://github.com/encode/django-rest-framework/pull/9590
* Update `strftime` link in the docs in https://github.com/encode/django-rest-framework/pull/9624
* Switch to codecov GHA in https://github.com/encode/django-rest-framework/pull/9618
* Add note regarding availability of the `action` attribute in 'Introspecting ViewSet actions' docs section in https://github.com/encode/django-rest-framework/pull/9633
* 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
* @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
* @AlvaroVega made their first contribution in https://github.com/encode/django-rest-framework/pull/9451