Skip to content

Commit

Permalink
Merge pull request #957 from dpgaspar/release/2.0.0
Browse files Browse the repository at this point in the history
Release/2.0.0
  • Loading branch information
dpgaspar committed Apr 18, 2019
2 parents 193f609 + 947da3d commit ea59955
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
Flask-AppBuilder ChangeLog
==========================

Improvements and Bug fixes on 1.13.1
------------------------------------
Improvements and Bug fixes on 2.0.0
-----------------------------------

- Fix, #951 M-M fields are always required, now they default to not required with optional required flag on col info dict
- Fix, #885 list view ordering problem of related model with dotted notation, fixes #884
- Fix, #946 Factory app pattern
- (DEPRECATION) New, command line integrated with Flask cli, fabmanager is deprecated and will be removed on 1.16.X
- New, config key, FAB_SECURITY_MANAGER_CLASS to declare custom SecurityManager classes.
- New, sub command 'create-permissions' to create all permissions when update_perms is False.
- New, config key, FAB_UPDATE_PERMS to flag FAB to update or not update permissions.
- Fix, #955 Find permission view menu superset issue #1944
- Fix, new version location, removed deprecated imp package from setup

Improvements and Bug fixes on 1.13.0
------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ Change Log

`Versions <https://github.com/dpgaspar/Flask-AppBuilder/tree/master/CHANGELOG.rst>`_ for further detail on what changed.

Since 2.0.0 that `fabmanager` command line is considered **deprecated**, use the new `flask fab <command>` instead

Fixes, Bugs and contributions
-----------------------------

Expand Down
2 changes: 1 addition & 1 deletion flask_appbuilder/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Daniel Vaz Gaspar"
__version__ = '1.13.0'
__version__ = '2.0.0'

from .actions import action # noqa: F401
from .api import ModelRestApi # noqa: F401
Expand Down
4 changes: 2 additions & 2 deletions flask_appbuilder/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
# Fall back to Python 2's urllib2
from urllib2 import urlopen

click.echo(click.style("fabmanager is going to be deprecated in 1.16.X, you can use "
" the same commands on the improved 'flask fab <command>'", fg="red"))
click.echo(click.style("fabmanager is going to be deprecated in 2.2.X, you can use "
"the same commands on the improved 'flask fab <command>'", fg="red"))

SQLA_REPO_URL = (
"https://github.com/dpgaspar/Flask-AppBuilder-Skeleton/archive/master.zip"
Expand Down

0 comments on commit ea59955

Please sign in to comment.