You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See the [Contributing guide in the documentation](https://www.django-rest-framework.org/community/contributing/).
3
+
At this point in it's lifespan we consider Django REST framework to be essentially feature-complete. We may accept pull requests that track the continued development of Django versions, but would prefer not to accept new features or code formatting changes.
4
+
5
+
Apart from minor documentation changes, the [GitHub discussions page](https://github.com/encode/django-rest-framework/discussions) should generally be your starting point. Please only raise an issue or pull request if you've been recommended to do so after discussion.
6
+
7
+
The [Contributing guide in the documentation](https://www.django-rest-framework.org/community/contributing/) gives some more information on our process and code of conduct.
Copy file name to clipboardExpand all lines: README.md
+27-20Lines changed: 27 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -21,12 +21,14 @@ The initial aim is to provide a single full-time position on REST framework.
21
21
22
22
[![][sentry-img]][sentry-url]
23
23
[![][stream-img]][stream-url]
24
-
[![][rollbar-img]][rollbar-url]
25
-
[![][esg-img]][esg-url]
24
+
[![][spacinov-img]][spacinov-url]
26
25
[![][retool-img]][retool-url]
27
26
[![][bitio-img]][bitio-url]
27
+
[![][posthog-img]][posthog-url]
28
+
[![][cryptapi-img]][cryptapi-url]
29
+
[![][fezto-img]][fezto-url]
28
30
29
-
Many thanks to all our [wonderful sponsors][sponsors], and in particular to our premium backers, [Sentry][sentry-url], [Stream][stream-url], [Rollbar][rollbar-url], [ESG][esg-url], [Retool][retool-url], and [bit.io][bitio-url].
31
+
Many thanks to all our [wonderful sponsors][sponsors], and in particular to our premium backers, [Sentry][sentry-url], [Stream][stream-url], [Spacinov][spacinov-url], [Retool][retool-url], [bit.io][bitio-url], [PostHog][posthog-url], [CryptAPI][cryptapi-url], and [FEZTO][fezto-url].
30
32
31
33
---
32
34
@@ -52,8 +54,8 @@ There is a live example API for testing purposes, [available here][sandbox].
52
54
53
55
# Requirements
54
56
55
-
* Python (3.5, 3.6, 3.7, 3.8, 3.9)
56
-
* Django (2.2, 3.0, 3.1)
57
+
* Python 3.6+
58
+
* Django 4.1, 4.0, 3.2, 3.1, 3.0
57
59
58
60
We **highly recommend** and only officially support the latest patch release of
59
61
each Python and Django series.
@@ -65,11 +67,12 @@ Install using `pip`...
65
67
pip install djangorestframework
66
68
67
69
Add `'rest_framework'` to your `INSTALLED_APPS` setting.
68
-
69
-
INSTALLED_APPS = [
70
-
...
71
-
'rest_framework',
72
-
]
70
+
```python
71
+
INSTALLED_APPS= [
72
+
...
73
+
'rest_framework',
74
+
]
75
+
```
73
76
74
77
# Example
75
78
@@ -87,9 +90,10 @@ Startup up a new project like so...
87
90
Now edit the `example/urls.py` module in your project:
88
91
89
92
```python
90
-
from django.urls import path, include
91
93
from django.contrib.auth.models import User
92
-
from rest_framework import serializers, viewsets, routers
94
+
from django.urls import include, path
95
+
from rest_framework import routers, serializers, viewsets
Copy file name to clipboardExpand all lines: SECURITY.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
3
3
## Reporting a Vulnerability
4
4
5
-
If you believe you've found something in Django REST framework which has security implications, please **do not raise the issue in a public forum**.
5
+
Security issues are handled under the supervision of the [Django security team](https://www.djangoproject.com/foundation/teams/#security-team).
6
6
7
-
Send a description of the issue via email to [rest-framework-security@googlegroups.com][security-mail]. The project maintainers will then work with you to resolve any issues where required, prior to any public disclosure.
7
+
**Please report security issues by emailing security@djangoproject.com**.
0 commit comments