From a7d9f4656c0e34335e6200f6d48df70f252ca722 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sun, 5 Jun 2022 18:09:22 -0500 Subject: [PATCH 1/5] Update django-cors-headers from 3.12.0 to 3.13.0 (#3738) --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 5d134cf3b..82130580e 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -42,7 +42,7 @@ django-redis==5.2.0 # https://github.com/jazzband/django-redis {%- if cookiecutter.use_drf == 'y' %} # Django REST Framework djangorestframework==3.13.1 # https://github.com/encode/django-rest-framework -django-cors-headers==3.12.0 # https://github.com/adamchainz/django-cors-headers +django-cors-headers==3.13.0 # https://github.com/adamchainz/django-cors-headers # DRF-spectacular for api documentation drf-spectacular==0.22.1 # https://github.com/tfranzel/drf-spectacular {%- endif %} From 98e6178375b24f45d9ee8f0ce32aefdbbe9d4278 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sun, 5 Jun 2022 18:09:46 -0500 Subject: [PATCH 2/5] Update whitenoise from 6.1.0 to 6.2.0 (#3737) --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 82130580e..0414efe7b 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -10,7 +10,7 @@ rcssmin==1.1.0 # https://github.com/ndparker/rcssmin {%- endif %} argon2-cffi==21.3.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} -whitenoise==6.1.0 # https://github.com/evansd/whitenoise +whitenoise==6.2.0 # https://github.com/evansd/whitenoise {%- endif %} redis==4.3.3 # https://github.com/redis/redis-py {%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %} From 635b1fa3ecbec5013c3c3507211805fde19ce0d0 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 6 Jun 2022 02:41:41 +0000 Subject: [PATCH 3/5] Release 2022.06.05 --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7758abd43..8662d59c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.06.05 + +### Updated +- Update whitenoise to 6.2.0 ([#3737](https://github.com/cookiecutter/cookiecutter-django/pull/3737)) +- Update django-cors-headers to 3.13.0 ([#3738](https://github.com/cookiecutter/cookiecutter-django/pull/3738)) + ## 2022.06.04 ### Updated diff --git a/setup.py b/setup.py index c46be4578..bd9c45b4d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.06.04" +version = "2022.06.05" with open("README.rst") as readme_file: long_description = readme_file.read() From a965a1c1d43104a01b7b4bb58633f7c6863ae92c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jun 2022 11:37:55 +0100 Subject: [PATCH 4/5] Bump pre-commit/action from 2.0.3 to 3.0.0 (#3739) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 121657e2f..8856c0d88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: python-version: "3.9" cache: pip - name: Run pre-commit - uses: pre-commit/action@v2.0.3 + uses: pre-commit/action@v3.0.0 tests: strategy: From 241da33539c3fc8b2dd88337bf2fe385d9e7bcbc Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 7 Jun 2022 02:40:08 +0000 Subject: [PATCH 5/5] Release 2022.06.06 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8662d59c2..82f12b88e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.06.06 + +### Updated +- Bump pre-commit/action from 2.0.3 to 3.0.0 ([#3739](https://github.com/cookiecutter/cookiecutter-django/pull/3739)) + ## 2022.06.05 ### Updated diff --git a/setup.py b/setup.py index bd9c45b4d..84e0661bd 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.06.05" +version = "2022.06.06" with open("README.rst") as readme_file: long_description = readme_file.read()