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
* added `Channel`, `ChannelGroup`, `ChannelMetadata`, `UserMetadata`, `Subscription`, `SubscriptionSet` entities definitions
* added factory function at PubNub and implementation at EventEmitter to support new listener interface
* lib/dist
* * test: adding channel, channelGroup, subscription, SubscriptionSet listenr tests
* fix: unique channel and groups for subscription, no telemetry for event engine, avoid duplicate listener registration
* dist/lib
* refactored listeners tests with callback style
* take-1: commented new tests
* Update run-tests.yml
* fix: telemetry condition to add query param
* lib/dist
* fix: lint
* reverted workflow file changes
* restore all previous changes of telemetry
* dist/lib
* *remove unncessary subscriptionOptions prop. * added support for subscriptionSet operations
* lib/dist
* refactor: naming convention in subscriptionSet class
* no presence subscription for channel metadata
* fix channles and groups initialisation in constructor
* refactor: subscriptionSet will get constructed in form of set of subscriptions when channels/groups set is provided
* handling overlapping or unique channels/groups subscribe/unsubscribe with new listener/entity interface
* tests and utils
* lib/dist
* test/ cleanup after test
* refactor/fix: new listeners backward compatible to old subscription loop
* dist/lib
* fix typo in argument
* dist/lib
* attemp to address Codacy reported warnings
* lint!
* Codacy warnings fix
* Codacy warning fix
* added support for event specific listener registration.
* refactor subscription/subscriptionSet class definition through common abstract class.
* dist/lib
* fix: test flakiness
* PubNub SDK v7.6.0 release.
---------
Co-authored-by: PubNub Release Bot <[email protected]>
Copy file name to clipboardExpand all lines: .pubnub.yml
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
---
2
2
changelog:
3
+
- date: 2024-02-21
4
+
version: v7.6.0
5
+
changes:
6
+
- type: feature
7
+
text: "Adding channel, channelGroup, channelMetadata and userMetadata entities to be first-class citizens to access APIs related to them. Currently, access is provided only for subscription API."
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
## v7.6.0
2
+
February 21 2024
3
+
4
+
#### Added
5
+
- Adding channel, channelGroup, channelMetadata and userMetadata entities to be first-class citizens to access APIs related to them. Currently, access is provided only for subscription API.
0 commit comments