From e25003831c6abb16302206f03fdfb02de9cbe8bf Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 31 Dec 2017 18:36:53 -0500 Subject: [PATCH 01/31] Update werkzeug from 0.13 to 0.14.1 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index 65fac45..9dd32bd 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -3,7 +3,7 @@ # Flask Flask==0.12.2 MarkupSafe==1.0 -Werkzeug==0.13 +Werkzeug==0.14.1 Jinja2==2.10 itsdangerous==0.24 click>=5.0 From 4cc7ea4643d4630dc74a86688fd3310344bc1537 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 16 Jan 2018 00:32:28 +0800 Subject: [PATCH 02/31] Update sqlalchemy from 1.2.0 to 1.2.1 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index 65fac45..72b4140 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -11,7 +11,7 @@ click>=5.0 # Database Flask-SQLAlchemy==2.3.2 psycopg2==2.7.3.2 -SQLAlchemy==1.2.0 +SQLAlchemy==1.2.1 # Migrations Flask-Migrate==2.1.1 From d25483c912122f7d5e27ad90b5c14ae2a71f7acb Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Thu, 25 Jan 2018 12:16:45 +0800 Subject: [PATCH 03/31] Update sqlalchemy from 1.2.1 to 1.2.2 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index 72b4140..3e64a63 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -11,7 +11,7 @@ click>=5.0 # Database Flask-SQLAlchemy==2.3.2 psycopg2==2.7.3.2 -SQLAlchemy==1.2.1 +SQLAlchemy==1.2.2 # Migrations Flask-Migrate==2.1.1 From a81b52d7d554dc47e8e42cabc5108d860fd39af0 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 28 Jan 2018 18:39:51 -0600 Subject: [PATCH 04/31] Update factory-boy from 2.9.2 to 2.10.0 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index 6ddd29a..bcbd44c 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -4,7 +4,7 @@ # Testing pytest==3.3.1 WebTest==2.0.29 -factory-boy==2.9.2 +factory-boy==2.10.0 # Lint and code style flake8==3.5.0 From 5bbbea277686f0837b2f6b39cff6fbdfa1b43e3d Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Tue, 30 Jan 2018 22:05:35 -0500 Subject: [PATCH 05/31] Fix screenshots close #257 --- README.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 91d794c..06a22b0 100644 --- a/README.rst +++ b/README.rst @@ -40,12 +40,10 @@ Features Screenshots ----------- -.. image:: https://dl.dropboxusercontent.com/u/1693233/github/cookiecutter-flask-01.png - :target: https://dl.dropboxusercontent.com/u/1693233/github/cookiecutter-flask-01.png +.. image:: https://user-images.githubusercontent.com/2379650/35603073-7f5b78c2-0609-11e8-8fa8-7c6cce27fed6.png :alt: Home page -.. image:: https://dl.dropboxusercontent.com/u/1693233/github/cookiecutter-flask-02.png.png - :target: https://dl.dropboxusercontent.com/u/1693233/github/cookiecutter-flask-02.png.png +.. image:: https://user-images.githubusercontent.com/2379650/35603086-936a30e2-0609-11e8-8f63-a4c844310aab.png :alt: Registration form From 13ef32ffa600aa1dd420d8680082b0d212226093 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 30 Jan 2018 22:06:14 -0500 Subject: [PATCH 06/31] Update pytest from 3.3.1 to 3.4.0 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index bcbd44c..2bac307 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -2,7 +2,7 @@ -r prod.txt # Testing -pytest==3.3.1 +pytest==3.4.0 WebTest==2.0.29 factory-boy==2.10.0 From e1c91e6c09cb7c21c222480d66c47d6b19e3de1d Mon Sep 17 00:00:00 2001 From: Will Roberts Date: Wed, 31 Jan 2018 15:23:25 +0100 Subject: [PATCH 07/31] package.json: specify engines with node>=4 --- {{cookiecutter.app_name}}/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/{{cookiecutter.app_name}}/package.json b/{{cookiecutter.app_name}}/package.json index 7cb9d32..b1682e8 100644 --- a/{{cookiecutter.app_name}}/package.json +++ b/{{cookiecutter.app_name}}/package.json @@ -15,6 +15,7 @@ }, "author": "{{cookiecutter.full_name}}", "license": "BSD-3-Clause", + "engines": { "node" : ">=4" }, "bugs": { "url": "https://github.com/{{cookiecutter.github_username}}/{{cookiecutter.app_name}}/issues" }, From 9dfc23d30891cadc633721711b108e2cd6e1e668 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Fri, 2 Feb 2018 16:38:58 -0500 Subject: [PATCH 08/31] Update isort from 4.2.15 to 4.3.1 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index bcbd44c..b2cf3d3 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -13,5 +13,5 @@ flake8-debugger==3.0.0 flake8-docstrings==1.1.0 flake8-isort==2.3 flake8-quotes==0.13.0 -isort==4.2.15 +isort==4.3.1 pep8-naming==0.5.0 From 84681282672591da8a7952f7118de410f1816617 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Thu, 8 Feb 2018 15:41:08 -0500 Subject: [PATCH 09/31] Update psycopg2 from 2.7.3.2 to 2.7.4 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index 1c86bc9..b0f2f1d 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -10,7 +10,7 @@ click>=5.0 # Database Flask-SQLAlchemy==2.3.2 -psycopg2==2.7.3.2 +psycopg2==2.7.4 SQLAlchemy==1.2.2 # Migrations From 55ddc7c56044f6bced8b866a3b9337782e441927 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 11 Feb 2018 12:53:16 -0500 Subject: [PATCH 10/31] Update flake8-debugger from 3.0.0 to 3.1.0 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index f91f6d0..df2ac3b 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -9,7 +9,7 @@ factory-boy==2.10.0 # Lint and code style flake8==3.5.0 flake8-blind-except==0.1.1 -flake8-debugger==3.0.0 +flake8-debugger==3.1.0 flake8-docstrings==1.1.0 flake8-isort==2.3 flake8-quotes==0.13.0 From 207ae69f1bca359869f2394f5ba77ba45b139e4b Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 12 Feb 2018 12:01:19 -0500 Subject: [PATCH 11/31] Update isort from 4.3.1 to 4.3.4 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index f91f6d0..aa20a61 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -13,5 +13,5 @@ flake8-debugger==3.0.0 flake8-docstrings==1.1.0 flake8-isort==2.3 flake8-quotes==0.13.0 -isort==4.3.1 +isort==4.3.4 pep8-naming==0.5.0 From 8511d922d36c673492820a621b51b3465b0d2e13 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Thu, 22 Feb 2018 18:22:08 -0500 Subject: [PATCH 12/31] Update sqlalchemy from 1.2.2 to 1.2.4 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index b0f2f1d..8aa88be 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -11,7 +11,7 @@ click>=5.0 # Database Flask-SQLAlchemy==2.3.2 psycopg2==2.7.4 -SQLAlchemy==1.2.2 +SQLAlchemy==1.2.4 # Migrations Flask-Migrate==2.1.1 From 4adebd33905a717d68454c8bb306f1944c85c091 Mon Sep 17 00:00:00 2001 From: Zhong Dai Date: Thu, 1 Mar 2018 13:00:37 +1100 Subject: [PATCH 13/31] remove the db. by using the alias --- .../{{cookiecutter.app_name}}/database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/database.py b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/database.py index f4edafa..3a8883d 100644 --- a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/database.py +++ b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/database.py @@ -49,7 +49,7 @@ class SurrogatePK(object): __table_args__ = {'extend_existing': True} - id = db.Column(db.Integer, primary_key=True) + id = Column(db.Integer, primary_key=True) @classmethod def get_by_id(cls, record_id): @@ -70,6 +70,6 @@ def reference_col(tablename, nullable=False, pk_name='id', **kwargs): category_id = reference_col('category') category = relationship('Category', backref='categories') """ - return db.Column( + return Column( db.ForeignKey('{0}.{1}'.format(tablename, pk_name)), nullable=nullable, **kwargs) From 615113225836d2f53f009a233b48a3fbbc57e8a8 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 6 Mar 2018 06:37:21 -0500 Subject: [PATCH 14/31] Update pytest from 3.4.0 to 3.4.2 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index f91f6d0..58d28d8 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -2,7 +2,7 @@ -r prod.txt # Testing -pytest==3.4.0 +pytest==3.4.2 WebTest==2.0.29 factory-boy==2.10.0 From 1dd187666b178aa101cce56635c227dcad4bb706 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Thu, 15 Mar 2018 05:16:42 -0400 Subject: [PATCH 15/31] Update flake8-isort from 2.3 to 2.5 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index f91f6d0..3546d27 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -11,7 +11,7 @@ flake8==3.5.0 flake8-blind-except==0.1.1 flake8-debugger==3.0.0 flake8-docstrings==1.1.0 -flake8-isort==2.3 +flake8-isort==2.5 flake8-quotes==0.13.0 isort==4.3.1 pep8-naming==0.5.0 From 7926e0d0db8aa8e62dc5a60dd7bcf7be54723775 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Fri, 23 Mar 2018 08:53:54 -0400 Subject: [PATCH 16/31] Update pytest from 3.4.2 to 3.5.0 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index 6ee550c..14399f3 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -2,7 +2,7 @@ -r prod.txt # Testing -pytest==3.4.2 +pytest==3.5.0 WebTest==2.0.29 factory-boy==2.10.0 From 3b93e5f2ba01fc409d81b7901a904f363ae67bd0 Mon Sep 17 00:00:00 2001 From: Silvio Date: Fri, 30 Mar 2018 10:09:53 +0200 Subject: [PATCH 17/31] Using flask-wtf helper for csrf token field --- .../{{cookiecutter.app_name}}/templates/public/register.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/register.html b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/register.html index 1b10b31..7a97035 100644 --- a/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/register.html +++ b/{{cookiecutter.app_name}}/{{cookiecutter.app_name}}/templates/public/register.html @@ -5,7 +5,7 @@

Register


- + {{ form.csrf_token }}
{{form.username.label}} {{form.username(placeholder="Username", class_="form-control")}} From 736f0cb02d215210c217622957cf9b2346589a55 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Fri, 30 Mar 2018 18:26:10 -0400 Subject: [PATCH 18/31] Update sqlalchemy from 1.2.4 to 1.2.6 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index 8aa88be..4c444ca 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -11,7 +11,7 @@ click>=5.0 # Database Flask-SQLAlchemy==2.3.2 psycopg2==2.7.4 -SQLAlchemy==1.2.4 +SQLAlchemy==1.2.6 # Migrations Flask-Migrate==2.1.1 From bfb08ec14bfae2b3d7de894cd1f730f925e41b79 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 8 Apr 2018 17:03:13 -0400 Subject: [PATCH 19/31] Update flake8-quotes from 0.13.0 to 1.0.0 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index a07a59a..d1560b9 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -12,6 +12,6 @@ flake8-blind-except==0.1.1 flake8-debugger==3.1.0 flake8-docstrings==1.1.0 flake8-isort==2.5 -flake8-quotes==0.13.0 +flake8-quotes==1.0.0 isort==4.3.4 pep8-naming==0.5.0 From cb65a18dcbe832a5f09662b4a1e086866975177a Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Fri, 20 Apr 2018 18:43:36 -0400 Subject: [PATCH 20/31] Update sqlalchemy from 1.2.6 to 1.2.7 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index 4c444ca..1f0b836 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -11,7 +11,7 @@ click>=5.0 # Database Flask-SQLAlchemy==2.3.2 psycopg2==2.7.4 -SQLAlchemy==1.2.6 +SQLAlchemy==1.2.7 # Migrations Flask-Migrate==2.1.1 From 0f9bd3ca3199b4ab695d3cf02465e829b827f247 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 25 Apr 2018 07:44:47 -0400 Subject: [PATCH 21/31] Update pytest from 3.5.0 to 3.5.1 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index a07a59a..3f20c05 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -2,7 +2,7 @@ -r prod.txt # Testing -pytest==3.5.0 +pytest==3.5.1 WebTest==2.0.29 factory-boy==2.10.0 From a752f285d98ab06cfbc90f9d1554792b781100ea Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Thu, 26 Apr 2018 19:04:49 -0400 Subject: [PATCH 22/31] Update flask from 0.12.2 to 1.0 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index 4c444ca..572fc24 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -1,7 +1,7 @@ # Everything needed in production # Flask -Flask==0.12.2 +Flask==1.0 MarkupSafe==1.0 Werkzeug==0.14.1 Jinja2==2.10 From c3a409d42eb23a585fe22e96fe1fb5276e28b2bb Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 2 May 2018 13:22:00 -0400 Subject: [PATCH 23/31] Update flask from 1.0 to 1.0.2 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index def95ac..aa6b584 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -1,7 +1,7 @@ # Everything needed in production # Flask -Flask==1.0 +Flask==1.0.2 MarkupSafe==1.0 Werkzeug==0.14.1 Jinja2==2.10 From 84d90872a347fb5610e666d3a697a84503985609 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sat, 5 May 2018 12:54:04 -0400 Subject: [PATCH 24/31] Update factory-boy from 2.10.0 to 2.11.1 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index b143cc1..fe16897 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -4,7 +4,7 @@ # Testing pytest==3.5.1 WebTest==2.0.29 -factory-boy==2.10.0 +factory-boy==2.11.1 # Lint and code style flake8==3.5.0 From 5d866640f5bd881adac824bd07dfb705c8753939 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 6 May 2018 08:31:06 -0400 Subject: [PATCH 25/31] Update pep8-naming from 0.5.0 to 0.6.1 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index b143cc1..cbd99ac 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -14,4 +14,4 @@ flake8-docstrings==1.1.0 flake8-isort==2.5 flake8-quotes==1.0.0 isort==4.3.4 -pep8-naming==0.5.0 +pep8-naming==0.6.1 From 34a025831ebd39f2b38fc30c51d6ec5983520a2f Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Thu, 17 May 2018 12:04:28 -0400 Subject: [PATCH 26/31] Update pep8-naming from 0.6.1 to 0.7.0 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index f467496..e800004 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -14,4 +14,4 @@ flake8-docstrings==1.1.0 flake8-isort==2.5 flake8-quotes==1.0.0 isort==4.3.4 -pep8-naming==0.6.1 +pep8-naming==0.7.0 From f250afc09c36a18d66f4d498cc345ca86a37c157 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 23 May 2018 21:42:38 -0400 Subject: [PATCH 27/31] Update pytest from 3.5.1 to 3.6.0 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index e800004..04759f5 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -2,7 +2,7 @@ -r prod.txt # Testing -pytest==3.5.1 +pytest==3.6.0 WebTest==2.0.29 factory-boy==2.11.1 From df50c8ad6e26dc528996f0cf0ea388d9e84448db Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 28 May 2018 17:34:49 -0400 Subject: [PATCH 28/31] Update sqlalchemy from 1.2.7 to 1.2.8 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index aa6b584..dcb6961 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -11,7 +11,7 @@ click>=5.0 # Database Flask-SQLAlchemy==2.3.2 psycopg2==2.7.4 -SQLAlchemy==1.2.7 +SQLAlchemy==1.2.8 # Migrations Flask-Migrate==2.1.1 From 8fd786ac6b6488bf93d593a0b51fe12715d100c5 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 5 Jun 2018 23:19:05 -0400 Subject: [PATCH 29/31] Update pytest from 3.6.0 to 3.6.1 --- {{cookiecutter.app_name}}/requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/dev.txt b/{{cookiecutter.app_name}}/requirements/dev.txt index 04759f5..9789143 100644 --- a/{{cookiecutter.app_name}}/requirements/dev.txt +++ b/{{cookiecutter.app_name}}/requirements/dev.txt @@ -2,7 +2,7 @@ -r prod.txt # Testing -pytest==3.6.0 +pytest==3.6.1 WebTest==2.0.29 factory-boy==2.11.1 From f360454d18ffaaf3d7a6f5505cb20b7880b20bb1 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Thu, 7 Jun 2018 18:54:08 -0400 Subject: [PATCH 30/31] Update wtforms from 2.1 to 2.2.1 --- {{cookiecutter.app_name}}/requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/requirements/prod.txt b/{{cookiecutter.app_name}}/requirements/prod.txt index aa6b584..c9a39d5 100644 --- a/{{cookiecutter.app_name}}/requirements/prod.txt +++ b/{{cookiecutter.app_name}}/requirements/prod.txt @@ -18,7 +18,7 @@ Flask-Migrate==2.1.1 # Forms Flask-WTF==0.14.2 -WTForms==2.1 +WTForms==2.2.1 # Deployment gunicorn>=19.1.1 From 499f6c13eeb8f16c539b9fd1a21a1852f69baf16 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Sun, 10 Jun 2018 11:44:52 -0400 Subject: [PATCH 31/31] Upgrade invoke; drop py34; upgrade to node 8 --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a1b7c5d..ffe7c18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,13 +3,12 @@ sudo: false # http://docs.travis-ci.com/user/migrating-from-legacy/ language: python python: - 2.7 - - 3.4 - 3.5 - 3.6 install: - pip install cookiecutter - - pip install invoke==0.14.0 - - nvm install 6.10 - - nvm use 6.10 + - pip install invoke==1.0.0 + - nvm install 8.11.2 + - nvm use 8.11.2 script: - invoke test