Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add/Confirm support of Django REST Framework 3.11 #420

Merged
merged 1 commit into from
May 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ master (unreleased)
==================

- Added a tox job target to create a Django model graph using `dot`. Run `tox -e django_graph` to see the result. Since the database schema doesn't change that often, this tox target won't be associated with automated tests or doc generation - it's probably going to be a one-shot.
- Add/Confirm support of Django REST Framework 3.11 (#417).

Release 7.0.0 (2021-03-11)
==========================
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Warnings

* Python Compatibility : 3.6, 3.7, 3.8
* Django compatibility : Django 2.2.
* Django REST Framework : Compatible from the version 3.9.x to 3.10.x
* Django REST Framework : Compatible from the version 3.9.x to 3.11.x

See the `Deprecation timeline <http://django-formidable.readthedocs.io/en/latest/deprecations.html>`_ document for more information on deprecated versions.

Expand Down
10 changes: 10 additions & 0 deletions docs/source/deprecations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Deprecation timeline
====================

From 7.0.0 to x.y.z
===================

Django REST Framework versions
------------------------------

.. versionadded:: x.y.z

Add/Confirm support of Django REST Framework 3.11

From 6.1.0 to 7.0.0
===================

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
django22-py{36,37,38}-drf{39,310}-{sqlite,pg}
django22-py{36,37,38}-drf{39,310,311}-{sqlite,pg}
spectest
flake8
isort-check
Expand All @@ -17,6 +17,7 @@ deps =
; DRF versions
drf39: djangorestframework<3.10
drf310: djangorestframework<3.11
drf311: djangorestframework<3.12
; When testing with postgresql
pg: psycopg2-binary

Expand Down