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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,4 @@
2
2
3
3
At this point in its 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
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
5
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: docs/api-guide/fields.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -552,7 +552,7 @@ For further examples on `HiddenField` see the [validators](validators.md) docume
552
552
553
553
---
554
554
555
-
**Note:**`HiddenField()` does not appear in `partial=True` serializer (when making `PATCH` request). This behavior might change in future, follow updates on [github discussion](https://github.com/encode/django-rest-framework/discussions/8259).
555
+
**Note:**`HiddenField()` does not appear in `partial=True` serializer (when making `PATCH` request).
Copy file name to clipboardExpand all lines: docs/api-guide/throttling.md
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ You'll need to remember to also set your custom throttle class in the `'DEFAULT_
110
110
111
111
The built-in throttle implementations are open to [race conditions][race], so under high concurrency they may allow a few extra requests through.
112
112
113
-
If your project relies on guaranteeing the number of requests during concurrent requests, you will need to implement your own throttle class. See [issue #5181][gh5181] for more details.
113
+
If your project relies on guaranteeing the number of requests during concurrent requests, you will need to implement your own throttle class.
114
114
115
115
---
116
116
@@ -220,5 +220,4 @@ The following is an example of a rate throttle, that will randomly throttle 1 in
Copy file name to clipboardExpand all lines: docs/api-guide/validators.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ If you want the date field to be entirely hidden from the user, then use `Hidden
166
166
167
167
---
168
168
169
-
**Note:**`HiddenField()` does not appear in `partial=True` serializer (when making `PATCH` request). This behavior might change in future, follow updates on [github discussion](https://github.com/encode/django-rest-framework/discussions/8259).
169
+
**Note:**`HiddenField()` does not appear in `partial=True` serializer (when making `PATCH` request).
Copy file name to clipboardExpand all lines: docs/community/contributing.md
-18Lines changed: 0 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,6 @@
4
4
>
5
5
> —[Tim Berners-Lee][cite]
6
6
7
-
There are many ways you can contribute to Django REST framework. We'd like it to be a community-led project, so please get involved and help shape the future of the project.
8
-
9
7
!!! note
10
8
11
9
At this point in its lifespan we consider Django REST framework to be feature-complete. We focus on pull requests that track the continued development of Django versions, and generally do not accept new features or code formatting changes.
@@ -30,24 +28,9 @@ The [Django code of conduct][code-of-conduct] gives a fuller set of guidelines f
30
28
31
29
# Issues
32
30
33
-
Our contribution process is that 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.
34
-
35
-
Some tips on good potential issue reporting:
36
-
37
31
* Django REST framework is considered feature-complete. Please do not file requests to change behavior, unless it is required for security reasons or to maintain compatibility with upcoming Django or Python versions.
38
-
* Search the GitHub project page for related items, and make sure you're running the latest version of REST framework before reporting an issue.
39
32
* Feature requests will typically be closed with a recommendation that they be implemented outside the core REST framework library (e.g. as third-party libraries). This approach allows us to keep down the maintenance overhead of REST framework, so that the focus can be on continued stability and great documentation.
40
33
41
-
## Triaging issues
42
-
43
-
Getting involved in triaging incoming issues is a good way to start contributing. Every single ticket that comes into the ticket tracker needs to be reviewed in order to determine what the next steps should be. Anyone can help out with this, you just need to be willing to
44
-
45
-
* Read through the ticket - does it make sense, is it missing any context that would help explain it better?
46
-
* Is the ticket reported in the correct place, would it be better suited as a discussion on the discussion group?
47
-
* If the ticket is a bug report, can you reproduce it? Are you able to write a failing test case that demonstrates the issue and that can be submitted as a pull request?
48
-
* If the ticket is a feature request, could the feature request instead be implemented as a third party package?
49
-
* If a ticket hasn't had much activity and addresses something you need, then comment on the ticket and try to find out what's needed to get it moving again.
50
-
51
34
# Development
52
35
53
36
To start developing on Django REST framework, first create a Fork from the
@@ -206,7 +189,6 @@ If you want to draw attention to a note or warning, use a pair of enclosing line
0 commit comments