From 2279841de7d7c435145d270560ec27aa921e97c8 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 10 Feb 2022 03:57:18 -0500 Subject: [PATCH 1/4] Update whitenoise to 6.0.0 (#3583) --- {{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 d0f565c7f..3dfa92c36 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==5.3.0 # https://github.com/evansd/whitenoise +whitenoise==6.0.0 # https://github.com/evansd/whitenoise {%- endif %} redis==4.1.3 # https://github.com/redis/redis-py {%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %} From 0ea13d42886bb38415b4bfb8c21c6236171cd516 Mon Sep 17 00:00:00 2001 From: Jelmer Date: Thu, 10 Feb 2022 16:06:22 +0100 Subject: [PATCH 2/4] Fix GitLab CI error caused by Docker Compose's `platform` option (#3585) --- {{cookiecutter.project_slug}}/.gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.gitlab-ci.yml b/{{cookiecutter.project_slug}}/.gitlab-ci.yml index 711bfc392..fb82ec5d5 100644 --- a/{{cookiecutter.project_slug}}/.gitlab-ci.yml +++ b/{{cookiecutter.project_slug}}/.gitlab-ci.yml @@ -22,7 +22,7 @@ flake8: pytest: stage: test {% if cookiecutter.use_docker == 'y' -%} - image: docker/compose:latest + image: docker/compose:1.29.2 tags: - docker services: From fb5021e124adb8e8e777aef7d89631242f6327e9 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 11 Feb 2022 02:16:15 +0000 Subject: [PATCH 3/4] Release 2022.02.10 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8397d4c51..0f60cd9bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.02.10 + +### Fixed +- Fix GitLab CI error caused by Docker Compose's `platform` option ([#3585](https://github.com/cookiecutter/cookiecutter-django/pull/3585)) +### Updated +- Update whitenoise to 6.0.0 ([#3583](https://github.com/cookiecutter/cookiecutter-django/pull/3583)) + ## 2022.02.08 ### Fixed diff --git a/setup.py b/setup.py index f1882dda1..a9f4982d3 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.02.08" +version = "2022.02.10" with open("README.rst") as readme_file: long_description = readme_file.read() From a22076f72d0017d7d5144a88bac58d8d54b91287 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Fri, 11 Feb 2022 12:19:37 -0500 Subject: [PATCH 4/4] Update sentry-sdk to 1.5.5 (#3586) --- {{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 faefd1245..e9c61850a 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.4 # https://github.com/getsentry/sentry-python +sentry-sdk==1.5.5 # 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