@culpeo/async-ws 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9453a7c: Initial release
|
|
8
|
+
|
|
9
|
+
- Cross-platform WebSocket client for Node.js and browsers
|
|
10
|
+
- Promise-based `connect()`, `send()`, `receive()`, `close()` API
|
|
11
|
+
- Async iteration with `for await...of`
|
|
12
|
+
- Message buffering with configurable `maxBufferSize`
|
|
13
|
+
- Clean close info tracking via `lastCloseInfo`
|
|
14
|
+
- TypeScript-first with bundled type definitions
|
|
15
|
+
|
|
3
16
|
## 0.1.0
|
|
4
17
|
|
|
5
18
|
Initial release.
|