File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
<!-- ## [Unreleased] -->
9
9
10
+ ## [ 2.0.1] - 2022-09-08
11
+
12
+ ### Changed
13
+
14
+ - Fix bug when SessionService.restoreSession method pass empty token to database.
15
+ - Fix bug when Auth.register method incorrectly pass username instead of user object to startSession method.
16
+ - Fix bug when server shutdown after error on WebSocket connection initialise method.
17
+ - Token field type in Session table in database schema.
18
+
10
19
## [ 2.0.0] - 2022-08-20
11
20
12
21
### Added
@@ -59,7 +68,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
59
68
- Logger service.
60
69
- Introspection module.
61
70
62
- [ unreleased ] : https://github.com/web-soft-llc/web-soft-server/compare/v2.0.0...master
71
+ [ unreleased ] : https://github.com/web-soft-llc/web-soft-server/compare/v2.0.1...master
72
+ [ 2.0.1 ] : https://github.com/web-soft-llc/web-soft-server/compare/v2.0.0...v2.0.1
63
73
[ 2.0.0 ] : https://github.com/web-soft-llc/web-soft-server/compare/v.1.0.2...v2.0.0
64
74
[ 1.0.2 ] : https://github.com/web-soft-llc/web-soft-server/compare/v.1.0.1...v.1.0.2
65
75
[ 1.0.1 ] : https://github.com/web-soft-llc/web-soft-server/compare/v.1.0.0...v.1.0.1
Original file line number Diff line number Diff line change 4
4
"name" : " DonVietnam" ,
5
5
"email" : " don.vietnam.js@gmail.com"
6
6
},
7
- "version" : " 2.0.0 " ,
7
+ "version" : " 2.0.1 " ,
8
8
"description" : " Server for web-soft-projects." ,
9
9
"license" : " MIT" ,
10
10
"keywords" : [
Original file line number Diff line number Diff line change 1
1
class Example {
2
- method ( { param1 } , client ) {
2
+ method ( data , client ) {
3
3
console . log ( client . user ) ;
4
4
return { message : 'Hello from server!' } ;
5
5
}
You can’t perform that action at this time.
0 commit comments