Skip to content

Commit ffadde9

Browse files
authored
Removed reference to GitHub Issues and Discussions (#9660)
1 parent 6f274ab commit ffadde9

File tree

9 files changed

+5
-52
lines changed

9 files changed

+5
-52
lines changed

Diff for: .github/ISSUE_TEMPLATE/1-issue.md

-17
This file was deleted.

Diff for: .github/ISSUE_TEMPLATE/config.yml

-6
This file was deleted.

Diff for: CONTRIBUTING.md

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

Diff for: docs/api-guide/fields.md

+1-1
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

Diff for: docs/api-guide/throttling.md

+1-2
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

Diff for: docs/api-guide/validators.md

+1-1
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

Diff for: docs/community/contributing.md

-18
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

Diff for: docs/community/project-management.md

-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ Further notes for maintainers:
3434
* Code changes should come in the form of a pull request - do not push directly to master.
3535
* Maintainers should typically not merge their own pull requests.
3636
* Each issue/pull request should have exactly one label once triaged.
37-
* Search for un-triaged issues with [is:open no:label][un-triaged].
3837

3938
---
4039

@@ -157,7 +156,6 @@ The following issues still need to be addressed:
157156
* Document ownership and management of the security mailing list.
158157

159158
[bus-factor]: https://en.wikipedia.org/wiki/Bus_factor
160-
[un-triaged]: https://github.com/encode/django-rest-framework/issues?q=is%3Aopen+no%3Alabel
161159
[transifex-project]: https://www.transifex.com/projects/p/django-rest-framework/
162160
[transifex-client]: https://pypi.org/project/transifex-client/
163161
[translation-memory]: http://docs.transifex.com/guides/tm#let-tm-automatically-populate-translations

Diff for: docs/community/third-party-packages.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ We suggest adding your package to the [REST Framework][rest-framework-grid] grid
3232

3333
#### Adding to the Django REST framework docs
3434

35-
Create a [Pull Request][drf-create-pr] or [Issue][drf-create-issue] on GitHub, and we'll add a link to it from the main REST framework documentation. You can add your package under **Third party packages** of the API Guide section that best applies, like [Authentication][authentication] or [Permissions][permissions]. You can also link your package under the [Third Party Packages][third-party-packages] section.
35+
Create a [Pull Request][drf-create-pr] on GitHub, and we'll add a link to it from the main REST framework documentation. You can add your package under **Third party packages** of the API Guide section that best applies, like [Authentication][authentication] or [Permissions][permissions]. You can also link your package under the [Third Party Packages][third-party-packages] section.
3636

3737
#### Announce on the discussion group.
3838

@@ -44,7 +44,7 @@ Django REST Framework has a growing community of developers, packages, and resou
4444

4545
Check out a grid detailing all the packages and ecosystem around Django REST Framework at [Django Packages][rest-framework-grid].
4646

47-
To submit new content, [open an issue][drf-create-issue] or [create a pull request][drf-create-pr].
47+
To submit new content, [create a pull request][drf-create-pr].
4848

4949
## Async Support
5050

@@ -174,7 +174,6 @@ To submit new content, [open an issue][drf-create-issue] or [create a pull reque
174174
[drf-compat]: https://github.com/encode/django-rest-framework/blob/master/rest_framework/compat.py
175175
[rest-framework-grid]: https://www.djangopackages.com/grids/g/django-rest-framework/
176176
[drf-create-pr]: https://github.com/encode/django-rest-framework/compare
177-
[drf-create-issue]: https://github.com/encode/django-rest-framework/issues/new
178177
[authentication]: ../api-guide/authentication.md
179178
[permissions]: ../api-guide/permissions.md
180179
[third-party-packages]: ../topics/third-party-packages/#existing-third-party-packages

0 commit comments

Comments
 (0)