From 84ec5f4abc9c35c2d9b0c643db23a86879366613 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 May 2022 00:24:47 +0000 Subject: [PATCH 01/11] Bump actions/setup-node from 3.1.1 to 3.2.0 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.1.1...v3.2.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 618c1ae..0b0941c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: steps: - run: sudo apt install -y gettext - uses: actions/setup-python@v3 - - uses: actions/setup-node@v3.1.1 + - uses: actions/setup-node@v3.2.0 with: node-version: 'lts/*' - uses: actions/checkout@v3 From 845ebcbdd7fdd7845e0a1849a9c3fecb7d6769b0 Mon Sep 17 00:00:00 2001 From: Johannes Maron Date: Wed, 18 May 2022 10:25:44 +0200 Subject: [PATCH 02/11] Update wagtail CI suite settings --- tests/testapp/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testapp/settings.py b/tests/testapp/settings.py index 75329b0..50a7f44 100644 --- a/tests/testapp/settings.py +++ b/tests/testapp/settings.py @@ -51,8 +51,8 @@ INSTALLED_APPS += [ "mailauth.contrib.wagtail", "wagtail.admin", + "wagtail.users", "wagtail.core", - "wagtail", ] AUTHENTICATION_BACKENDS = ("mailauth.backends.MailAuthBackend",) From 4e0038adc094797671a0d74abe1cafee6a656258 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Jun 2022 00:26:36 +0000 Subject: [PATCH 03/11] Bump actions/setup-node from 3.2.0 to 3.3.0 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.2.0...v3.3.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b0941c..c160a20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: steps: - run: sudo apt install -y gettext - uses: actions/setup-python@v3 - - uses: actions/setup-node@v3.2.0 + - uses: actions/setup-node@v3.3.0 with: node-version: 'lts/*' - uses: actions/checkout@v3 From 34889962c3392acec44d5504dc5116cf5ac26185 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Jun 2022 00:32:11 +0000 Subject: [PATCH 04/11] Bump actions/setup-python from 3 to 4 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 16 ++++++++++------ .github/workflows/release.yml | 4 +++- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c160a20..b471315 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,9 +20,10 @@ jobs: - "pydocstyle ." runs-on: ubuntu-latest steps: - - uses: actions/setup-python@v3 - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: + python-version: "3.10" cache: 'pip' cache-dependency-path: 'requirements.txt' - run: python -m pip install -r requirements.txt @@ -32,7 +33,9 @@ jobs: runs-on: ubuntu-latest steps: - run: sudo apt install -y gettext - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 + with: + python-version: "3.10" - uses: actions/setup-node@v3.3.0 with: node-version: 'lts/*' @@ -48,9 +51,10 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/setup-python@v3 - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: + python-version: "3.10" cache: 'pip' cache-dependency-path: 'requirements.txt' - run: python -m pip install --upgrade pip setuptools wheel @@ -69,7 +73,7 @@ jobs: - "3.10" steps: - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - run: python -m pip install --upgrade pip setuptools wheel @@ -90,7 +94,7 @@ jobs: python-version: ["3.10"] steps: - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - run: python -m pip install --upgrade pip setuptools wheel @@ -122,7 +126,7 @@ jobs: options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - run: python -m pip install --upgrade pip setuptools wheel diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42e9ab3..70c84f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 + with: + python-version: "3.10" - name: Install Python dependencies run: python -m pip install --upgrade pip setuptools wheel twine - name: Build dist packages From 1356f882bcc71465c21fe770ccd9b5839b68d976 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jun 2022 00:32:12 +0000 Subject: [PATCH 05/11] Bump black from 22.3.0 to 22.6.0 Bumps [black](https://github.com/psf/black) from 22.3.0 to 22.6.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/22.3.0...22.6.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b62c63b..99240cb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ Django>=2.2 Wagtail>=2.8 bandit==1.7.4 -black==22.3.0 +black==22.6.0 flake8==4.0.1 isort==5.10.1 pydocstyle==6.1.1 From f39371b28c06e411393b5536d9de17a40c73b1fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Jul 2022 00:25:40 +0000 Subject: [PATCH 06/11] Bump actions/setup-node from 3.3.0 to 3.4.0 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b471315..9a3d6cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.10" - - uses: actions/setup-node@v3.3.0 + - uses: actions/setup-node@v3.4.0 with: node-version: 'lts/*' - uses: actions/checkout@v3 From 5738fe11db9e9b3f00847c3973b2fbd2dc5bc5cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Jul 2022 00:39:56 +0000 Subject: [PATCH 07/11] Bump actions/setup-node from 3.4.0 to 3.4.1 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.4.0 to 3.4.1. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.4.0...v3.4.1) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a3d6cb..178d4a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.10" - - uses: actions/setup-node@v3.4.0 + - uses: actions/setup-node@v3.4.1 with: node-version: 'lts/*' - uses: actions/checkout@v3 From 85f220f74469a5feefe022ac6fc47a0ce913d70e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Aug 2022 01:12:22 +0000 Subject: [PATCH 08/11] Bump flake8 from 4.0.1 to 5.0.1 Bumps [flake8](https://github.com/pycqa/flake8) from 4.0.1 to 5.0.1. - [Release notes](https://github.com/pycqa/flake8/releases) - [Commits](https://github.com/pycqa/flake8/compare/4.0.1...5.0.1) --- updated-dependencies: - dependency-name: flake8 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 99240cb..636c29f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,6 @@ Django>=2.2 Wagtail>=2.8 bandit==1.7.4 black==22.6.0 -flake8==4.0.1 +flake8==5.0.1 isort==5.10.1 pydocstyle==6.1.1 From 49c386e3179de2abd7ecf82597e93dd43ed28355 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Aug 2022 00:32:36 +0000 Subject: [PATCH 09/11] Bump flake8 from 5.0.1 to 5.0.3 Bumps [flake8](https://github.com/pycqa/flake8) from 5.0.1 to 5.0.3. - [Release notes](https://github.com/pycqa/flake8/releases) - [Commits](https://github.com/pycqa/flake8/compare/5.0.1...5.0.3) --- updated-dependencies: - dependency-name: flake8 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 636c29f..1ebc7af 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,6 @@ Django>=2.2 Wagtail>=2.8 bandit==1.7.4 black==22.6.0 -flake8==5.0.1 +flake8==5.0.3 isort==5.10.1 pydocstyle==6.1.1 From e5ef4ae90829584b4248779309a09cae001c28be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Aug 2022 00:32:34 +0000 Subject: [PATCH 10/11] Bump flake8 from 5.0.3 to 5.0.4 Bumps [flake8](https://github.com/pycqa/flake8) from 5.0.3 to 5.0.4. - [Release notes](https://github.com/pycqa/flake8/releases) - [Commits](https://github.com/pycqa/flake8/compare/5.0.3...5.0.4) --- updated-dependencies: - dependency-name: flake8 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1ebc7af..2b76962 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,6 @@ Django>=2.2 Wagtail>=2.8 bandit==1.7.4 black==22.6.0 -flake8==5.0.3 +flake8==5.0.4 isort==5.10.1 pydocstyle==6.1.1 From 895255d576cf7dc7537a28e8f9b79821c27583a2 Mon Sep 17 00:00:00 2001 From: Johannes Maron Date: Mon, 8 Aug 2022 10:47:35 +0200 Subject: [PATCH 11/11] Add Django 4.1 support --- .github/workflows/ci.yml | 3 ++- setup.cfg | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 178d4a4..b1784cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,6 +115,7 @@ jobs: python-version: ["3.10"] django-version: - "4.0" + - "4.1" services: postgres: image: postgres @@ -131,7 +132,7 @@ jobs: python-version: ${{ matrix.python-version }} - run: python -m pip install --upgrade pip setuptools wheel - uses: actions/checkout@v3 - - run: python -m pip install "psycopg2-binary<2.9" Django~=${{ matrix.django-version }}a + - run: python -m pip install "psycopg2-binary<2.9" Django~=${{ matrix.django-version }}.0 - run: python setup.py test env: DB_PORT: ${{ job.services.postgres.ports[5432] }} diff --git a/setup.cfg b/setup.cfg index 00a18d0..5ece0a8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,6 +22,7 @@ classifier = Topic :: Internet Framework :: Django Framework :: Django :: 4.0 + Framework :: Django :: 4.1 keywords = django, otp, password, email [options]