Skip to content

Commit 3a515d0

Browse files
authored
release: 3.2.0 (#1571)
* release: 3.2.0 * add release prefix to PR lint * update lint
1 parent 9065a9f commit 3a515d0

4 files changed

Lines changed: 18 additions & 3 deletions

File tree

.github/prlint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": [
33
{
4-
"pattern": "^(build|chore|ci|docs|feat|fix|perf|refactor|style|test|other)((.+))?:\\s.+",
4+
"pattern": "^(build|chore|ci|docs|feat|fix|perf|refactor|style|test|release|other)((.+))?:\\s.+",
55
"message": "Your title needs to be prefixed with a topic."
66
}
77
]

.github/workflows/ptlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: morrisoncole/pr-lint-action@v1.4.1
1616
with:
17-
title-regex: "^(build|chore|ci|docs|feat|fix|perf|refactor|style|test|other)((.+))?:\\s.+"
17+
title-regex: "^(build|chore|ci|docs|feat|fix|perf|refactor|style|test|release|other)((.+))?:\\s.+"
1818
on-failed-regex-fail-action: true
1919
on-failed-regex-request-changes: false
2020
on-failed-regex-create-review: false

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Flask-AppBuilder ChangeLog
22
==========================
33

4+
Improvements and Bug fixes on 3.2.0
5+
-----------------------------------
6+
7+
- fix: issue 1469 error in filters (#1541) [Duy Nguyen Hoang]
8+
- fix: showing excluded routes in server log (#1565) [runoutnow]
9+
- refactor: AUTH_LDAP/AUTH_OAUTH + implement role mapping (#1374) [Mathew Wicks]
10+
- fix(api): OpenAPI spec of nested components without auto generated names (#1547) [Daniel Vaz Gaspar]
11+
- fix(mvc): action confirmation on single show view (#1539) [Daniel Vaz Gaspar]
12+
- docs: improve docs around LDAP auth (#1526) [Daniel Vaz Gaspar]
13+
- ci: tests for python 3.8 and 3.9 (#1525) [Daniel Vaz Gaspar]
14+
- docs: fix, swagger path in readme (#1518) [Felix Rilling]
15+
- fix: oauth #1511 (#1522) [Daniel Vaz Gaspar]
16+
- fix: github actions (#1523) [Daniel Vaz Gaspar]
17+
- fix: changelog (#1507) [Daniel Vaz Gaspar]
18+
419
Improvements and Bug fixes on 3.1.1
520
-----------------------------------
621

flask_appbuilder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = "Daniel Vaz Gaspar"
2-
__version__ = "3.1.1"
2+
__version__ = "3.2.0"
33

44
from .actions import action # noqa: F401
55
from .api import ModelRestApi # noqa: F401

0 commit comments

Comments
 (0)