Skip to content

Commit 021f164

Browse files
resolved conflicts
2 parents 418402b + 490a8b1 commit 021f164

File tree

26 files changed

+133
-75
lines changed

26 files changed

+133
-75
lines changed

.github/contributors.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1272,5 +1272,15 @@
12721272
"name": "Sebastian Reyes Espinosa",
12731273
"github_login": "sebastian-code",
12741274
"twitter_username": "sebastianreyese"
1275+
},
1276+
{
1277+
"name": "jugglinmike",
1278+
"github_login": "jugglinmike",
1279+
"twitter_username": ""
1280+
},
1281+
{
1282+
"name": "monosans",
1283+
"github_login": "monosans",
1284+
"twitter_username": ""
12751285
}
12761286
]

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repos:
99
- id: check-yaml
1010

1111
- repo: https://github.com/asottile/pyupgrade
12-
rev: v2.34.0
12+
rev: v2.37.3
1313
hooks:
1414
- id: pyupgrade
1515
args: [--py39-plus]
@@ -26,7 +26,7 @@ repos:
2626
- id: isort
2727

2828
- repo: https://github.com/PyCQA/flake8
29-
rev: 4.0.1
29+
rev: 5.0.4
3030
hooks:
3131
- id: flake8
3232

CHANGELOG.md

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

44
<!-- GENERATOR_PLACEHOLDER -->
55

6+
## 2022.08.04
7+
8+
### Updated
9+
- Auto-update pre-commit hooks ([#3816](https://github.com/cookiecutter/cookiecutter-django/pull/3816))
10+
- Update flake8 to 5.0.4 ([#3829](https://github.com/cookiecutter/cookiecutter-django/pull/3829))
11+
- Update django-compressor to 4.1 ([#3823](https://github.com/cookiecutter/cookiecutter-django/pull/3823))
12+
- Update flake8-isort to 4.2.0 ([#3828](https://github.com/cookiecutter/cookiecutter-django/pull/3828))
13+
14+
## 2022.08.03
15+
16+
### Updated
17+
- Update django to 3.2.15 ([#3822](https://github.com/cookiecutter/cookiecutter-django/pull/3822))
18+
19+
## 2022.07.29
20+
21+
### Updated
22+
- Update sentry-sdk to 1.9.0 ([#3815](https://github.com/cookiecutter/cookiecutter-django/pull/3815))
23+
24+
## 2022.07.28
25+
26+
### Updated
27+
- Update werkzeug to 2.2.1 ([#3814](https://github.com/cookiecutter/cookiecutter-django/pull/3814))
28+
29+
## 2022.07.27
30+
31+
### Updated
32+
- Update werkzeug to 2.2.0 ([#3813](https://github.com/cookiecutter/cookiecutter-django/pull/3813))
33+
- Update sphinx to 5.1.1 ([#3811](https://github.com/cookiecutter/cookiecutter-django/pull/3811))
34+
- Update drf-spectacular to 0.23.1 ([#3812](https://github.com/cookiecutter/cookiecutter-django/pull/3812))
35+
36+
## 2022.07.26
37+
38+
### Changed
39+
- Switch from `watchgod` to `watchfiles` ([#3791](https://github.com/cookiecutter/cookiecutter-django/pull/3791))
40+
- Change Django settings file used by pylint ([#3806](https://github.com/cookiecutter/cookiecutter-django/pull/3806))
41+
- Simplify database access in tests ([#3807](https://github.com/cookiecutter/cookiecutter-django/pull/3807))
42+
- Provide more context when wating for PostgreSQL takes too long ([#3782](https://github.com/cookiecutter/cookiecutter-django/pull/3782))
43+
### Updated
44+
- Update django-compressor to 4.0 ([#3802](https://github.com/cookiecutter/cookiecutter-django/pull/3802))
45+
- Update flake8-isort to 4.1.2.post0 ([#3809](https://github.com/cookiecutter/cookiecutter-django/pull/3809))
46+
- Update sphinx to 5.1.0 ([#3808](https://github.com/cookiecutter/cookiecutter-django/pull/3808))
47+
- Update sh to 1.14.3 ([#3798](https://github.com/cookiecutter/cookiecutter-django/pull/3798))
48+
- Auto-update pre-commit hooks ([#3780](https://github.com/cookiecutter/cookiecutter-django/pull/3780))
49+
650
## 2022.07.22
751

852
### Updated

CONTRIBUTORS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,13 @@ Listed in alphabetical order.
10061006
</td>
10071007
<td></td>
10081008
</tr>
1009+
<tr>
1010+
<td>jugglinmike</td>
1011+
<td>
1012+
<a href="https://github.com/jugglinmike">jugglinmike</a>
1013+
</td>
1014+
<td></td>
1015+
</tr>
10091016
<tr>
10101017
<td>Jules Cheron</td>
10111018
<td>
@@ -1335,6 +1342,13 @@ Listed in alphabetical order.
13351342
</td>
13361343
<td></td>
13371344
</tr>
1345+
<tr>
1346+
<td>monosans</td>
1347+
<td>
1348+
<a href="https://github.com/monosans">monosans</a>
1349+
</td>
1350+
<td></td>
1351+
</tr>
13381352
<tr>
13391353
<td>mozillazg</td>
13401354
<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.0.2
1+
sphinx==5.1.1
22
sphinx-rtd-theme==1.0.0

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
cookiecutter==2.1.1
2-
sh==1.14.2
2+
sh==1.14.3; sys_platform != "win32"
33
binaryornot==0.4.4
44

55
# Code quality
66
# ------------------------------------------------------------------------------
77
black==22.6.0
88
isort==5.10.1
9-
flake8==4.0.1
10-
flake8-isort==4.1.1
9+
flake8==5.0.4
10+
flake8-isort==4.2.0
1111
pre-commit==2.20.0
1212

1313
# Testing

scripts/create_django_issue.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@
1111
import os
1212
import re
1313
import sys
14+
from collections.abc import Iterable
1415
from pathlib import Path
15-
from typing import TYPE_CHECKING, Any, Iterable, NamedTuple
16+
from typing import TYPE_CHECKING, Any, NamedTuple
1617

1718
import requests
1819
from github import Github

scripts/update_changelog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import datetime as dt
22
import os
33
import re
4+
from collections.abc import Iterable
45
from pathlib import Path
5-
from typing import Iterable
66

77
import git
88
import github.PullRequest

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.07.22"
8+
version = "2022.08.04"
99

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

{{cookiecutter.project_slug}}/.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
- id: check-yaml
1111

1212
- repo: https://github.com/asottile/pyupgrade
13-
rev: v2.34.0
13+
rev: v2.37.3
1414
hooks:
1515
- id: pyupgrade
1616
args: [--py39-plus]
@@ -26,7 +26,7 @@ repos:
2626
- id: isort
2727

2828
- repo: https://github.com/PyCQA/flake8
29-
rev: 4.0.1
29+
rev: 5.0.4
3030
hooks:
3131
- id: flake8
3232
args: ["--config=setup.cfg"]

0 commit comments

Comments
 (0)