Skip to content

Commit 863dfdd

Browse files
committed
docs: update changelog
1 parent fdfd5c7 commit 863dfdd

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
# Changelog and release notes
22

3-
### Under development
3+
### 0.0.5 (04-02-2019)
4+
5+
* Enh: Added support dynamic namespace
6+
* Enh: Added `NspParams`, `NspParam` decorators to handle dynamic namespace name params
7+
* Enh: Allowed use function array for controllers and middlewares
8+
* Bug: Import middlewares from directory

src/SocketControllerExecutor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export class SocketControllerExecutor {
118118
});
119119

120120
} else if (action.type === ActionTypes.MESSAGE) {
121-
socket.on(action.name, (data: any[]) => { // todo get multiple args
121+
socket.on(action.name, (data: any) => { // todo get multiple args
122122
this.handleAction(action, {socket: socket, data: data})
123123
.then(result => this.handleSuccessResult(result, action, socket))
124124
.catch(error => this.handleFailResult(error, action, socket));

0 commit comments

Comments
 (0)