Skip to content

Commit 0c6ce9a

Browse files
committed
Format GitHub PRs links for the docs
1 parent b8e26f6 commit 0c6ce9a

File tree

1 file changed

+54
-54
lines changed

1 file changed

+54
-54
lines changed

docs/community/release-notes.md

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -46,76 +46,76 @@ This release is considered a significant release to improve upstream support wit
4646

4747
## Features
4848

49-
* 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
50-
* Add official Django 5.2a1 support in https://github.com/encode/django-rest-framework/pull/9634
51-
* 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
52-
* 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
49+
* Add official support for Django 5.1 and its new `LoginRequiredMiddleware` in [#9514](https://github.com/encode/django-rest-framework/pull/9514) and [#9657](https://github.com/encode/django-rest-framework/pull/9657)
50+
* Add official Django 5.2a1 support in [#9634](https://github.com/encode/django-rest-framework/pull/9634)
51+
* Add support for Python 3.13 in [#9527](https://github.com/encode/django-rest-framework/pull/9527) and [#9556](https://github.com/encode/django-rest-framework/pull/9556)
52+
* Support Django 2.1+ test client JSON data automatically serialized in [#6511](https://github.com/encode/django-rest-framework/pull/6511) and fix a regression in [#9615](https://github.com/encode/django-rest-framework/pull/9615)
5353

5454
## Bug fixes
5555

56-
* Fix unique together validator to respect condition's fields from `UniqueConstraint` in https://github.com/encode/django-rest-framework/pull/9360
57-
* Fix raising on nullable fields part of `UniqueConstraint` in https://github.com/encode/django-rest-framework/pull/9531
58-
* Fix `unique_together` validation with source in https://github.com/encode/django-rest-framework/pull/9482
59-
* Added protections to `AttributeError` raised within properties in https://github.com/encode/django-rest-framework/pull/9455
60-
* Fix `get_template_context` to handle also lists in https://github.com/encode/django-rest-framework/pull/9467
61-
* Fix "Converter is already registered" deprecation warning. in https://github.com/encode/django-rest-framework/pull/9512
62-
* Fix noisy warning and accept integers as min/max values of `DecimalField` in https://github.com/encode/django-rest-framework/pull/9515
63-
* Fix usages of `open()` in `setup.py` in https://github.com/encode/django-rest-framework/pull/9661
56+
* Fix unique together validator to respect condition's fields from `UniqueConstraint` in [#9360](https://github.com/encode/django-rest-framework/pull/9360)
57+
* Fix raising on nullable fields part of `UniqueConstraint` in [#9531](https://github.com/encode/django-rest-framework/pull/9531)
58+
* Fix `unique_together` validation with source in [#9482](https://github.com/encode/django-rest-framework/pull/9482)
59+
* Added protections to `AttributeError` raised within properties in [#9455](https://github.com/encode/django-rest-framework/pull/9455)
60+
* Fix `get_template_context` to handle also lists in [#9467](https://github.com/encode/django-rest-framework/pull/9467)
61+
* Fix "Converter is already registered" deprecation warning. in [#9512](https://github.com/encode/django-rest-framework/pull/9512)
62+
* Fix noisy warning and accept integers as min/max values of `DecimalField` in [#9515](https://github.com/encode/django-rest-framework/pull/9515)
63+
* Fix usages of `open()` in `setup.py` in [#9661](https://github.com/encode/django-rest-framework/pull/9661)
6464

6565
## Translations
6666

67-
* Add some missing Chinese translations in https://github.com/encode/django-rest-framework/pull/9505
68-
* Fix spelling mistakes in Farsi language were corrected in https://github.com/encode/django-rest-framework/pull/9521
69-
* Fixing and adding missing Brazilian Portuguese translations in https://github.com/encode/django-rest-framework/pull/9535
67+
* Add some missing Chinese translations in [#9505](https://github.com/encode/django-rest-framework/pull/9505)
68+
* Fix spelling mistakes in Farsi language were corrected in [#9521](https://github.com/encode/django-rest-framework/pull/9521)
69+
* Fixing and adding missing Brazilian Portuguese translations in [#9535](https://github.com/encode/django-rest-framework/pull/9535)
7070

7171
## Removals
7272

7373
* Remove long deprecated code from request wrapper in [#9441](https://github.com/encode/django-rest-framework/pull/9441)
74-
* Remove deprecated `AutoSchema._get_reference` method in https://github.com/encode/django-rest-framework/pull/9525
74+
* Remove deprecated `AutoSchema._get_reference` method in [#9525](https://github.com/encode/django-rest-framework/pull/9525)
7575

7676
## Documentation and internal changes
7777

78-
* Provide tests for hashing of `OperandHolder` in https://github.com/encode/django-rest-framework/pull/9437
79-
* Update documentation: Add `adrf` third party package in https://github.com/encode/django-rest-framework/pull/9198
80-
* Update tutorials links in Community contributions docs in https://github.com/encode/django-rest-framework/pull/9476
81-
* Fix usage of deprecated Django function in example from docs in https://github.com/encode/django-rest-framework/pull/9509
82-
* Move path converter docs into a separate section in https://github.com/encode/django-rest-framework/pull/9524
83-
* Add test covering update view without `queryset` attribute in https://github.com/encode/django-rest-framework/pull/9528
84-
* Fix Transifex link in https://github.com/encode/django-rest-framework/pull/9541
85-
* Fix example `httpie` call in docs in https://github.com/encode/django-rest-framework/pull/9543
86-
* Fix example for serializer field with choices in docs in https://github.com/encode/django-rest-framework/pull/9563
87-
* Remove extra `<>` in validators example in https://github.com/encode/django-rest-framework/pull/9590
88-
* Update `strftime` link in the docs in https://github.com/encode/django-rest-framework/pull/9624
89-
* Switch to codecov GHA in https://github.com/encode/django-rest-framework/pull/9618
90-
* Add note regarding availability of the `action` attribute in 'Introspecting ViewSet actions' docs section in https://github.com/encode/django-rest-framework/pull/9633
91-
* Improved description of allowed throttling rates in documentation in https://github.com/encode/django-rest-framework/pull/9640
92-
* Add `rest-framework-gm2m-relations` package to the list of 3rd party libraries in https://github.com/encode/django-rest-framework/pull/9063
93-
* Fix a number of typos in the test suite in the docs in https://github.com/encode/django-rest-framework/pull/9662
94-
* Add `django-pyoidc` as a third party authentication library in https://github.com/encode/django-rest-framework/pull/9667
78+
* Provide tests for hashing of `OperandHolder` in [#9437](https://github.com/encode/django-rest-framework/pull/9437)
79+
* Update documentation: Add `adrf` third party package in [#9198](https://github.com/encode/django-rest-framework/pull/9198)
80+
* Update tutorials links in Community contributions docs in [#9476](https://github.com/encode/django-rest-framework/pull/9476)
81+
* Fix usage of deprecated Django function in example from docs in [#9509](https://github.com/encode/django-rest-framework/pull/9509)
82+
* Move path converter docs into a separate section in [#9524](https://github.com/encode/django-rest-framework/pull/9524)
83+
* Add test covering update view without `queryset` attribute in [#9528](https://github.com/encode/django-rest-framework/pull/9528)
84+
* Fix Transifex link in [#9541](https://github.com/encode/django-rest-framework/pull/9541)
85+
* Fix example `httpie` call in docs in [#9543](https://github.com/encode/django-rest-framework/pull/9543)
86+
* Fix example for serializer field with choices in docs in [#9563](https://github.com/encode/django-rest-framework/pull/9563)
87+
* Remove extra `<>` in validators example in [#9590](https://github.com/encode/django-rest-framework/pull/9590)
88+
* Update `strftime` link in the docs in [#9624](https://github.com/encode/django-rest-framework/pull/9624)
89+
* Switch to codecov GHA in [#9618](https://github.com/encode/django-rest-framework/pull/9618)
90+
* Add note regarding availability of the `action` attribute in 'Introspecting ViewSet actions' docs section in [#9633](https://github.com/encode/django-rest-framework/pull/9633)
91+
* Improved description of allowed throttling rates in documentation in [#9640](https://github.com/encode/django-rest-framework/pull/9640)
92+
* Add `rest-framework-gm2m-relations` package to the list of 3rd party libraries in [#9063](https://github.com/encode/django-rest-framework/pull/9063)
93+
* Fix a number of typos in the test suite in the docs in [#9662](https://github.com/encode/django-rest-framework/pull/9662)
94+
* Add `django-pyoidc` as a third party authentication library in [#9667](https://github.com/encode/django-rest-framework/pull/9667)
9595

9696
## New Contributors
9797

98-
* @maerteijn made their first contribution in https://github.com/encode/django-rest-framework/pull/9198
99-
* @FraCata00 made their first contribution in https://github.com/encode/django-rest-framework/pull/9444
100-
* @AlvaroVega made their first contribution in https://github.com/encode/django-rest-framework/pull/9451
101-
* @james-mchugh made their first contribution in https://github.com/encode/django-rest-framework/pull/9455
102-
* @ifeanyidavid made their first contribution in https://github.com/encode/django-rest-framework/pull/9479
103-
* @p-schlickmann made their first contribution in https://github.com/encode/django-rest-framework/pull/9480
104-
* @akkuman made their first contribution in https://github.com/encode/django-rest-framework/pull/9505
105-
* @rafaelgramoschi made their first contribution in https://github.com/encode/django-rest-framework/pull/9509
106-
* @Sinaatkd made their first contribution in https://github.com/encode/django-rest-framework/pull/9521
107-
* @gtkacz made their first contribution in https://github.com/encode/django-rest-framework/pull/9535
108-
* @sliverc made their first contribution in https://github.com/encode/django-rest-framework/pull/9556
109-
* @gabrielromagnoli1987 made their first contribution in https://github.com/encode/django-rest-framework/pull/9543
110-
* @cheehong1030 made their first contribution in https://github.com/encode/django-rest-framework/pull/9563
111-
* @amansharma612 made their first contribution in https://github.com/encode/django-rest-framework/pull/9590
112-
* @Gluroda made their first contribution in https://github.com/encode/django-rest-framework/pull/9616
113-
* @deepakangadi made their first contribution in https://github.com/encode/django-rest-framework/pull/9624
114-
* @EXG1O made their first contribution in https://github.com/encode/django-rest-framework/pull/9633
115-
* @decadenza made their first contribution in https://github.com/encode/django-rest-framework/pull/9640
116-
* @mojtabaakbari221b made their first contribution in https://github.com/encode/django-rest-framework/pull/9063
117-
* @mikemanger made their first contribution in https://github.com/encode/django-rest-framework/pull/9661
118-
* @gbip made their first contribution in https://github.com/encode/django-rest-framework/pull/9667
98+
* @maerteijn made their first contribution in [#9198](https://github.com/encode/django-rest-framework/pull/9198)
99+
* @FraCata00 made their first contribution in [#9444](https://github.com/encode/django-rest-framework/pull/9444)
100+
* @AlvaroVega made their first contribution in [#9451](https://github.com/encode/django-rest-framework/pull/9451)
101+
* @james-mchugh made their first contribution in [#9455](https://github.com/encode/django-rest-framework/pull/9455)
102+
* @ifeanyidavid made their first contribution in [#9479](https://github.com/encode/django-rest-framework/pull/9479)
103+
* @p-schlickmann made their first contribution in [#9480](https://github.com/encode/django-rest-framework/pull/9480)
104+
* @akkuman made their first contribution in [#9505](https://github.com/encode/django-rest-framework/pull/9505)
105+
* @rafaelgramoschi made their first contribution in [#9509](https://github.com/encode/django-rest-framework/pull/9509)
106+
* @Sinaatkd made their first contribution in [#9521](https://github.com/encode/django-rest-framework/pull/9521)
107+
* @gtkacz made their first contribution in [#9535](https://github.com/encode/django-rest-framework/pull/9535)
108+
* @sliverc made their first contribution in [#9556](https://github.com/encode/django-rest-framework/pull/9556)
109+
* @gabrielromagnoli1987 made their first contribution in [#9543](https://github.com/encode/django-rest-framework/pull/9543)
110+
* @cheehong1030 made their first contribution in [#9563](https://github.com/encode/django-rest-framework/pull/9563)
111+
* @amansharma612 made their first contribution in [#9590](https://github.com/encode/django-rest-framework/pull/9590)
112+
* @Gluroda made their first contribution in [#9616](https://github.com/encode/django-rest-framework/pull/9616)
113+
* @deepakangadi made their first contribution in [#9624](https://github.com/encode/django-rest-framework/pull/9624)
114+
* @EXG1O made their first contribution in [#9633](https://github.com/encode/django-rest-framework/pull/9633)
115+
* @decadenza made their first contribution in [#9640](https://github.com/encode/django-rest-framework/pull/9640)
116+
* @mojtabaakbari221b made their first contribution in [#9063](https://github.com/encode/django-rest-framework/pull/9063)
117+
* @mikemanger made their first contribution in [#9661](https://github.com/encode/django-rest-framework/pull/9661)
118+
* @gbip made their first contribution in [#9667](https://github.com/encode/django-rest-framework/pull/9667)
119119

120120
**Full Changelog**: https://github.com/encode/django-rest-framework/compare/3.15.2...3.16.0
121121

0 commit comments

Comments
 (0)