File tree Expand file tree Collapse file tree 5 files changed +24
-12
lines changed Expand file tree Collapse file tree 5 files changed +24
-12
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 1.0.4] 2022-01-16
4
+ ### Improvements
5
+
6
+ - Bump Flask Codebase to [ v2stable.0.1] ( https://github.com/app-generator/boilerplate-code-flask-dashboard/releases )
7
+ - Dependencies update (all packages)
8
+ - Flask==2.0.2 (latest stable version)
9
+ - flask_wtf==1.0.0
10
+ - jinja2==3.0.3
11
+ - flask-restx==0.5.1
12
+ - Forms Update:
13
+ - Replace ` TextField ` (deprecated) with ` StringField `
14
+
3
15
## [ 1.0.3] 2021-12-09
4
16
### Improvements
5
17
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Open-source **[Flask Dashboard](https://appseed.us/admin-dashboards/flask)** gen
4
4
5
5
<br />
6
6
7
- - ` Up-to-date dependencies ` : ** Flask 2.0.1 **
7
+ - ` Up-to-date dependencies `
8
8
- [ SCSS compilation] ( #recompile-css ) via ** Gulp**
9
9
- UI Kit: ** [ Soft UI Dashboard] ( https://bit.ly/2Q1uIfK ) ** (Free Version) provided by ** Creative-Tim**
10
10
- ` DBMS ` : SQLite, PostgreSQL (production)
Original file line number Diff line number Diff line change 4
4
"""
5
5
6
6
from flask_wtf import FlaskForm
7
- from wtforms import TextField , PasswordField
7
+ from wtforms import StringField , PasswordField
8
8
from wtforms .validators import Email , DataRequired
9
9
10
10
# login and registration
11
11
12
12
13
13
class LoginForm (FlaskForm ):
14
- username = TextField ('Username' ,
14
+ username = StringField ('Username' ,
15
15
id = 'username_login' ,
16
16
validators = [DataRequired ()])
17
17
password = PasswordField ('Password' ,
@@ -20,10 +20,10 @@ class LoginForm(FlaskForm):
20
20
21
21
22
22
class CreateAccountForm (FlaskForm ):
23
- username = TextField ('Username' ,
23
+ username = StringField ('Username' ,
24
24
id = 'username_create' ,
25
25
validators = [DataRequired ()])
26
- email = TextField ('Email' ,
26
+ email = StringField ('Email' ,
27
27
id = 'email_create' ,
28
28
validators = [DataRequired (), Email ()])
29
29
password = PasswordField ('Password' ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " flask-soft-ui-dashboard" ,
3
3
"mastertemplate" : " boilerplate-code-flask-dashboard" ,
4
- "version" : " 1.0.3 " ,
4
+ "version" : " 1.0.4 " ,
5
5
"description" : " Template project - Flask Boilerplate Code" ,
6
6
"repository" : {
7
7
"type" : " git" ,
Original file line number Diff line number Diff line change 1
- flask == 2.0.1
1
+ flask == 2.0.2
2
2
flask_login == 0.5.0
3
3
flask_migrate == 3.1.0
4
- WTForms == 2.3.3
5
- flask_wtf == 0.15.1
4
+ WTForms == 3.0.1
5
+ flask_wtf == 1.0.0
6
6
flask_sqlalchemy == 2.5.1
7
- sqlalchemy == 1.4.23
7
+ sqlalchemy == 1.4.29
8
8
email_validator == 1.1.3
9
- python-decouple == 3.4
9
+ python-decouple == 3.5
10
10
gunicorn == 20.1.0
11
- jinja2 == 3.0.1
11
+ jinja2 == 3.0.3
12
12
flask-restx == 0.5.1
You can’t perform that action at this time.
0 commit comments