You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Subscription set will subscribe added entities and SharedWorker will make proper subscribe throttling (#443)
feat(subscription-set): subscription set will subscribe added entities
`SubscriptionSet` will subscribe / unsubscribe added / removed `Subscription` or `SubscriptionSet`
objects if the set itself already subscribed.
fix(shared-worker): fix subscribe throttle
Fix issue because of which throttle didn't consider difference in client settings (throttled only
by user ID and subscribe key, which is not enough).
fix(smart-heartbeat): fix smart heartbeat usage
With the fix, smart heartbeat as feature has been added to the SDK, and it is disabled by default.
refactor(shared-worker): use more complex aggregation timer key
Copy file name to clipboardExpand all lines: .pubnub.yml
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,14 @@
1
1
---
2
2
changelog:
3
+
- date: 2025-03-10
4
+
version: v9.0.0
5
+
changes:
6
+
- type: feature
7
+
text: "BREAKING CHANGES: `SubscriptionSet` will subscribe / unsubscribe added / removed `Subscription` or `SubscriptionSet` objects if the set itself already subscribed."
8
+
- type: bug
9
+
text: "Fix issue because of which throttle didn't consider difference in client settings (throttled only by user ID and subscribe key, which is not enough)."
10
+
- type: bug
11
+
text: "With the fix, smart heartbeat as feature has been added to the SDK, and it is disabled by default."
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,13 @@
1
+
## v9.0.0
2
+
March 10 2025
3
+
4
+
#### Added
5
+
- BREAKING CHANGES: `SubscriptionSet` will subscribe / unsubscribe added / removed `Subscription` or `SubscriptionSet` objects if the set itself already subscribed.
6
+
7
+
#### Fixed
8
+
- Fix issue because of which throttle didn't consider difference in client settings (throttled only by user ID and subscribe key, which is not enough).
9
+
- With the fix, smart heartbeat as feature has been added to the SDK, and it is disabled by default.
0 commit comments