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
feat(retry-configuration): use default retry configuration
Use default retry configuration for `subscribe` and `presence` REST API calls.
fix(deserializer): fix subscribe response deserialize enum
Fix the `Presence` enum variant to not intercept user-published messages that partly match the
`Presence` variant.
refactor(subscribe): refactor modern subscription flow
Synchronize subscription flow with other SDKs.
refactor(presence): refactor modern presence flow
Synchronize presence flow with other SDKs.
feat(here-now): add `limit` and `offset` configuration options
Add `limit` (default `1000`) and `offset` parameters for `here_now` to fetch presence in portions.
fix(subscribe): fix duplicated channels and groups for `subscribe`
Fix issue that allowed passing duplicated channels and groups for `subscribe`.
fix(heartbeat): fix duplicated channels and groups for `heartbeat`
Fix issue that allowed passing duplicated channels and groups for `heartbeat`.
---------
Co-authored-by: Mateusz Dahlke <39696234+Xavrax@users.noreply.github.com>
Copy file name to clipboardExpand all lines: .pubnub.yml
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,24 @@
1
1
name: rust
2
-
version: 0.6.0
2
+
version: 0.7.0
3
3
schema: 1
4
4
scm: github.com/pubnub/rust
5
5
files: []
6
6
changelog:
7
+
- date: 2025-10-28
8
+
version: 0.7.0
9
+
changes:
10
+
- type: feature
11
+
text: "Add `limit` (default `1000`) and `offset` parameters for `here_now` to fetch presence in portions."
12
+
- type: feature
13
+
text: "Use default retry configuration for `subscribe` and `presence` REST API calls."
14
+
- type: bug
15
+
text: "Fix the issue because of which it was possible to add the same channel / group multiple times to the `subscribe`, `heartbeat`, or `leave` requests."
16
+
- type: bug
17
+
text: "Fix the `Presence` enum variant to not intercept user-published messages that partly match the `Presence` variant."
18
+
- type: improvement
19
+
text: "Synchronize subscription flow with other SDKs."
20
+
- type: improvement
21
+
text: "Synchronize presence flow with other SDKs."
0 commit comments