Skip to content

Commit a0783f1

Browse files
author
App Generator
committed
v1.0.1-rc1 - Bump Codebase v1.0.5
- Codebase Flask Dashboard: v1.0.5 - Freeze flask_sqlalchemy version
1 parent 92b2d61 commit a0783f1

File tree

5 files changed

+37
-38
lines changed

5 files changed

+37
-38
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [1.0.1] 2021-03-18
4+
### Improvements
5+
6+
- Bump Codebase: [Flask Dashboard](https://github.com/app-generator/boilerplate-code-flask-dashboard) v1.0.5
7+
- Freeze used versions in `requirements.txt`
8+
- flask_sqlalchemy = 2.4.4
9+
- sqlalchemy = 1.3.23
10+
311
## [1.0.0] 2021-01-17
412

513
- Bump UI: [Jinja Volt](https://github.com/app-generator/jinja-volt-dashboard/releases) v1.0.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
> Features
88
99
- DBMS: SQLite, PostgreSQL (production)
10-
- DB Tools: SQLAlchemy ORM, Alembic (schema migrations)
10+
- DB Tools: SQLAlchemy ORM, Flask-Migrate (schema migrations)
1111
- Modular design with **Blueprints**, simple codebase
1212
- Session-Based authentication (via **flask_login**), Forms validation
1313
- Deployment scripts: Docker, Gunicorn / Nginx, Heroku

app/base/routes.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,6 @@ def logout():
9393
logout_user()
9494
return redirect(url_for('base_blueprint.login'))
9595

96-
@blueprint.route('/shutdown')
97-
def shutdown():
98-
func = request.environ.get('werkzeug.server.shutdown')
99-
if func is None:
100-
raise RuntimeError('Not running with the Werkzeug Server')
101-
func()
102-
return 'Server shutting down...'
103-
10496
## Errors
10597

10698
@login_manager.unauthorized_handler

package.json

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
{
2-
"name": "flask-dashboard-volt",
3-
"mastertemplate": "boilerplate-code-flask-dashboard",
4-
"version": "1.0.1",
5-
"description": "Template project - Flask Boilerplate Code",
6-
"repository": {
7-
"type": "git",
8-
"url": "https://github.com/app-generator/flask-dashboard-volt"
9-
},
10-
"bugs": {
11-
"url": "https://github.com/app-generator/flask-dashboard-volt/issues",
12-
"email": "[email protected]"
13-
},
14-
"author": "AppSeed App Generator <[email protected]> (https://appseed.us)",
15-
"engines": {
16-
"node": ">=10.0.0"
17-
},
18-
"dependencies": {
19-
},
20-
"devDependencies": {
21-
}
22-
}
2+
"name": "flask-dashboard-volt",
3+
"mastertemplate": "boilerplate-code-flask-dashboard",
4+
"version": "1.0.1",
5+
"description": "Template project - Flask Boilerplate Code",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/app-generator/flask-dashboard-volt"
9+
},
10+
"bugs": {
11+
"url": "https://github.com/app-generator/flask-dashboard-volt/issues",
12+
"email": "[email protected]"
13+
},
14+
"author": "AppSeed App Generator <[email protected]> (https://appseed.us)",
15+
"engines": {
16+
"node": ">=10.0.0"
17+
},
18+
"dependencies": {},
19+
"devDependencies": {}
20+
}

requirements.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
flask
2-
flask_login
3-
flask_migrate
4-
flask_wtf
5-
flask_sqlalchemy==2.*
6-
email_validator
7-
python-decouple
8-
gunicorn
1+
flask==1.1.2
2+
flask_login==0.5.0
3+
flask_migrate==2.7.0
4+
flask_wtf==0.14.3
5+
flask_sqlalchemy==2.4.4
6+
sqlalchemy==1.3.23
7+
email_validator==1.1.2
8+
python-decouple==3.4
9+
gunicorn==20.0.4

0 commit comments

Comments
 (0)