Skip to content

Commit 29c75ba

Browse files
committed
Removed reference to GitHub Issues and Discussions
as they are no longer activated ref: https://github.com/orgs/encode/discussions/11#discussioncomment-12311196
1 parent 0e1c7d3 commit 29c75ba

File tree

7 files changed

+3
-47
lines changed

7 files changed

+3
-47
lines changed

.github/ISSUE_TEMPLATE/1-issue.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
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.
44

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-
75
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.

docs/api-guide/fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ For further examples on `HiddenField` see the [validators](validators.md) docume
552552

553553
---
554554

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).
556556

557557
---
558558

docs/api-guide/throttling.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ You'll need to remember to also set your custom throttle class in the `'DEFAULT_
110110

111111
The built-in throttle implementations are open to [race conditions][race], so under high concurrency they may allow a few extra requests through.
112112

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.
114114

115115
---
116116

@@ -220,5 +220,4 @@ The following is an example of a rate throttle, that will randomly throttle 1 in
220220
[identifying-clients]: http://oxpedia.org/wiki/index.php?title=AppSuite:Grizzly#Multiple_Proxies_in_front_of_the_cluster
221221
[cache-setting]: https://docs.djangoproject.com/en/stable/ref/settings/#caches
222222
[cache-docs]: https://docs.djangoproject.com/en/stable/topics/cache/#setting-up-the-cache
223-
[gh5181]: https://github.com/encode/django-rest-framework/issues/5181
224223
[race]: https://en.wikipedia.org/wiki/Race_condition#Data_race

docs/api-guide/validators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ If you want the date field to be entirely hidden from the user, then use `Hidden
166166

167167
---
168168

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).
170170

171171
---
172172

docs/community/contributing.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
>
55
> — [Tim Berners-Lee][cite]
66
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-
97
!!! note
108

119
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
3028

3129
# Issues
3230

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-
3731
* 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.
3932
* 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.
4033

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-
5134
# Development
5235

5336
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
206189
[code-of-conduct]: https://www.djangoproject.com/conduct/
207190
[google-group]: https://groups.google.com/forum/?fromgroups#!forum/django-rest-framework
208191
[so-filter]: https://stackexchange.com/filters/66475/rest-framework
209-
[issues]: https://github.com/encode/django-rest-framework/issues?state=open
210192
[pep-8]: https://www.python.org/dev/peps/pep-0008/
211193
[build-status]: ../img/build-status.png
212194
[pull-requests]: https://help.github.com/articles/using-pull-requests

0 commit comments

Comments
 (0)