Skip to content

Commit 1db7745

Browse files
Merge branch 'cookiecutter:master' into master
2 parents a00e504 + 15487a1 commit 1db7745

File tree

8 files changed

+46
-8
lines changed

8 files changed

+46
-8
lines changed

.github/contributors.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,5 +1292,10 @@
12921292
"name": "Brandon Rumiser",
12931293
"github_login": "brumiser1550",
12941294
"twitter_username": ""
1295+
},
1296+
{
1297+
"name": "krati yadav",
1298+
"github_login": "krati5",
1299+
"twitter_username": ""
12951300
}
12961301
]

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
33

44
<!-- GENERATOR_PLACEHOLDER -->
55

6+
## 2022.09.30
7+
8+
### Updated
9+
- Update coverage to 6.5.0 ([#3890](https://github.com/cookiecutter/cookiecutter-django/pull/3890))
10+
- Update mypy to 0.981 ([#3889](https://github.com/cookiecutter/cookiecutter-django/pull/3889))
11+
- Update sentry-sdk to 1.9.9 ([#3888](https://github.com/cookiecutter/cookiecutter-django/pull/3888))
12+
- Update sphinx to 5.2.3 ([#3887](https://github.com/cookiecutter/cookiecutter-django/pull/3887))
13+
14+
## 2022.09.29
15+
16+
### Changed
17+
- Remove outdated &amp; optional Sendgrid settings from production config ([#3885](https://github.com/cookiecutter/cookiecutter-django/pull/3885))
18+
19+
## 2022.09.27
20+
21+
### Updated
22+
- Update sphinx to 5.2.2 ([#3884](https://github.com/cookiecutter/cookiecutter-django/pull/3884))
23+
24+
## 2022.09.26
25+
26+
### Updated
27+
- Update drf-spectacular to 0.24.2 ([#3882](https://github.com/cookiecutter/cookiecutter-django/pull/3882))
28+
- Update djangorestframework to 3.14.0 ([#3881](https://github.com/cookiecutter/cookiecutter-django/pull/3881))
29+
- Update django-debug-toolbar to 3.7.0 ([#3878](https://github.com/cookiecutter/cookiecutter-django/pull/3878))
30+
- Auto-update pre-commit hooks ([#3877](https://github.com/cookiecutter/cookiecutter-django/pull/3877))
31+
- Bump stefanzweifel/git-auto-commit-action from 4.14.1 to 4.15.0 ([#3880](https://github.com/cookiecutter/cookiecutter-django/pull/3880))
32+
- Update sphinx to 5.2.1 ([#3879](https://github.com/cookiecutter/cookiecutter-django/pull/3879))
33+
634
## 2022.09.24
735

836
### Fixed

CONTRIBUTORS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1104,6 +1104,13 @@ Listed in alphabetical order.
11041104
</td>
11051105
<td></td>
11061106
</tr>
1107+
<tr>
1108+
<td>krati yadav</td>
1109+
<td>
1110+
<a href="https://github.com/krati5">krati5</a>
1111+
</td>
1112+
<td></td>
1113+
</tr>
11071114
<tr>
11081115
<td>Krzysztof Szumny</td>
11091116
<td>

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sphinx==5.2.1
1+
sphinx==5.2.3
22
sphinx-rtd-theme==1.0.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from distutils.core import setup
66

77
# We use calendar versioning
8-
version = "2022.09.24"
8+
version = "2022.09.30"
99

1010
with open("README.rst") as readme_file:
1111
long_description = readme_file.read()

{{cookiecutter.project_slug}}/config/settings/production.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,6 @@
189189
EMAIL_BACKEND = "anymail.backends.sendgrid.EmailBackend"
190190
ANYMAIL = {
191191
"SENDGRID_API_KEY": env("SENDGRID_API_KEY"),
192-
"SENDGRID_GENERATE_MESSAGE_ID": env("SENDGRID_GENERATE_MESSAGE_ID"),
193-
"SENDGRID_MERGE_FIELD_FORMAT": env("SENDGRID_MERGE_FIELD_FORMAT"),
194192
"SENDGRID_API_URL": env("SENDGRID_API_URL", default="https://api.sendgrid.com/v3/"),
195193
}
196194
{%- elif cookiecutter.mail_service == 'SendinBlue' %}

{{cookiecutter.project_slug}}/requirements/local.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ watchfiles==0.17.0 # https://github.com/samuelcolvin/watchfiles
1818

1919
# Testing
2020
# ------------------------------------------------------------------------------
21-
mypy==0.971 # https://github.com/python/mypy
21+
mypy==0.981 # https://github.com/python/mypy
2222
django-stubs==1.12.0 # https://github.com/typeddjango/django-stubs
2323
pytest==7.1.3 # https://github.com/pytest-dev/pytest
2424
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
2828

2929
# Documentation
3030
# ------------------------------------------------------------------------------
31-
sphinx==5.2.1 # https://github.com/sphinx-doc/sphinx
31+
sphinx==5.2.3 # https://github.com/sphinx-doc/sphinx
3232
sphinx-autobuild==2021.3.14 # https://github.com/GaretJax/sphinx-autobuild
3333

3434
# Code quality
3535
# ------------------------------------------------------------------------------
3636
flake8==5.0.4 # https://github.com/PyCQA/flake8
3737
flake8-isort==4.2.0 # https://github.com/gforcada/flake8-isort
38-
coverage==6.4.4 # https://github.com/nedbat/coveragepy
38+
coverage==6.5.0 # https://github.com/nedbat/coveragepy
3939
black==22.8.0 # https://github.com/psf/black
4040
pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
4141
{%- if cookiecutter.use_celery == 'y' %}

{{cookiecutter.project_slug}}/requirements/production.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ mysqlclient==2.1.0 # https://github.com/PyMySQL/mysqlclient
1212
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
1313
{%- endif %}
1414
{%- if cookiecutter.use_sentry == "y" %}
15-
sentry-sdk==1.9.8 # https://github.com/getsentry/sentry-python
15+
sentry-sdk==1.9.9 # https://github.com/getsentry/sentry-python
1616
{%- endif %}
1717
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
1818
hiredis==2.0.0 # https://github.com/redis/hiredis-py

0 commit comments

Comments
 (0)