@waku/sds 0.0.8-ff9c430.0 → 0.0.8
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 +26 -0
- package/bundle/index.js +614 -25
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js.map +1 -1
- package/dist/message_channel/events.d.ts +27 -3
- package/dist/message_channel/events.js +6 -0
- package/dist/message_channel/events.js.map +1 -1
- package/dist/message_channel/index.d.ts +1 -1
- package/dist/message_channel/message.d.ts +17 -13
- package/dist/message_channel/message.js +19 -11
- package/dist/message_channel/message.js.map +1 -1
- package/dist/message_channel/message_channel.d.ts +31 -3
- package/dist/message_channel/message_channel.js +99 -10
- package/dist/message_channel/message_channel.js.map +1 -1
- package/dist/message_channel/repair/buffers.d.ts +106 -0
- package/dist/message_channel/repair/buffers.js +206 -0
- package/dist/message_channel/repair/buffers.js.map +1 -0
- package/dist/message_channel/repair/repair.d.ts +92 -0
- package/dist/message_channel/repair/repair.js +209 -0
- package/dist/message_channel/repair/repair.js.map +1 -0
- package/dist/message_channel/repair/utils.d.ts +40 -0
- package/dist/message_channel/repair/utils.js +61 -0
- package/dist/message_channel/repair/utils.js.map +1 -0
- package/package.json +93 -1
- package/src/index.ts +7 -1
- package/src/message_channel/events.ts +28 -3
- package/src/message_channel/index.ts +1 -1
- package/src/message_channel/message.ts +24 -13
- package/src/message_channel/message_channel.ts +151 -17
- package/src/message_channel/repair/buffers.ts +277 -0
- package/src/message_channel/repair/repair.ts +331 -0
- package/src/message_channel/repair/utils.ts +80 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.8](https://github.com/waku-org/js-waku/compare/sds-v0.0.7...sds-v0.0.8) (2025-10-31)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* do not send sync messages with empty history ([#2658](https://github.com/waku-org/js-waku/issues/2658))
|
|
9
|
+
* SDS lamport timestamp overflow and keep it to current time ([#2664](https://github.com/waku-org/js-waku/issues/2664))
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Add SDS-Repair (SDS-R) to the SDS implementation ([#2698](https://github.com/waku-org/js-waku/issues/2698)) ([5334a7f](https://github.com/waku-org/js-waku/commit/5334a7fcc91544d33294beaad9b45e641ecf404d))
|
|
14
|
+
* Do not send sync messages with empty history ([#2658](https://github.com/waku-org/js-waku/issues/2658)) ([e92f6a2](https://github.com/waku-org/js-waku/commit/e92f6a2409b915a8a1edd839ef3b0c6c8670b1ec))
|
|
15
|
+
* Reliable channels search up to 30 days to find message ([#2657](https://github.com/waku-org/js-waku/issues/2657)) ([593bc45](https://github.com/waku-org/js-waku/commit/593bc452259c48503e099946bb316c764f89cc1d))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* SDS lamport timestamp overflow and keep it to current time ([#2664](https://github.com/waku-org/js-waku/issues/2664)) ([c0ecb6a](https://github.com/waku-org/js-waku/commit/c0ecb6abbaae0544f352b89293f59f274600a916))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
* The following workspace dependencies were updated
|
|
26
|
+
* dependencies
|
|
27
|
+
* @waku/proto bumped from ^0.0.14 to ^0.0.15
|
|
28
|
+
|
|
3
29
|
## [0.0.7](https://github.com/waku-org/js-waku/compare/sds-v0.0.6...sds-v0.0.7) (2025-09-20)
|
|
4
30
|
|
|
5
31
|
|