From c49acc64f91dd3a77c74fc33d9f394370071cbd7 Mon Sep 17 00:00:00 2001 From: 2O4 <35725720+2O4@users.noreply.github.com> Date: Sun, 14 Jul 2019 15:22:36 +0200 Subject: [PATCH 01/34] Update views.py added message wich will be shown when a user update his infos --- .../{{cookiecutter.project_slug}}/users/views.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py index a2442741..db2534f1 100644 --- a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py +++ b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py @@ -2,6 +2,8 @@ from django.contrib.auth import get_user_model from django.contrib.auth.mixins import LoginRequiredMixin from django.urls import reverse from django.views.generic import DetailView, RedirectView, UpdateView +from django.contrib import messages +from django.utils.translation import ugettext_lazy as _ User = get_user_model() @@ -27,6 +29,11 @@ class UserUpdateView(LoginRequiredMixin, UpdateView): def get_object(self): return User.objects.get(username=self.request.user.username) + def form_valid(self, form): + form.save() + messages.add_message(self.request, messages.INFO, _("Infos succefully updated")) + return super(UserUpdateView, self).form_valid(form) + user_update_view = UserUpdateView.as_view() From e99d27c1273ad14898a6d7f46b411b15eb60ace0 Mon Sep 17 00:00:00 2001 From: 2O4 <35725720+2O4@users.noreply.github.com> Date: Mon, 15 Jul 2019 18:10:27 +0200 Subject: [PATCH 02/34] Update {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py Co-Authored-By: Bruno Alla --- .../{{cookiecutter.project_slug}}/users/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py index db2534f1..0a00f0c6 100644 --- a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py +++ b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py @@ -31,7 +31,7 @@ class UserUpdateView(LoginRequiredMixin, UpdateView): def form_valid(self, form): form.save() - messages.add_message(self.request, messages.INFO, _("Infos succefully updated")) + messages.add_message(self.request, messages.INFO, _("Infos successfully updated")) return super(UserUpdateView, self).form_valid(form) From 9da2a193673a064a93a57eca657ec48be9a9da13 Mon Sep 17 00:00:00 2001 From: 2O4 <35725720+2O4@users.noreply.github.com> Date: Mon, 15 Jul 2019 18:10:33 +0200 Subject: [PATCH 03/34] Update {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py Co-Authored-By: Bruno Alla --- .../{{cookiecutter.project_slug}}/users/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py index 0a00f0c6..b1c94a5e 100644 --- a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py +++ b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py @@ -32,7 +32,7 @@ class UserUpdateView(LoginRequiredMixin, UpdateView): def form_valid(self, form): form.save() messages.add_message(self.request, messages.INFO, _("Infos successfully updated")) - return super(UserUpdateView, self).form_valid(form) + return super().form_valid(form) user_update_view = UserUpdateView.as_view() From a41c841613b4f0d2ec8405a774dc7057064bd55c Mon Sep 17 00:00:00 2001 From: 2O4 <35725720+2O4@users.noreply.github.com> Date: Mon, 15 Jul 2019 18:19:07 +0200 Subject: [PATCH 04/34] Update views.py --- .../{{cookiecutter.project_slug}}/users/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py index b1c94a5e..1364568e 100644 --- a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py +++ b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py @@ -30,7 +30,6 @@ class UserUpdateView(LoginRequiredMixin, UpdateView): return User.objects.get(username=self.request.user.username) def form_valid(self, form): - form.save() messages.add_message(self.request, messages.INFO, _("Infos successfully updated")) return super().form_valid(form) From c0853452533aa178179c9fe622de782e9cd6a3b9 Mon Sep 17 00:00:00 2001 From: step21 Date: Wed, 17 Jul 2019 15:14:16 +0200 Subject: [PATCH 05/34] Rename 403_csrf.html to 403.html 403.html is the name that django expects, unless it is overriden. 403_csrf is a separate case, which according to django docs and mailing list should get a separate view/template. Fixes #2163 Docs: https://docs.djangoproject.com/en/2.1/ref/csrf/#rejected-requests Mailing list: https://groups.google.com/forum/#!msg/django-developers/O2raF0RVGA0/44-3Jz0jCwAJ Stackoverflow: https://stackoverflow.com/questions/31981239/django-custom-403-template --- .../templates/{403_csrf.html => 403.html} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/{403_csrf.html => 403.html} (100%) diff --git a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/403_csrf.html b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/403.html similarity index 100% rename from {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/403_csrf.html rename to {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/403.html From 525739dcb5c89a1a29851f5ade0597b14f25c02d Mon Sep 17 00:00:00 2001 From: step21 Date: Wed, 17 Jul 2019 16:19:11 +0200 Subject: [PATCH 06/34] Update CONTRIBUTORS.rst --- CONTRIBUTORS.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 0f9feea6..a36d59a7 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -108,6 +108,7 @@ Listed in alphabetical order. Eric Groom `@ericgroom`_ Eyad Al Sibai `@eyadsibai`_ Felipe Arruda `@arruda`_ + Florian Idelberger `@step21`_ @windrush Garry Cairns `@garry-cairns`_ Garry Polley `@garrypolley`_ Hamish Durkin `@durkode`_ From eac8ae626a632482fa901ca9c605267ae107823f Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Wed, 17 Jul 2019 15:52:46 +0100 Subject: [PATCH 07/34] Fix broken link --- CONTRIBUTORS.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index a36d59a7..4c3ad8a0 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -321,6 +321,7 @@ Listed in alphabetical order. .. _@sladinji: https://github.com/sladinji .. _@slafs: https://github.com/slafs .. _@ssteinerX: https://github.com/ssteinerx +.. _@step21: https://github.com/step21 .. _@stepmr: https://github.com/stepmr .. _@suledev: https://github.com/suledev .. _@takkaria: https://github.com/takkaria From 566cc3f3e4b3cc3d4d0ce86354e47657fbf880e0 Mon Sep 17 00:00:00 2001 From: 2O4 <35725720+2O4@users.noreply.github.com> Date: Wed, 17 Jul 2019 19:31:53 +0200 Subject: [PATCH 08/34] Update {{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py Co-Authored-By: Bruno Alla --- .../{{cookiecutter.project_slug}}/users/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py index 1364568e..5c0d5b5c 100644 --- a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py +++ b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/users/views.py @@ -30,7 +30,9 @@ class UserUpdateView(LoginRequiredMixin, UpdateView): return User.objects.get(username=self.request.user.username) def form_valid(self, form): - messages.add_message(self.request, messages.INFO, _("Infos successfully updated")) + messages.add_message( + self.request, messages.INFO, _("Infos successfully updated") + ) return super().form_valid(form) From fbacfa95e0eb7116f0e785207e8e704e994d535e Mon Sep 17 00:00:00 2001 From: browniebroke Date: Thu, 18 Jul 2019 12:00:29 +0100 Subject: [PATCH 09/34] Update djangorestframework from 3.10.0 to 3.10.1 --- {{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 9513b223..74245c5c 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -30,5 +30,5 @@ django-compressor==2.3 # https://github.com/django-compressor/django-compressor django-redis==4.10.0 # https://github.com/niwinz/django-redis # Django REST Framework -djangorestframework==3.10.0 # https://github.com/encode/django-rest-framework +djangorestframework==3.10.1 # https://github.com/encode/django-rest-framework coreapi==2.3.3 # https://github.com/core-api/python-client From cc47ee39e9b37d4eb642c0a7643d5011600f8f09 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Sat, 20 Jul 2019 12:00:29 +0100 Subject: [PATCH 10/34] Update django-extensions from 2.1.9 to 2.2.1 --- {{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 cfb2d28f..8ca3232f 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -30,6 +30,6 @@ pylint-celery==0.3 # https://github.com/PyCQA/pylint-celery factory-boy==2.12.0 # https://github.com/FactoryBoy/factory_boy django-debug-toolbar==2.0 # https://github.com/jazzband/django-debug-toolbar -django-extensions==2.1.9 # https://github.com/django-extensions/django-extensions +django-extensions==2.2.1 # https://github.com/django-extensions/django-extensions django-coverage-plugin==1.6.0 # https://github.com/nedbat/django_coverage_plugin pytest-django==3.5.1 # https://github.com/pytest-dev/pytest-django From f0546612a28275f888fa684e9148a03e48ac0079 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Sat, 27 Jul 2019 13:00:29 +0200 Subject: [PATCH 11/34] Update ipdb from 0.12 to 0.12.1 --- {{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 cfb2d28f..ef0d90af 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -1,7 +1,7 @@ -r ./base.txt Werkzeug==0.14.1 # pyup: < 0.15 # https://github.com/pallets/werkzeug -ipdb==0.12 # https://github.com/gotcha/ipdb +ipdb==0.12.1 # https://github.com/gotcha/ipdb Sphinx==2.1.2 # https://github.com/sphinx-doc/sphinx {%- if cookiecutter.use_docker == 'y' %} psycopg2==2.8.3 --no-binary psycopg2 # https://github.com/psycopg/psycopg2 From 541374e27b16d8744a6b0a3d33cbc3b05e8e054f Mon Sep 17 00:00:00 2001 From: browniebroke Date: Sun, 28 Jul 2019 13:00:29 +0200 Subject: [PATCH 12/34] Update python-slugify from 3.0.2 to 3.0.3 --- {{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 9513b223..20316865 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -1,5 +1,5 @@ pytz==2019.1 # https://github.com/stub42/pytz -python-slugify==3.0.2 # https://github.com/un33k/python-slugify +python-slugify==3.0.3 # https://github.com/un33k/python-slugify Pillow==6.1.0 # https://github.com/python-pillow/Pillow {%- if cookiecutter.use_compressor == "y" %} rcssmin==1.0.6{% if cookiecutter.windows == 'y' and cookiecutter.use_docker == 'n' %} --install-option="--without-c-extensions"{% endif %} # https://github.com/ndparker/rcssmin From 3bf19e93f2067ae876f1f6f74a3cbe673e8b5dd0 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Mon, 29 Jul 2019 13:00:28 +0200 Subject: [PATCH 13/34] Update redis from 3.2.1 to 3.3.0 --- {{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 9513b223..b3bc9c2e 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -8,7 +8,7 @@ argon2-cffi==19.1.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==4.1.3 # https://github.com/evansd/whitenoise {%- endif %} -redis==3.2.1 # https://github.com/antirez/redis +redis==3.3.0 # https://github.com/antirez/redis {%- if cookiecutter.use_celery == "y" %} celery==4.3.0 # pyup: < 5.0 # https://github.com/celery/celery django-celery-beat==1.5.0 # https://github.com/celery/django-celery-beat From ff182ce997de8a3174c9cb166e49bd93632872a3 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Tue, 30 Jul 2019 12:00:29 +0100 Subject: [PATCH 14/34] Update redis from 3.3.0 to 3.3.2 --- {{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 bca54bc2..9c99245b 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -8,7 +8,7 @@ argon2-cffi==19.1.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==4.1.3 # https://github.com/evansd/whitenoise {%- endif %} -redis==3.3.0 # https://github.com/antirez/redis +redis==3.3.2 # https://github.com/antirez/redis {%- if cookiecutter.use_celery == "y" %} celery==4.3.0 # pyup: < 5.0 # https://github.com/celery/celery django-celery-beat==1.5.0 # https://github.com/celery/django-celery-beat From 57ba93c69c2cbed9777154a86a8161445be8e2bb Mon Sep 17 00:00:00 2001 From: browniebroke Date: Tue, 30 Jul 2019 12:00:32 +0100 Subject: [PATCH 15/34] Update djangorestframework from 3.10.1 to 3.10.2 --- {{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 bca54bc2..5ec1644f 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -30,5 +30,5 @@ django-compressor==2.3 # https://github.com/django-compressor/django-compressor django-redis==4.10.0 # https://github.com/niwinz/django-redis # Django REST Framework -djangorestframework==3.10.1 # https://github.com/encode/django-rest-framework +djangorestframework==3.10.2 # https://github.com/encode/django-rest-framework coreapi==2.3.3 # https://github.com/core-api/python-client From f540784c35034306f01f1a9bb839fa5b49f3a956 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Tue, 30 Jul 2019 12:00:36 +0100 Subject: [PATCH 16/34] Update coverage from 4.5.3 to 4.5.4 --- {{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 5bfb1536..6d95b5b1 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -18,7 +18,7 @@ pytest-sugar==0.9.2 # https://github.com/Frozenball/pytest-sugar # Code quality # ------------------------------------------------------------------------------ flake8==3.7.8 # https://github.com/PyCQA/flake8 -coverage==4.5.3 # https://github.com/nedbat/coveragepy +coverage==4.5.4 # https://github.com/nedbat/coveragepy black==19.3b0 # https://github.com/ambv/black pylint-django==2.0.11 # https://github.com/PyCQA/pylint-django {%- if cookiecutter.use_celery == 'y' %} From 2a373ebeff4e1b346d15deeb293f8ad8cda81c0f Mon Sep 17 00:00:00 2001 From: browniebroke Date: Wed, 31 Jul 2019 12:00:29 +0100 Subject: [PATCH 17/34] Update redis from 3.3.0 to 3.3.4 --- {{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 bca54bc2..5c3199a0 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -8,7 +8,7 @@ argon2-cffi==19.1.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==4.1.3 # https://github.com/evansd/whitenoise {%- endif %} -redis==3.3.0 # https://github.com/antirez/redis +redis==3.3.4 # https://github.com/antirez/redis {%- if cookiecutter.use_celery == "y" %} celery==4.3.0 # pyup: < 5.0 # https://github.com/celery/celery django-celery-beat==1.5.0 # https://github.com/celery/django-celery-beat From ba05c40cfb6862c1801aa37c1916e86d869119a9 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Wed, 31 Jul 2019 12:00:32 +0100 Subject: [PATCH 18/34] Update ipdb from 0.12.1 to 0.12.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 5bfb1536..bb8ca83d 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -1,7 +1,7 @@ -r ./base.txt Werkzeug==0.14.1 # pyup: < 0.15 # https://github.com/pallets/werkzeug -ipdb==0.12.1 # https://github.com/gotcha/ipdb +ipdb==0.12.2 # https://github.com/gotcha/ipdb Sphinx==2.1.2 # https://github.com/sphinx-doc/sphinx {%- if cookiecutter.use_docker == 'y' %} psycopg2==2.8.3 --no-binary psycopg2 # https://github.com/psycopg/psycopg2 From 5e9f6f3aac856ddcaaa41964dada04235926b24a Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 31 Jul 2019 17:45:48 -0700 Subject: [PATCH 19/34] Update pyyaml from 5.1.1 to 5.1.2 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e5d371ed..6f4445a7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,4 +14,4 @@ pytest==5.0.1 pytest_cases==1.10.1 pytest-cookies==0.4.0 pytest-xdist==1.29.0 -pyyaml==5.1.1 +pyyaml==5.1.2 From ffbc44a3302308a48cc1151d9429e2f1d1e4c34f Mon Sep 17 00:00:00 2001 From: browniebroke Date: Thu, 1 Aug 2019 12:00:30 +0100 Subject: [PATCH 20/34] Update pytz from 2019.1 to 2019.2 --- {{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 bca54bc2..d2a8f7af 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -1,4 +1,4 @@ -pytz==2019.1 # https://github.com/stub42/pytz +pytz==2019.2 # https://github.com/stub42/pytz python-slugify==3.0.3 # https://github.com/un33k/python-slugify Pillow==6.1.0 # https://github.com/python-pillow/Pillow {%- if cookiecutter.use_compressor == "y" %} From b562008a6c7223b90f8454c7cc9b7d2e61d20175 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Thu, 1 Aug 2019 12:00:33 +0100 Subject: [PATCH 21/34] Update django from 2.2.3 to 2.2.4 --- {{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 bca54bc2..780bee5a 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -19,7 +19,7 @@ flower==0.9.3 # https://github.com/mher/flower # Django # ------------------------------------------------------------------------------ -django==2.2.3 # pyup: < 3.0 # https://www.djangoproject.com/ +django==2.2.4 # pyup: < 3.0 # https://www.djangoproject.com/ django-environ==0.4.5 # https://github.com/joke2k/django-environ django-model-utils==3.2.0 # https://github.com/jazzband/django-model-utils django-allauth==0.39.1 # https://github.com/pennersr/django-allauth From b4349cafdc665364bd97459069930ab91c81389d Mon Sep 17 00:00:00 2001 From: browniebroke Date: Fri, 2 Aug 2019 12:00:29 +0100 Subject: [PATCH 22/34] Update pytest_cases from 1.10.1 to 1.11.1 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6f4445a7..003b4a1f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ flake8==3.7.8 # ------------------------------------------------------------------------------ tox==3.13.2 pytest==5.0.1 -pytest_cases==1.10.1 +pytest_cases==1.11.1 pytest-cookies==0.4.0 pytest-xdist==1.29.0 pyyaml==5.1.2 From 0d3fb0509e0f2fb18c6b5d18a7cc7de871d088ec Mon Sep 17 00:00:00 2001 From: browniebroke Date: Sat, 3 Aug 2019 12:00:29 +0100 Subject: [PATCH 23/34] Update redis from 3.3.4 to 3.3.5 --- {{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 a7e03a36..20723671 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -8,7 +8,7 @@ argon2-cffi==19.1.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==4.1.3 # https://github.com/evansd/whitenoise {%- endif %} -redis==3.3.4 # https://github.com/antirez/redis +redis==3.3.5 # https://github.com/antirez/redis {%- if cookiecutter.use_celery == "y" %} celery==4.3.0 # pyup: < 5.0 # https://github.com/celery/celery django-celery-beat==1.5.0 # https://github.com/celery/django-celery-beat From 406f51ac172f5606b7f5a077b78084c0c0f9e9cc Mon Sep 17 00:00:00 2001 From: browniebroke Date: Wed, 7 Aug 2019 12:00:29 +0100 Subject: [PATCH 24/34] Update redis from 3.3.5 to 3.3.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 20723671..0fb72f41 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -8,7 +8,7 @@ argon2-cffi==19.1.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==4.1.3 # https://github.com/evansd/whitenoise {%- endif %} -redis==3.3.5 # https://github.com/antirez/redis +redis==3.3.6 # https://github.com/antirez/redis {%- if cookiecutter.use_celery == "y" %} celery==4.3.0 # pyup: < 5.0 # https://github.com/celery/celery django-celery-beat==1.5.0 # https://github.com/celery/django-celery-beat From 5a8c6c28c69fb95cd2657f44c7c3854fcb16c7e5 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Tue, 13 Aug 2019 12:00:28 +0100 Subject: [PATCH 25/34] Update collectfast from 0.6.2 to 1.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 f5e5ffea..b48de34a 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -5,7 +5,7 @@ gunicorn==19.9.0 # https://github.com/benoitc/gunicorn psycopg2==2.8.3 --no-binary psycopg2 # https://github.com/psycopg/psycopg2 {%- if cookiecutter.use_whitenoise == 'n' %} -Collectfast==0.6.2 # https://github.com/antonagestam/collectfast +Collectfast==1.0.0 # https://github.com/antonagestam/collectfast {%- endif %} {%- if cookiecutter.use_sentry == "y" %} sentry-sdk==0.10.2 # https://github.com/getsentry/sentry-python From 081accfafbc985cb38a0ce4d9a5ecbeaa64b9853 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Wed, 14 Aug 2019 12:00:29 +0100 Subject: [PATCH 26/34] Update redis from 3.3.6 to 3.3.7 --- {{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 0fb72f41..631048f7 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -8,7 +8,7 @@ argon2-cffi==19.1.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==4.1.3 # https://github.com/evansd/whitenoise {%- endif %} -redis==3.3.6 # https://github.com/antirez/redis +redis==3.3.7 # https://github.com/antirez/redis {%- if cookiecutter.use_celery == "y" %} celery==4.3.0 # pyup: < 5.0 # https://github.com/celery/celery django-celery-beat==1.5.0 # https://github.com/celery/django-celery-beat From 7594b4f03025dae5954358fa47d1e897c0157793 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Fri, 16 Aug 2019 12:00:28 +0100 Subject: [PATCH 27/34] Update pytest from 5.0.1 to 5.1.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 003b4a1f..c3f21bd4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,7 +10,7 @@ flake8==3.7.8 # Testing # ------------------------------------------------------------------------------ tox==3.13.2 -pytest==5.0.1 +pytest==5.1.0 pytest_cases==1.11.1 pytest-cookies==0.4.0 pytest-xdist==1.29.0 From cc0ff897b247461cd31952c181b211e2682da938 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Fri, 16 Aug 2019 12:00:29 +0100 Subject: [PATCH 28/34] Update pytest from 5.0.1 to 5.1.0 --- {{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 17c47bb2..85328c03 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -12,7 +12,7 @@ psycopg2-binary==2.8.3 # https://github.com/psycopg/psycopg2 # Testing # ------------------------------------------------------------------------------ mypy==0.720 # https://github.com/python/mypy -pytest==5.0.1 # https://github.com/pytest-dev/pytest +pytest==5.1.0 # https://github.com/pytest-dev/pytest pytest-sugar==0.9.2 # https://github.com/Frozenball/pytest-sugar # Code quality From c1fb6e078b969893f265f641264fc1e6e19227f6 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Sat, 17 Aug 2019 13:00:31 +0200 Subject: [PATCH 29/34] Update sentry-sdk from 0.10.2 to 0.11.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 b48de34a..c21fb992 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -8,7 +8,7 @@ psycopg2==2.8.3 --no-binary psycopg2 # https://github.com/psycopg/psycopg2 Collectfast==1.0.0 # https://github.com/antonagestam/collectfast {%- endif %} {%- if cookiecutter.use_sentry == "y" %} -sentry-sdk==0.10.2 # https://github.com/getsentry/sentry-python +sentry-sdk==0.11.0 # https://github.com/getsentry/sentry-python {%- endif %} # Django From b42d000b56ce5a87092ba8c56d3b397ea693e0a2 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Mon, 19 Aug 2019 13:00:34 +0200 Subject: [PATCH 30/34] Update sphinx from 2.1.2 to 2.2.0 --- {{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 85328c03..03441394 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -2,7 +2,7 @@ Werkzeug==0.14.1 # pyup: < 0.15 # https://github.com/pallets/werkzeug ipdb==0.12.2 # https://github.com/gotcha/ipdb -Sphinx==2.1.2 # https://github.com/sphinx-doc/sphinx +Sphinx==2.2.0 # https://github.com/sphinx-doc/sphinx {%- if cookiecutter.use_docker == 'y' %} psycopg2==2.8.3 --no-binary psycopg2 # https://github.com/psycopg/psycopg2 {%- else %} From 5ddadc0afac5c25fe54132e1130d7c97b70da3b0 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Tue, 20 Aug 2019 13:00:29 +0200 Subject: [PATCH 31/34] Update sentry-sdk from 0.11.0 to 0.11.1 --- {{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 c21fb992..eadd410d 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -8,7 +8,7 @@ psycopg2==2.8.3 --no-binary psycopg2 # https://github.com/psycopg/psycopg2 Collectfast==1.0.0 # https://github.com/antonagestam/collectfast {%- endif %} {%- if cookiecutter.use_sentry == "y" %} -sentry-sdk==0.11.0 # https://github.com/getsentry/sentry-python +sentry-sdk==0.11.1 # https://github.com/getsentry/sentry-python {%- endif %} # Django From ac294b8515e17f1d07b15e5172318bf5411d0e51 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Tue, 20 Aug 2019 13:00:32 +0200 Subject: [PATCH 32/34] Update redis from 3.3.7 to 3.3.8 --- {{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 631048f7..f5c4f338 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -8,7 +8,7 @@ argon2-cffi==19.1.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==4.1.3 # https://github.com/evansd/whitenoise {%- endif %} -redis==3.3.7 # https://github.com/antirez/redis +redis==3.3.8 # https://github.com/antirez/redis {%- if cookiecutter.use_celery == "y" %} celery==4.3.0 # pyup: < 5.0 # https://github.com/celery/celery django-celery-beat==1.5.0 # https://github.com/celery/django-celery-beat From e82a7d0fb29044b93601d8357e95af3822987fd3 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Wed, 21 Aug 2019 13:00:29 +0200 Subject: [PATCH 33/34] Update pytest from 5.1.0 to 5.1.1 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c3f21bd4..2f85a700 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,7 +10,7 @@ flake8==3.7.8 # Testing # ------------------------------------------------------------------------------ tox==3.13.2 -pytest==5.1.0 +pytest==5.1.1 pytest_cases==1.11.1 pytest-cookies==0.4.0 pytest-xdist==1.29.0 From 72b222d52dd01bdd639467806a79f0fba8fc3020 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Wed, 21 Aug 2019 13:00:30 +0200 Subject: [PATCH 34/34] Update pytest from 5.1.0 to 5.1.1 --- {{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 03441394..0a417575 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -12,7 +12,7 @@ psycopg2-binary==2.8.3 # https://github.com/psycopg/psycopg2 # Testing # ------------------------------------------------------------------------------ mypy==0.720 # https://github.com/python/mypy -pytest==5.1.0 # https://github.com/pytest-dev/pytest +pytest==5.1.1 # https://github.com/pytest-dev/pytest pytest-sugar==0.9.2 # https://github.com/Frozenball/pytest-sugar # Code quality