Skip to content

Commit 7c21256

Browse files
committed
docs: add changelog for v0.2.0
1 parent e92e5fd commit 7c21256

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

CHANGELOG.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
_This changelog follows the [keep a changelog][keep-a-changelog]_ format to maintain a human readable changelog.
44

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+
539
## [0.1.2](https://github.com/typestack/socket-controllers/compare/v0.1.1...v0.1.2) (2023-01-30)
640

741
### Added
@@ -19,7 +53,6 @@ _This changelog follows the [keep a changelog][keep-a-changelog]_ format to main
1953
});
2054
```
2155

22-
2356
## [0.1.1](https://github.com/typestack/socket-controllers/compare/v0.1.0...v0.1.1) (2023-01-27)
2457

2558
### Added

0 commit comments

Comments
 (0)