Limit creation of new issues and clarify bug report process

This commit is contained in:
Bruno Alla 2025-04-27 14:00:03 +01:00
parent 376026ce35
commit 1938fe5d22
2 changed files with 12 additions and 0 deletions

11
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@ -0,0 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: Bug report
url: https://github.com/encode/django-rest-framework/compare
about: To report a bug, please open a pull request with a failing test reproducing the problem.
- name: New features
url: https://www.django-rest-framework.org/community/contributing/
about: |
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.

View File

@ -30,6 +30,7 @@ The [Django code of conduct][code-of-conduct] gives a fuller set of guidelines f
* 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.
* 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.
* To report a bug, open a pull request with a failing test. Apart from the above categories, we mainly focus on fixing regression bugs: things that used to work but recently stopped working. Anything else will be treated as a feature request.
# Development