From 89a1efc2a34a58ca52e0035998e3bbd3ab62c19e Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 11 Aug 2024 00:00:14 +0100 Subject: [PATCH 1/6] Update gunicorn from 22.0.0 to 23.0.0 --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 5894e239b..3d94e20e1 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -2,7 +2,7 @@ -r base.txt -gunicorn==22.0.0 # https://github.com/benoitc/gunicorn +gunicorn==23.0.0 # https://github.com/benoitc/gunicorn psycopg[c]==3.2.1 # https://github.com/psycopg/psycopg {%- if cookiecutter.use_whitenoise == 'n' %} Collectfasta==3.2.0 # https://github.com/jasongi/collectfasta From 1fc66d0ecf898f8fb6684940eb52375851b31762 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 13 Aug 2024 02:20:35 +0000 Subject: [PATCH 2/6] Release 2024.08.12 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8ba95b38..b6dc3d743 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2024.08.12 + + +### Updated + +- Update gunicorn to 23.0.0 ([#5294](https://github.com/cookiecutter/cookiecutter-django/pull/5294)) + ## 2024.08.09 diff --git a/setup.py b/setup.py index ef3eb13ad..fef722d89 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.08.09" +version = "2024.08.12" with open("README.md") as readme_file: long_description = readme_file.read() From 411225bf6773c2acfc7c11f05fa932afc92d0e60 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 13 Aug 2024 19:42:22 +1000 Subject: [PATCH 3/6] Update uvicorn from 0.30.5 to 0.30.6 --- {{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 7e6031fe3..37234ae0d 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -23,7 +23,7 @@ flower==2.0.1 # https://github.com/mher/flower {%- endif %} {%- endif %} {%- if cookiecutter.use_async == 'y' %} -uvicorn[standard]==0.30.5 # https://github.com/encode/uvicorn +uvicorn[standard]==0.30.6 # https://github.com/encode/uvicorn uvicorn-worker==0.2.0 # https://github.com/Kludex/uvicorn-worker {%- endif %} From 623007f7697c795aac7e34e200bac924c37fb407 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 14 Aug 2024 02:05:35 +1000 Subject: [PATCH 4/6] Update sentry-sdk from 2.12.0 to 2.13.0 --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 3d94e20e1..824927ca6 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -8,7 +8,7 @@ psycopg[c]==3.2.1 # https://github.com/psycopg/psycopg Collectfasta==3.2.0 # https://github.com/jasongi/collectfasta {%- endif %} {%- if cookiecutter.use_sentry == "y" %} -sentry-sdk==2.12.0 # https://github.com/getsentry/sentry-python +sentry-sdk==2.13.0 # https://github.com/getsentry/sentry-python {%- endif %} {%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %} hiredis==3.0.0 # https://github.com/redis/hiredis-py From c81251962473a01b9a20067ebcd9c31542802b05 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 14 Aug 2024 06:05:10 +1000 Subject: [PATCH 5/6] Update tox from 4.17.1 to 4.18.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 12ede4a32..dbaefb342 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ pre-commit==3.8.0 # Testing # ------------------------------------------------------------------------------ -tox==4.17.1 +tox==4.18.0 pytest==8.3.2 pytest-xdist==3.6.1 pytest-cookies==0.7.0 From a97d2b8b6653065d0b5322a248eda341c8e08599 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 14 Aug 2024 02:19:57 +0000 Subject: [PATCH 6/6] Release 2024.08.13 --- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6dc3d743..3c7c1c608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2024.08.13 + + +### Updated + +- Update tox to 4.18.0 ([#5299](https://github.com/cookiecutter/cookiecutter-django/pull/5299)) + +- Update sentry-sdk to 2.13.0 ([#5298](https://github.com/cookiecutter/cookiecutter-django/pull/5298)) + +- Update uvicorn to 0.30.6 ([#5295](https://github.com/cookiecutter/cookiecutter-django/pull/5295)) + ## 2024.08.12 diff --git a/setup.py b/setup.py index fef722d89..92ec62a3a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.08.12" +version = "2024.08.13" with open("README.md") as readme_file: long_description = readme_file.read()