mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-16 18:04:50 +03:00
Merge branch 'cookiecutter:master' into master
This commit is contained in:
commit
1db7745e2e
5
.github/contributors.json
vendored
5
.github/contributors.json
vendored
|
@ -1292,5 +1292,10 @@
|
||||||
"name": "Brandon Rumiser",
|
"name": "Brandon Rumiser",
|
||||||
"github_login": "brumiser1550",
|
"github_login": "brumiser1550",
|
||||||
"twitter_username": ""
|
"twitter_username": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "krati yadav",
|
||||||
|
"github_login": "krati5",
|
||||||
|
"twitter_username": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -3,6 +3,34 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
|
||||||
|
|
||||||
<!-- GENERATOR_PLACEHOLDER -->
|
<!-- GENERATOR_PLACEHOLDER -->
|
||||||
|
|
||||||
|
## 2022.09.30
|
||||||
|
|
||||||
|
### Updated
|
||||||
|
- Update coverage to 6.5.0 ([#3890](https://github.com/cookiecutter/cookiecutter-django/pull/3890))
|
||||||
|
- Update mypy to 0.981 ([#3889](https://github.com/cookiecutter/cookiecutter-django/pull/3889))
|
||||||
|
- Update sentry-sdk to 1.9.9 ([#3888](https://github.com/cookiecutter/cookiecutter-django/pull/3888))
|
||||||
|
- Update sphinx to 5.2.3 ([#3887](https://github.com/cookiecutter/cookiecutter-django/pull/3887))
|
||||||
|
|
||||||
|
## 2022.09.29
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Remove outdated & optional Sendgrid settings from production config ([#3885](https://github.com/cookiecutter/cookiecutter-django/pull/3885))
|
||||||
|
|
||||||
|
## 2022.09.27
|
||||||
|
|
||||||
|
### Updated
|
||||||
|
- Update sphinx to 5.2.2 ([#3884](https://github.com/cookiecutter/cookiecutter-django/pull/3884))
|
||||||
|
|
||||||
|
## 2022.09.26
|
||||||
|
|
||||||
|
### Updated
|
||||||
|
- Update drf-spectacular to 0.24.2 ([#3882](https://github.com/cookiecutter/cookiecutter-django/pull/3882))
|
||||||
|
- Update djangorestframework to 3.14.0 ([#3881](https://github.com/cookiecutter/cookiecutter-django/pull/3881))
|
||||||
|
- Update django-debug-toolbar to 3.7.0 ([#3878](https://github.com/cookiecutter/cookiecutter-django/pull/3878))
|
||||||
|
- Auto-update pre-commit hooks ([#3877](https://github.com/cookiecutter/cookiecutter-django/pull/3877))
|
||||||
|
- Bump stefanzweifel/git-auto-commit-action from 4.14.1 to 4.15.0 ([#3880](https://github.com/cookiecutter/cookiecutter-django/pull/3880))
|
||||||
|
- Update sphinx to 5.2.1 ([#3879](https://github.com/cookiecutter/cookiecutter-django/pull/3879))
|
||||||
|
|
||||||
## 2022.09.24
|
## 2022.09.24
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -1104,6 +1104,13 @@ Listed in alphabetical order.
|
||||||
</td>
|
</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>krati yadav</td>
|
||||||
|
<td>
|
||||||
|
<a href="https://github.com/krati5">krati5</a>
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Krzysztof Szumny</td>
|
<td>Krzysztof Szumny</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
sphinx==5.2.1
|
sphinx==5.2.3
|
||||||
sphinx-rtd-theme==1.0.0
|
sphinx-rtd-theme==1.0.0
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ except ImportError:
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
# We use calendar versioning
|
# We use calendar versioning
|
||||||
version = "2022.09.24"
|
version = "2022.09.30"
|
||||||
|
|
||||||
with open("README.rst") as readme_file:
|
with open("README.rst") as readme_file:
|
||||||
long_description = readme_file.read()
|
long_description = readme_file.read()
|
||||||
|
|
|
@ -189,8 +189,6 @@ ANYMAIL = {
|
||||||
EMAIL_BACKEND = "anymail.backends.sendgrid.EmailBackend"
|
EMAIL_BACKEND = "anymail.backends.sendgrid.EmailBackend"
|
||||||
ANYMAIL = {
|
ANYMAIL = {
|
||||||
"SENDGRID_API_KEY": env("SENDGRID_API_KEY"),
|
"SENDGRID_API_KEY": env("SENDGRID_API_KEY"),
|
||||||
"SENDGRID_GENERATE_MESSAGE_ID": env("SENDGRID_GENERATE_MESSAGE_ID"),
|
|
||||||
"SENDGRID_MERGE_FIELD_FORMAT": env("SENDGRID_MERGE_FIELD_FORMAT"),
|
|
||||||
"SENDGRID_API_URL": env("SENDGRID_API_URL", default="https://api.sendgrid.com/v3/"),
|
"SENDGRID_API_URL": env("SENDGRID_API_URL", default="https://api.sendgrid.com/v3/"),
|
||||||
}
|
}
|
||||||
{%- elif cookiecutter.mail_service == 'SendinBlue' %}
|
{%- elif cookiecutter.mail_service == 'SendinBlue' %}
|
||||||
|
|
|
@ -18,7 +18,7 @@ watchfiles==0.17.0 # https://github.com/samuelcolvin/watchfiles
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
mypy==0.971 # https://github.com/python/mypy
|
mypy==0.981 # https://github.com/python/mypy
|
||||||
django-stubs==1.12.0 # https://github.com/typeddjango/django-stubs
|
django-stubs==1.12.0 # https://github.com/typeddjango/django-stubs
|
||||||
pytest==7.1.3 # https://github.com/pytest-dev/pytest
|
pytest==7.1.3 # https://github.com/pytest-dev/pytest
|
||||||
pytest-sugar==0.9.5 # https://github.com/Frozenball/pytest-sugar
|
pytest-sugar==0.9.5 # https://github.com/Frozenball/pytest-sugar
|
||||||
|
@ -28,14 +28,14 @@ djangorestframework-stubs==1.7.0 # https://github.com/typeddjango/djangorestfra
|
||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
sphinx==5.2.1 # https://github.com/sphinx-doc/sphinx
|
sphinx==5.2.3 # https://github.com/sphinx-doc/sphinx
|
||||||
sphinx-autobuild==2021.3.14 # https://github.com/GaretJax/sphinx-autobuild
|
sphinx-autobuild==2021.3.14 # https://github.com/GaretJax/sphinx-autobuild
|
||||||
|
|
||||||
# Code quality
|
# Code quality
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
flake8==5.0.4 # https://github.com/PyCQA/flake8
|
flake8==5.0.4 # https://github.com/PyCQA/flake8
|
||||||
flake8-isort==4.2.0 # https://github.com/gforcada/flake8-isort
|
flake8-isort==4.2.0 # https://github.com/gforcada/flake8-isort
|
||||||
coverage==6.4.4 # https://github.com/nedbat/coveragepy
|
coverage==6.5.0 # https://github.com/nedbat/coveragepy
|
||||||
black==22.8.0 # https://github.com/psf/black
|
black==22.8.0 # https://github.com/psf/black
|
||||||
pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
|
pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
|
||||||
{%- if cookiecutter.use_celery == 'y' %}
|
{%- if cookiecutter.use_celery == 'y' %}
|
||||||
|
|
|
@ -12,7 +12,7 @@ mysqlclient==2.1.0 # https://github.com/PyMySQL/mysqlclient
|
||||||
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
|
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- if cookiecutter.use_sentry == "y" %}
|
{%- if cookiecutter.use_sentry == "y" %}
|
||||||
sentry-sdk==1.9.8 # https://github.com/getsentry/sentry-python
|
sentry-sdk==1.9.9 # https://github.com/getsentry/sentry-python
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
|
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
|
||||||
hiredis==2.0.0 # https://github.com/redis/hiredis-py
|
hiredis==2.0.0 # https://github.com/redis/hiredis-py
|
||||||
|
|
Loading…
Reference in New Issue
Block a user