Skip to content

Commit 65984e1

Browse files
author
App Generator
committed
v1.0.2-rc1 - Bump Codebase v1.0.5
- Codebase Flask Dashboard v1.0.5 - Freeze flask_sqlalchemy version
1 parent 8d036c3 commit 65984e1

File tree

5 files changed

+24
-23
lines changed

5 files changed

+24
-23
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.2] 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.1] 2020-01-18
412
### Improvements
513

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [Gradient Able](https://appseed.us/admin-dashboards/flask-dashboard-gradient-pro) [Flask](https://appseed.us/admin-dashboards/flask)
1+
# [Gradient Able Flask](https://appseed.us/admin-dashboards/flask-gradient-able)
22

33
[Admin dashboard](https://appseed.us/admin-dashboards) generated by AppSeed in **[Flask](https://appseed.us/admin-dashboards/flask)** Framework. [Gradient Able](https://appseed.us/admin-dashboards/flask-dashboard-gradient-pro) Bootstrap 4 Free/Lite Admin Template is a complete solution for your dashboard creation. It combines colors that are easy on the eye, spacious cards, beautiful typography, and graphics.
44

@@ -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
@@ -275,4 +275,4 @@ Visit `http://localhost:8001` in your browser. The app should be up & running.
275275
<br />
276276

277277
---
278-
[Gradient Able](https://appseed.us/admin-dashboards/flask-dashboard-gradient-pro) [Flask](https://appseed.us/admin-dashboards/flask) - Provided by **AppSeed [App Generator](https://appseed.us/app-generator)**.
278+
[Gradient Able Flask](https://appseed.us/admin-dashboards/flask-gradient-able) - Provided by **AppSeed [App Generator](https://appseed.us/app-generator)**.

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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "flask-dashboard-gradientable",
2+
"name": "flask-gradient-able",
33
"mastertemplate": "boilerplate-code-flask-dashboard",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"description": "Template project - Flask Boilerplate Code",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/app-generator/flask-dashboard-gradientable"
8+
"url": "https://github.com/app-generator/flask-gradient-able"
99
},
1010
"bugs": {
11-
"url": "https://github.com/app-generator/flask-dashboard-gradientable/issues",
11+
"url": "https://github.com/app-generator/flask-gradient-able/issues",
1212
"email": "support@appseed.us"
1313
},
1414
"author": "AppSeed App Generator <support@appseed.us> (https://appseed.us)",

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)