From b39a5d8d64b23a221957fe26dae41daf28069130 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Tue, 19 Apr 2022 13:36:52 -0700 Subject: [PATCH 1/3] Update sentry-sdk to 1.5.10 (#3679) --- {{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 8be91c996..6708666f9 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -8,7 +8,7 @@ psycopg2==2.9.3 # https://github.com/psycopg/psycopg2 Collectfast==2.2.0 # https://github.com/antonagestam/collectfast {%- endif %} {%- if cookiecutter.use_sentry == "y" %} -sentry-sdk==1.5.8 # https://github.com/getsentry/sentry-python +sentry-sdk==1.5.10 # https://github.com/getsentry/sentry-python {%- endif %} {%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %} hiredis==2.0.0 # https://github.com/redis/hiredis-py From 0f31ff3f94c33f38f65f442a876c5c155da9b9fe Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Tue, 19 Apr 2022 13:37:22 -0700 Subject: [PATCH 2/3] Update tox to 3.25.0 (#3675) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 172249a22..4d85d0a03 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ pre-commit==2.18.1 # Testing # ------------------------------------------------------------------------------ -tox==3.24.5 +tox==3.25.0 pytest==7.1.1 pytest-cookies==0.6.1 pytest-instafail==0.4.2 From 756b04f4f96ae7f13e164f8d8c914d792e840a91 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 20 Apr 2022 02:47:48 +0000 Subject: [PATCH 3/3] Release 2022.04.19 --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08df7d10a..5e911354b 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.04.19 + +### Updated +- Update tox to 3.25.0 ([#3675](https://github.com/cookiecutter/cookiecutter-django/pull/3675)) +- Update sentry-sdk to 1.5.10 ([#3679](https://github.com/cookiecutter/cookiecutter-django/pull/3679)) + ## 2022.04.13 ### Updated diff --git a/setup.py b/setup.py index a0605fe12..e75530a61 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.04.13" +version = "2022.04.19" with open("README.rst") as readme_file: long_description = readme_file.read()