File tree Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
_ This changelog follows the [ keep a changelog] [ keep-a-changelog ] _ format to maintain a human readable changelog.
4
4
5
+ ## [ 0.2.0] ( https://github.com/typestack/socket-controllers/compare/v0.1.2...v0.2.0 ) (2023-04-10)
6
+
7
+ ### Breaking Changes
8
+
9
+ - Replaced ` ScopedContainerGetterParams ` with ` SocketEventContext `
10
+
11
+ BEFORE:
12
+
13
+ ``` ts
14
+ scopedContainerGetter : (args : ScopedContainerGetterParams ) => {
15
+ // ...
16
+ }
17
+ ```
18
+
19
+ AFTER:
20
+
21
+ ``` ts
22
+ scopedContainerGetter : (args : SocketEventContext ) => {
23
+ // ...
24
+ }
25
+ ```
26
+ Note: The new interface contains all properties of the previous
27
+
28
+
29
+ ### Added
30
+
31
+ - Added scoped container dispose support
32
+ - Added interceptor support
33
+ - Added ack support
34
+
35
+ ### Changed
36
+
37
+ - ` glob ` package updated from ` 8.1.0 ` to ` 10.0.0 `
38
+
5
39
## [ 0.1.2] ( https://github.com/typestack/socket-controllers/compare/v0.1.1...v0.1.2 ) (2023-01-30)
6
40
7
41
### Added
@@ -19,7 +53,6 @@ _This changelog follows the [keep a changelog][keep-a-changelog]_ format to main
19
53
});
20
54
```
21
55
22
-
23
56
## [ 0.1.1] ( https://github.com/typestack/socket-controllers/compare/v0.1.0...v0.1.1 ) (2023-01-27)
24
57
25
58
### Added
You can’t perform that action at this time.
0 commit comments