Skip to content

Commit b1f380b

Browse files
committed
Version 2.0.1
1 parent da237f2 commit b1f380b

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
<!-- ## [Unreleased] -->
99

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+
1019
## [2.0.0] - 2022-08-20
1120

1221
### Added
@@ -59,7 +68,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5968
- Logger service.
6069
- Introspection module.
6170

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
6373
[2.0.0]: https://github.com/web-soft-llc/web-soft-server/compare/v.1.0.2...v2.0.0
6474
[1.0.2]: https://github.com/web-soft-llc/web-soft-server/compare/v.1.0.1...v.1.0.2
6575
[1.0.1]: https://github.com/web-soft-llc/web-soft-server/compare/v.1.0.0...v.1.0.1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "DonVietnam",
55
"email": "don.vietnam.js@gmail.com"
66
},
7-
"version": "2.0.0",
7+
"version": "2.0.1",
88
"description": "Server for web-soft-projects.",
99
"license": "MIT",
1010
"keywords": [

src/modules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class Example {
2-
method({ param1 }, client) {
2+
method(data, client) {
33
console.log(client.user);
44
return { message: 'Hello from server!' };
55
}

0 commit comments

Comments
 (0)