From 3a515d0c8134909cda93270106caf9ceae1904df Mon Sep 17 00:00:00 2001 From: Daniel Vaz Gaspar Date: Fri, 19 Feb 2021 16:21:16 +0000 Subject: [PATCH] release: 3.2.0 (#1571) * release: 3.2.0 * add release prefix to PR lint * update lint --- .github/prlint.json | 2 +- .github/workflows/ptlint.yml | 2 +- CHANGELOG.rst | 15 +++++++++++++++ flask_appbuilder/__init__.py | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.github/prlint.json b/.github/prlint.json index c1f6927624..749b075d27 100644 --- a/.github/prlint.json +++ b/.github/prlint.json @@ -1,7 +1,7 @@ { "title": [ { - "pattern": "^(build|chore|ci|docs|feat|fix|perf|refactor|style|test|other)((.+))?:\\s.+", + "pattern": "^(build|chore|ci|docs|feat|fix|perf|refactor|style|test|release|other)((.+))?:\\s.+", "message": "Your title needs to be prefixed with a topic." } ] diff --git a/.github/workflows/ptlint.yml b/.github/workflows/ptlint.yml index 1a09b0b4d8..d8c0155999 100644 --- a/.github/workflows/ptlint.yml +++ b/.github/workflows/ptlint.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: morrisoncole/pr-lint-action@v1.4.1 with: - title-regex: "^(build|chore|ci|docs|feat|fix|perf|refactor|style|test|other)((.+))?:\\s.+" + title-regex: "^(build|chore|ci|docs|feat|fix|perf|refactor|style|test|release|other)((.+))?:\\s.+" on-failed-regex-fail-action: true on-failed-regex-request-changes: false on-failed-regex-create-review: false diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 939bb4fbbc..0040a85782 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,21 @@ Flask-AppBuilder ChangeLog ========================== +Improvements and Bug fixes on 3.2.0 +----------------------------------- + +- fix: issue 1469 error in filters (#1541) [Duy Nguyen Hoang] +- fix: showing excluded routes in server log (#1565) [runoutnow] +- refactor: AUTH_LDAP/AUTH_OAUTH + implement role mapping (#1374) [Mathew Wicks] +- fix(api): OpenAPI spec of nested components without auto generated names (#1547) [Daniel Vaz Gaspar] +- fix(mvc): action confirmation on single show view (#1539) [Daniel Vaz Gaspar] +- docs: improve docs around LDAP auth (#1526) [Daniel Vaz Gaspar] +- ci: tests for python 3.8 and 3.9 (#1525) [Daniel Vaz Gaspar] +- docs: fix, swagger path in readme (#1518) [Felix Rilling] +- fix: oauth #1511 (#1522) [Daniel Vaz Gaspar] +- fix: github actions (#1523) [Daniel Vaz Gaspar] +- fix: changelog (#1507) [Daniel Vaz Gaspar] + Improvements and Bug fixes on 3.1.1 ----------------------------------- diff --git a/flask_appbuilder/__init__.py b/flask_appbuilder/__init__.py index 163fdc9579..eed34e0aa0 100644 --- a/flask_appbuilder/__init__.py +++ b/flask_appbuilder/__init__.py @@ -1,5 +1,5 @@ __author__ = "Daniel Vaz Gaspar" -__version__ = "3.1.1" +__version__ = "3.2.0" from .actions import action # noqa: F401 from .api import ModelRestApi # noqa: F401