From 0cfd278da2338da5e398c84c2c8e5cda7c6ec71e Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sat, 1 Jun 2024 03:43:59 -0700 Subject: [PATCH 01/14] Update ruff to 0.4.7 (#5112) * Update ruff from 0.4.6 to 0.4.7 * Update ruff from 0.4.6 to 0.4.7 * Update Ruff pre-commit hook (#5113) Co-authored-by: browniebroke <861044+browniebroke@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: browniebroke <861044+browniebroke@users.noreply.github.com> --- requirements.txt | 2 +- {{cookiecutter.project_slug}}/.pre-commit-config.yaml | 2 +- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 30793a712..b2db470cd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ binaryornot==0.4.4 # Code quality # ------------------------------------------------------------------------------ -ruff==0.4.6 +ruff==0.4.7 django-upgrade==1.18.0 djlint==1.34.1 pre-commit==3.7.1 diff --git a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml index 90d1b3ed5..db3259b1c 100644 --- a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml @@ -35,7 +35,7 @@ repos: # Run the Ruff linter. - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.6 + rev: v0.4.7 hooks: # Linter - id: ruff diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 449c7e939..e57d81687 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -28,7 +28,7 @@ sphinx-autobuild==2024.4.16 # https://github.com/GaretJax/sphinx-autobuild # Code quality # ------------------------------------------------------------------------------ -ruff==0.4.6 # https://github.com/astral-sh/ruff +ruff==0.4.7 # https://github.com/astral-sh/ruff coverage==7.5.3 # https://github.com/nedbat/coveragepy djlint==1.34.1 # https://github.com/Riverside-Healthcare/djLint pre-commit==3.7.1 # https://github.com/pre-commit/pre-commit From 3f38cfac5a140213bd70c1018725e04072137b46 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 2 Jun 2024 02:18:24 +0000 Subject: [PATCH 02/14] Release 2024.06.01 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 680a18935..e1e0cd60f 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.06.01 + + +### Updated + +- Update ruff to 0.4.7 ([#5112](https://github.com/cookiecutter/cookiecutter-django/pull/5112)) + ## 2024.05.30 diff --git a/setup.py b/setup.py index b98443f0d..99e225653 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.05.30" +version = "2024.06.01" with open("README.md") as readme_file: long_description = readme_file.read() From 53394a6ac72f289ac9ef6499424fbacb099a96a2 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sun, 2 Jun 2024 12:00:08 -0700 Subject: [PATCH 03/14] Update uvicorn from 0.30.0 to 0.30.1 (#5115) --- {{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 d70575444..f9a2d9758 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.0 # https://github.com/encode/uvicorn +uvicorn[standard]==0.30.1 # https://github.com/encode/uvicorn {%- endif %} # Django From ed59d08ec31b05b672c05f2c8e24e263aa9c7402 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 3 Jun 2024 02:17:48 +0000 Subject: [PATCH 04/14] Release 2024.06.02 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1e0cd60f..d1b705479 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.06.02 + + +### Updated + +- Update uvicorn to 0.30.1 ([#5115](https://github.com/cookiecutter/cookiecutter-django/pull/5115)) + ## 2024.06.01 diff --git a/setup.py b/setup.py index 99e225653..7ca68d7e7 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.06.01" +version = "2024.06.02" with open("README.md") as readme_file: long_description = readme_file.read() From 824630a9e921b6bdaeed8701dda764e9930b057c Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 4 Jun 2024 11:02:11 +0100 Subject: [PATCH 05/14] Update sentry-sdk from 2.3.1 to 2.4.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 e07d83825..341c15767 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -8,7 +8,7 @@ psycopg[c]==3.1.19 # https://github.com/psycopg/psycopg Collectfast==2.2.0 # https://github.com/antonagestam/collectfast {%- endif %} {%- if cookiecutter.use_sentry == "y" %} -sentry-sdk==2.3.1 # https://github.com/getsentry/sentry-python +sentry-sdk==2.4.0 # https://github.com/getsentry/sentry-python {%- endif %} {%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %} hiredis==2.3.2 # https://github.com/redis/hiredis-py From 7216565cfa4a1c695a4fbf5881a0db46e2b4968d Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sat, 1 Jun 2024 18:04:38 +0100 Subject: [PATCH 06/14] Update sh from 2.0.6 to 2.0.7 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b2db470cd..a273d49c9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ cookiecutter==2.6.0 -sh==2.0.6; sys_platform != "win32" +sh==2.0.7; sys_platform != "win32" binaryornot==0.4.4 # Code quality From 75a8dae0dc27dfdc4d2a12d94b848da4b7bc1d45 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 4 Jun 2024 21:08:44 +0100 Subject: [PATCH 07/14] Update pytest from 8.2.1 to 8.2.2 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a273d49c9..6daed0069 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ pre-commit==3.7.1 # Testing # ------------------------------------------------------------------------------ tox==4.15.0 -pytest==8.2.1 +pytest==8.2.2 pytest-xdist==3.6.1 pytest-cookies==0.7.0 pytest-instafail==0.5.0 From 66e4d3d99a484d643215e8a27fd77703666112c7 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 4 Jun 2024 21:08:45 +0100 Subject: [PATCH 08/14] Update pytest from 8.2.1 to 8.2.2 --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index e57d81687..3a3ca0a5b 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -15,7 +15,7 @@ watchfiles==0.22.0 # https://github.com/samuelcolvin/watchfiles # ------------------------------------------------------------------------------ mypy==1.10.0 # https://github.com/python/mypy django-stubs[compatible-mypy]==5.0.2 # https://github.com/typeddjango/django-stubs -pytest==8.2.1 # https://github.com/pytest-dev/pytest +pytest==8.2.2 # https://github.com/pytest-dev/pytest pytest-sugar==1.0.0 # https://github.com/Frozenball/pytest-sugar {%- if cookiecutter.use_drf == "y" %} djangorestframework-stubs[compatible-mypy]==3.15.0 # https://github.com/typeddjango/djangorestframework-stubs From f2880ab5d5cb844c34f12611739cfb93aecc8029 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 5 Jun 2024 02:17:11 +0000 Subject: [PATCH 09/14] Release 2024.06.04 --- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1b705479..0cacabc7a 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.06.04 + + +### Updated + +- Update pytest to 8.2.2 ([#5120](https://github.com/cookiecutter/cookiecutter-django/pull/5120)) + +- Update sh to 2.0.7 ([#5114](https://github.com/cookiecutter/cookiecutter-django/pull/5114)) + +- Update sentry-sdk to 2.4.0 ([#5119](https://github.com/cookiecutter/cookiecutter-django/pull/5119)) + ## 2024.06.02 diff --git a/setup.py b/setup.py index 7ca68d7e7..e3e24df51 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.06.02" +version = "2024.06.04" with open("README.md") as readme_file: long_description = readme_file.read() From e3adc3561fb9c36527c887f17f144218f06b7f3d Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 6 Jun 2024 04:13:08 -0700 Subject: [PATCH 10/14] Update tox to 4.15.1 (#5124) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6daed0069..e46050ec2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ pre-commit==3.7.1 # Testing # ------------------------------------------------------------------------------ -tox==4.15.0 +tox==4.15.1 pytest==8.2.2 pytest-xdist==3.6.1 pytest-cookies==0.7.0 From 1e1255c966a139543c1f20dcf324aa1d4715a034 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 6 Jun 2024 04:13:27 -0700 Subject: [PATCH 11/14] Update redis to 5.0.5 (#5125) --- {{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 f9a2d9758..e12c0a70e 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -11,7 +11,7 @@ argon2-cffi==23.1.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==6.6.0 # https://github.com/evansd/whitenoise {%- endif %} -redis==5.0.4 # https://github.com/redis/redis-py +redis==5.0.5 # https://github.com/redis/redis-py {%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %} hiredis==2.3.2 # https://github.com/redis/hiredis-py {%- endif %} From 690b1ad327aaee0d0460c1594d569fe5c4945155 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 6 Jun 2024 04:47:52 -0700 Subject: [PATCH 12/14] Update ruff to 0.4.8 (#5122) * Update ruff from 0.4.7 to 0.4.8 * Update ruff from 0.4.7 to 0.4.8 * Update Ruff pre-commit hook (#5123) Co-authored-by: browniebroke <861044+browniebroke@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: browniebroke <861044+browniebroke@users.noreply.github.com> --- requirements.txt | 2 +- {{cookiecutter.project_slug}}/.pre-commit-config.yaml | 2 +- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index e46050ec2..b2d8690c0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ binaryornot==0.4.4 # Code quality # ------------------------------------------------------------------------------ -ruff==0.4.7 +ruff==0.4.8 django-upgrade==1.18.0 djlint==1.34.1 pre-commit==3.7.1 diff --git a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml index db3259b1c..871e01014 100644 --- a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml @@ -35,7 +35,7 @@ repos: # Run the Ruff linter. - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.7 + rev: v0.4.8 hooks: # Linter - id: ruff diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 3a3ca0a5b..bad8f4002 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -28,7 +28,7 @@ sphinx-autobuild==2024.4.16 # https://github.com/GaretJax/sphinx-autobuild # Code quality # ------------------------------------------------------------------------------ -ruff==0.4.7 # https://github.com/astral-sh/ruff +ruff==0.4.8 # https://github.com/astral-sh/ruff coverage==7.5.3 # https://github.com/nedbat/coveragepy djlint==1.34.1 # https://github.com/Riverside-Healthcare/djLint pre-commit==3.7.1 # https://github.com/pre-commit/pre-commit From 33c36f17cd82e8b2ebd354df79e5d30240c1efbf Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 6 Jun 2024 07:27:42 -0700 Subject: [PATCH 13/14] Update sentry-sdk to 2.5.0 (#5126) --- {{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 341c15767..f6f27308f 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -8,7 +8,7 @@ psycopg[c]==3.1.19 # https://github.com/psycopg/psycopg Collectfast==2.2.0 # https://github.com/antonagestam/collectfast {%- endif %} {%- if cookiecutter.use_sentry == "y" %} -sentry-sdk==2.4.0 # https://github.com/getsentry/sentry-python +sentry-sdk==2.5.0 # https://github.com/getsentry/sentry-python {%- endif %} {%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %} hiredis==2.3.2 # https://github.com/redis/hiredis-py From db38d8b00f057430744bf6c7a487208d939517b1 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 7 Jun 2024 02:17:56 +0000 Subject: [PATCH 14/14] Release 2024.06.06 --- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cacabc7a..2f1dbf549 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.06.06 + + +### Updated + +- Update sentry-sdk to 2.5.0 ([#5126](https://github.com/cookiecutter/cookiecutter-django/pull/5126)) + +- Update ruff to 0.4.8 ([#5122](https://github.com/cookiecutter/cookiecutter-django/pull/5122)) + +- Update redis to 5.0.5 ([#5125](https://github.com/cookiecutter/cookiecutter-django/pull/5125)) + ## 2024.06.04 diff --git a/setup.py b/setup.py index e3e24df51..02de5da46 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.06.04" +version = "2024.06.06" with open("README.md") as readme_file: long_description = readme_file.read()