-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add docs/community/3.15-announcement.md - Update docs/community/release-notes.md Co-authored-by: Bruno Alla <[email protected]>
- Loading branch information
1 parent
4f7e9ed
commit b480d92
Showing
2 changed files
with
171 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<style> | ||
.promo li a { | ||
float: left; | ||
width: 130px; | ||
height: 20px; | ||
text-align: center; | ||
margin: 10px 30px; | ||
padding: 150px 0 0 0; | ||
background-position: 0 50%; | ||
background-size: 130px auto; | ||
background-repeat: no-repeat; | ||
font-size: 120%; | ||
color: black; | ||
} | ||
.promo li { | ||
list-style: none; | ||
} | ||
</style> | ||
|
||
# Django REST framework 3.15 | ||
|
||
At the Internet on June, 6th, with 112 commits from 81 authors, we are happy to announce the release of Django REST framework 3.15. | ||
|
||
## Django 4.2 and Python 3.11 support | ||
|
||
The latest release now fully supports Django 4.2 and Python 3.11. | ||
|
||
The current minimum versions of Django still is 3.0 and Python 3.6. | ||
|
||
## Primary Support of UniqueConstraint | ||
|
||
``ModelSerializer`` generates validators for [UniqueConstraint](https://docs.djangoproject.com/en/4.0/ref/models/constraints/#uniqueconstraint) (both UniqueValidator and UniqueTogetherValidator) | ||
|
||
## ValidationErrors improvements | ||
|
||
The `ValidationError` has been aligned with Django's, currently supporting the same style (signature) and nesting. | ||
|
||
## SimpleRouter non-regex matching support | ||
|
||
By default the URLs created by `SimpleRouter` use regular expressions. This behavior can be modified by setting the `use_regex_path` argument to `False` when instantiating the router. | ||
|
||
## ZoneInfo as the primary source of timezone data | ||
|
||
Dependency on pytz has been removed and deprecation warnings have been added, Django will provide ZoneInfo instances as long as USE_DEPRECATED_PYTZ is not enabled. More info on the migration can be found [in this guide](https://pytz-deprecation-shim.readthedocs.io/en/latest/migration.html). | ||
|
||
## Other fixes and improvements | ||
|
||
There are a number of fixes and minor improvements in this release, ranging from documentation, internal infrastructure (typing, testing, requirements, deprecation, etc.), security and overall behaviour. | ||
|
||
See the [release notes](release-notes.md) page for a complete listing. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters