Skip to content

Commit 7483c6d

Browse files
Merge pull request #59 from mabdullahadeel/cookiecutter-master-2022.09.01
update to upstream v`2022.09.01`
2 parents ae94a98 + 62ac903 commit 7483c6d

File tree

13 files changed

+55
-17
lines changed

13 files changed

+55
-17
lines changed

.github/contributors.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1282,5 +1282,10 @@
12821282
"name": "monosans",
12831283
"github_login": "monosans",
12841284
"twitter_username": ""
1285+
},
1286+
{
1287+
"name": "Marcio Mazza",
1288+
"github_login": "marciomazza",
1289+
"twitter_username": "marciomazza"
12851290
}
12861291
]

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
exclude: hooks/
1717

1818
- repo: https://github.com/psf/black
19-
rev: 22.6.0
19+
rev: 22.8.0
2020
hooks:
2121
- id: black
2222

CHANGELOG.md

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

44
<!-- GENERATOR_PLACEHOLDER -->
55

6+
## 2022.09.01
7+
8+
### Changed
9+
- Add article to README about how to use a hosted DB ([#3844](https://github.com/cookiecutter/cookiecutter-django/pull/3844))
10+
### Updated
11+
- Update sentry-sdk to 1.9.6 ([#3856](https://github.com/cookiecutter/cookiecutter-django/pull/3856))
12+
- Auto-update pre-commit hooks ([#3858](https://github.com/cookiecutter/cookiecutter-django/pull/3858))
13+
- Update black to 22.8.0 ([#3857](https://github.com/cookiecutter/cookiecutter-django/pull/3857))
14+
15+
## 2022.08.26
16+
17+
### Changed
18+
- Fix formatting in docs ([#3850](https://github.com/cookiecutter/cookiecutter-django/pull/3850))
19+
20+
## 2022.08.24
21+
22+
### Updated
23+
- Update django-debug-toolbar to 3.6.0 ([#3847](https://github.com/cookiecutter/cookiecutter-django/pull/3847))
24+
- Update werkzeug to 2.2.2 ([#3846](https://github.com/cookiecutter/cookiecutter-django/pull/3846))
25+
- Update coverage to 6.4.4 ([#3842](https://github.com/cookiecutter/cookiecutter-django/pull/3842))
26+
- Update uvicorn to 0.18.3 ([#3845](https://github.com/cookiecutter/cookiecutter-django/pull/3845))
27+
- Update sentry-sdk to 1.9.5 ([#3841](https://github.com/cookiecutter/cookiecutter-django/pull/3841))
28+
- Update flower to 1.2.0 ([#3836](https://github.com/cookiecutter/cookiecutter-django/pull/3836))
29+
- Update django-storages to 1.13.1 ([#3833](https://github.com/cookiecutter/cookiecutter-django/pull/3833))
30+
631
## 2022.08.15
732

833
### Updated

CONTRIBUTORS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1209,6 +1209,13 @@ Listed in alphabetical order.
12091209
</td>
12101210
<td></td>
12111211
</tr>
1212+
<tr>
1213+
<td>Marcio Mazza</td>
1214+
<td>
1215+
<a href="https://github.com/marciomazza">marciomazza</a>
1216+
</td>
1217+
<td>marciomazza</td>
1218+
</tr>
12121219
<tr>
12131220
<td>Martin Blech</td>
12141221
<td>

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ experience better.
235235

236236
## Articles
237237

238+
- [Cookiecutter Django With Amazon RDS](https://haseeburrehman.com/posts/cookiecutter-django-with-amazon-rds/) - Apr, 2, 2021
238239
- [Using cookiecutter-django with Google Cloud Storage](https://ahhda.github.io/cloud/gce/django/2019/03/12/using-django-cookiecutter-cloud-storage.html) - Mar. 12, 2019
239240
- [cookiecutter-django with Nginx, Route 53 and ELB](https://msaizar.com/blog/cookiecutter-django-nginx-route-53-and-elb/) - Feb. 12, 2018
240241
- [cookiecutter-django and Amazon RDS](https://msaizar.com/blog/cookiecutter-django-and-amazon-rds/) - Feb. 7, 2018

docs/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FAQ
66
Why is there a django.contrib.sites directory in Cookiecutter Django?
77
---------------------------------------------------------------------
88

9-
It is there to add a migration so you don't have to manually change the ``sites.Site`` record from ``example.com`` to whatever your domain is. Instead, your ``{{cookiecutter.domain_name}}`` and {{cookiecutter.project_name}} value is placed by **Cookiecutter** in the domain and name fields respectively.
9+
It is there to add a migration so you don't have to manually change the ``sites.Site`` record from ``example.com`` to whatever your domain is. Instead, your ``{{cookiecutter.domain_name}}`` and ``{{cookiecutter.project_name}}`` value is placed by **Cookiecutter** in the domain and name fields respectively.
1010

1111
See `0003_set_site_domain_and_name.py`_.
1212

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ binaryornot==0.4.4
44

55
# Code quality
66
# ------------------------------------------------------------------------------
7-
black==22.6.0
7+
black==22.8.0
88
isort==5.10.1
99
flake8==5.0.4
1010
flake8-isort==4.2.0
@@ -13,7 +13,7 @@ pre-commit==2.20.0
1313
# Testing
1414
# ------------------------------------------------------------------------------
1515
tox==3.25.1
16-
pytest==7.1.2
16+
pytest==7.1.3
1717
pytest-cookies==0.6.1
1818
pytest-instafail==0.4.2
1919
pyyaml==6.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.08.15"
8+
version = "2022.09.01"
99

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
args: [--py39-plus]
1717

1818
- repo: https://github.com/psf/black
19-
rev: 22.6.0
19+
rev: 22.8.0
2020
hooks:
2121
- id: black
2222

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ hiredis==2.0.0 # https://github.com/redis/hiredis-py
2020
celery==5.2.7 # pyup: < 6.0 # https://github.com/celery/celery
2121
django-celery-beat==2.3.0 # https://github.com/celery/django-celery-beat
2222
{%- if cookiecutter.use_docker == 'y' %}
23-
flower==1.1.0 # https://github.com/mher/flower
23+
flower==1.2.0 # https://github.com/mher/flower
2424
{%- endif %}
2525
{%- endif %}
2626
{%- if cookiecutter.use_async == 'y' %}
27-
uvicorn[standard]==0.18.2 # https://github.com/encode/uvicorn
27+
uvicorn[standard]==0.18.3 # https://github.com/encode/uvicorn
2828
{%- endif %}
2929

3030
# Django

0 commit comments

Comments
 (0)