From 8e052bc37e2ba54d0fa9785bee445f72a5717280 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 31 Aug 2023 02:10:23 +0000 Subject: [PATCH 01/16] Release 2023.08.30 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e53b7f46a..e3021a073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.08.30 + + +### Updated + +- Update django-environ to 0.11.0 ([#4548](https://github.com/cookiecutter/cookiecutter-django/pull/4548)) + ## 2023.08.29 diff --git a/setup.py b/setup.py index cd763a410..262f55b40 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.08.29" +version = "2023.08.30" with open("README.md") as readme_file: long_description = readme_file.read() From 0f676416551fff8d81542e942a66b3851626b777 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 31 Aug 2023 10:02:12 -0500 Subject: [PATCH 02/16] Update celery from 5.3.1 to 5.3.3 (#4553) --- {{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 a1658167f..2fcbd4837 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -16,7 +16,7 @@ redis==5.0.0 # https://github.com/redis/redis-py hiredis==2.2.3 # https://github.com/redis/hiredis-py {%- endif %} {%- if cookiecutter.use_celery == "y" %} -celery==5.3.1 # pyup: < 6.0 # https://github.com/celery/celery +celery==5.3.3 # pyup: < 6.0 # https://github.com/celery/celery django-celery-beat==2.5.0 # https://github.com/celery/django-celery-beat {%- if cookiecutter.use_docker == 'y' %} flower==2.0.1 # https://github.com/mher/flower From 4169c06e5d7a00502c70cbb83d67ae4b7a8ab0a6 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 31 Aug 2023 13:02:02 -0500 Subject: [PATCH 03/16] Update django-allauth from 0.55.0 to 0.55.2 (#4549) --- {{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 2fcbd4837..7a5a8f80c 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -31,7 +31,7 @@ uvicorn[standard]==0.23.2 # https://github.com/encode/uvicorn django==4.2.4 # pyup: < 5.0 # https://www.djangoproject.com/ django-environ==0.11.0 # https://github.com/joke2k/django-environ django-model-utils==4.3.1 # https://github.com/jazzband/django-model-utils -django-allauth==0.55.0 # https://github.com/pennersr/django-allauth +django-allauth==0.55.2 # https://github.com/pennersr/django-allauth django-crispy-forms==2.0 # https://github.com/django-crispy-forms/django-crispy-forms crispy-bootstrap5==0.7 # https://github.com/django-crispy-forms/crispy-bootstrap5 {%- if cookiecutter.frontend_pipeline == 'Django Compressor' %} From a46c0e1f6955f39da0bacbf52da760d79c5579c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 31 Aug 2023 19:02:24 +0100 Subject: [PATCH 04/16] Auto-update pre-commit hooks (#4550) Co-authored-by: browniebroke --- .pre-commit-config.yaml | 2 +- {{cookiecutter.project_slug}}/.pre-commit-config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 87c796b0c..6243406b0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,7 +17,7 @@ repos: - id: detect-private-key - repo: https://github.com/pre-commit/mirrors-prettier - rev: "v3.0.2" + rev: "v3.0.3" hooks: - id: prettier args: ["--tab-width", "2"] diff --git a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml index 0b68f4e2b..2a03db795 100644 --- a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml @@ -18,7 +18,7 @@ repos: - id: detect-private-key - repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.0.2 + rev: v3.0.3 hooks: - id: prettier args: ['--tab-width', '2', '--single-quote'] From 19855818c816706d5a22fa930a12f6320c070b38 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 1 Sep 2023 02:12:47 +0000 Subject: [PATCH 05/16] Release 2023.08.31 --- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3021a073..506a40b2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.08.31 + + +### Updated + +- Auto-update pre-commit hooks ([#4550](https://github.com/cookiecutter/cookiecutter-django/pull/4550)) + +- Update django-allauth to 0.55.2 ([#4549](https://github.com/cookiecutter/cookiecutter-django/pull/4549)) + +- Update celery to 5.3.3 ([#4553](https://github.com/cookiecutter/cookiecutter-django/pull/4553)) + ## 2023.08.30 diff --git a/setup.py b/setup.py index 262f55b40..e9931cf86 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.08.30" +version = "2023.08.31" with open("README.md") as readme_file: long_description = readme_file.read() From 759508cb459f74680f822d0416bb77c71316ab1e Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Fri, 1 Sep 2023 02:26:10 -0500 Subject: [PATCH 06/16] Update gitpython from 3.1.32 to 3.1.33 (#4555) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index da008e6f4..b7af3c083 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,6 +23,6 @@ pyyaml==6.0.1 # Scripting # ------------------------------------------------------------------------------ PyGithub==1.59.1 -gitpython==3.1.32 +gitpython==3.1.33 jinja2==3.1.2 requests==2.31.0 From 7a23ea9e360c91fd7bbe4054a4e187edff56f877 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 2 Sep 2023 02:07:26 +0000 Subject: [PATCH 07/16] Release 2023.09.01 --- CHANGELOG.md | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 506a40b2c..b99ab0045 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.09.01 + + ## 2023.08.31 diff --git a/setup.py b/setup.py index e9931cf86..b0f11511b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.08.31" +version = "2023.09.01" with open("README.md") as readme_file: long_description = readme_file.read() From 62d3cbf4182406741e4ddad1d2185fa5919988a1 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sat, 2 Sep 2023 00:00:36 -0500 Subject: [PATCH 08/16] Update tox from 4.9.0 to 4.11.1 (#4557) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b7af3c083..da7c4d6b1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,7 +13,7 @@ pre-commit==3.3.3 # Testing # ------------------------------------------------------------------------------ -tox==4.9.0 +tox==4.11.1 pytest==7.4.0 pytest-xdist==3.3.1 pytest-cookies==0.7.0 From e9b3b221568be2df7fe50f3a3c0d626208676765 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sat, 2 Sep 2023 00:00:55 -0500 Subject: [PATCH 09/16] Update django-environ from 0.11.0 to 0.11.2 (#4558) --- {{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 7a5a8f80c..88c9af455 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -29,7 +29,7 @@ uvicorn[standard]==0.23.2 # https://github.com/encode/uvicorn # Django # ------------------------------------------------------------------------------ django==4.2.4 # pyup: < 5.0 # https://www.djangoproject.com/ -django-environ==0.11.0 # https://github.com/joke2k/django-environ +django-environ==0.11.2 # https://github.com/joke2k/django-environ django-model-utils==4.3.1 # https://github.com/jazzband/django-model-utils django-allauth==0.55.2 # https://github.com/pennersr/django-allauth django-crispy-forms==2.0 # https://github.com/django-crispy-forms/django-crispy-forms From 22c18ee6cc28ebb5286359fc1aa1e73dd9fa53e4 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sat, 2 Sep 2023 06:58:37 -0500 Subject: [PATCH 10/16] Update gitpython from 3.1.33 to 3.1.34 (#4559) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index da7c4d6b1..03b1c9253 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,6 +23,6 @@ pyyaml==6.0.1 # Scripting # ------------------------------------------------------------------------------ PyGithub==1.59.1 -gitpython==3.1.33 +gitpython==3.1.34 jinja2==3.1.2 requests==2.31.0 From 80f6d46e9ad53e822de1228c52b5e431f500b59b Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sat, 2 Sep 2023 17:13:09 -0500 Subject: [PATCH 11/16] Update pre-commit to 3.4.0 (#4560) * Update pre-commit from 3.3.3 to 3.4.0 * Update pre-commit from 3.3.3 to 3.4.0 --- requirements.txt | 2 +- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 03b1c9253..eeb5cba72 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,7 @@ isort==5.12.0 flake8==6.1.0 django-upgrade==1.14.1 djlint==1.32.1 -pre-commit==3.3.3 +pre-commit==3.4.0 # Testing # ------------------------------------------------------------------------------ diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 20f6b41d1..4c8568565 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -37,7 +37,7 @@ pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django {%- if cookiecutter.use_celery == 'y' %} pylint-celery==0.3 # https://github.com/PyCQA/pylint-celery {%- endif %} -pre-commit==3.3.3 # https://github.com/pre-commit/pre-commit +pre-commit==3.4.0 # https://github.com/pre-commit/pre-commit # Django # ------------------------------------------------------------------------------ From d19d10639aa47e3748399c5fc431e51d2772ec9e Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sat, 2 Sep 2023 17:13:39 -0500 Subject: [PATCH 12/16] Update pytest to 7.4.1 (#4561) * Update pytest from 7.4.0 to 7.4.1 * Update pytest from 7.4.0 to 7.4.1 --- requirements.txt | 2 +- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index eeb5cba72..019537110 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,7 +14,7 @@ pre-commit==3.4.0 # Testing # ------------------------------------------------------------------------------ tox==4.11.1 -pytest==7.4.0 +pytest==7.4.1 pytest-xdist==3.3.1 pytest-cookies==0.7.0 pytest-instafail==0.5.0 diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 4c8568565..bb125cc4b 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -15,7 +15,7 @@ watchfiles==0.20.0 # https://github.com/samuelcolvin/watchfiles # ------------------------------------------------------------------------------ mypy==1.4.1 # https://github.com/python/mypy django-stubs[compatible-mypy]==4.2.3 # https://github.com/typeddjango/django-stubs -pytest==7.4.0 # https://github.com/pytest-dev/pytest +pytest==7.4.1 # https://github.com/pytest-dev/pytest pytest-sugar==0.9.7 # https://github.com/Frozenball/pytest-sugar {%- if cookiecutter.use_drf == "y" %} djangorestframework-stubs[compatible-mypy]==3.14.2 # https://github.com/typeddjango/djangorestframework-stubs From 4940fdd79f45154d1230ecea779c468355a20e5d Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 3 Sep 2023 02:10:29 +0000 Subject: [PATCH 13/16] Release 2023.09.02 --- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b99ab0045..fd0bb2162 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.09.02 + + +### Updated + +- Update pytest to 7.4.1 ([#4561](https://github.com/cookiecutter/cookiecutter-django/pull/4561)) + +- Update pre-commit to 3.4.0 ([#4560](https://github.com/cookiecutter/cookiecutter-django/pull/4560)) + +- Update django-environ to 0.11.2 ([#4558](https://github.com/cookiecutter/cookiecutter-django/pull/4558)) + ## 2023.09.01 diff --git a/setup.py b/setup.py index b0f11511b..ec68126a1 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.09.01" +version = "2023.09.02" with open("README.md") as readme_file: long_description = readme_file.read() From c7cbd19be801447d625c6df98117d1d7fe757bab Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sun, 3 Sep 2023 17:08:14 -0500 Subject: [PATCH 14/16] Update celery from 5.3.3 to 5.3.4 (#4562) --- {{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 88c9af455..e23e07aa1 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -16,7 +16,7 @@ redis==5.0.0 # https://github.com/redis/redis-py hiredis==2.2.3 # https://github.com/redis/hiredis-py {%- endif %} {%- if cookiecutter.use_celery == "y" %} -celery==5.3.3 # pyup: < 6.0 # https://github.com/celery/celery +celery==5.3.4 # pyup: < 6.0 # https://github.com/celery/celery django-celery-beat==2.5.0 # https://github.com/celery/django-celery-beat {%- if cookiecutter.use_docker == 'y' %} flower==2.0.1 # https://github.com/mher/flower From 80883a5aab80a2705ab8cd287e556d7b0a45e908 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 4 Sep 2023 02:10:33 +0000 Subject: [PATCH 15/16] Release 2023.09.03 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd0bb2162..aba5b3c5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.09.03 + + +### Updated + +- Update celery to 5.3.4 ([#4562](https://github.com/cookiecutter/cookiecutter-django/pull/4562)) + ## 2023.09.02 diff --git a/setup.py b/setup.py index ec68126a1..586e516fe 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.09.02" +version = "2023.09.03" with open("README.md") as readme_file: long_description = readme_file.read() From 9d6c754c63c711b280a8b654904c3d71aa335dad Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Mon, 4 Sep 2023 11:17:39 -0500 Subject: [PATCH 16/16] Update django from 4.2.4 to 4.2.5 (#4563) --- {{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 e23e07aa1..6ab01b791 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -28,7 +28,7 @@ uvicorn[standard]==0.23.2 # https://github.com/encode/uvicorn # Django # ------------------------------------------------------------------------------ -django==4.2.4 # pyup: < 5.0 # https://www.djangoproject.com/ +django==4.2.5 # pyup: < 5.0 # https://www.djangoproject.com/ django-environ==0.11.2 # https://github.com/joke2k/django-environ django-model-utils==4.3.1 # https://github.com/jazzband/django-model-utils django-allauth==0.55.2 # https://github.com/pennersr/django-allauth