Skip to content

Commit e2568d5

Browse files
PubNub SDK v11.0.0 release.
1 parent ebf9aef commit e2568d5

File tree

5 files changed

+32
-7
lines changed

5 files changed

+32
-7
lines changed

.pubnub.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: kotlin
2-
version: 10.6.0
2+
version: 11.0.0
33
schema: 1
44
scm: github.com/pubnub/kotlin
55
files:
6-
- build/libs/pubnub-kotlin-10.6.0-all.jar
6+
- build/libs/pubnub-kotlin-11.0.0-all.jar
77
sdks:
88
-
99
type: library
@@ -23,8 +23,8 @@ sdks:
2323
-
2424
distribution-type: library
2525
distribution-repository: maven
26-
package-name: pubnub-kotlin-10.6.0
27-
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.6.0/pubnub-kotlin-10.6.0.jar
26+
package-name: pubnub-kotlin-11.0.0
27+
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/11.0.0/pubnub-kotlin-11.0.0.jar
2828
supported-platforms:
2929
supported-operating-systems:
3030
Android:
@@ -121,6 +121,19 @@ sdks:
121121
license-url: https://www.apache.org/licenses/LICENSE-2.0.txt
122122
is-required: Required
123123
changelog:
124+
- date: 2025-10-21
125+
version: v11.0.0
126+
changes:
127+
- type: feature
128+
text: "Added limit and offset parameters for hereNow. Number of returned users per channel by default is limited to 1000. Breaking change."
129+
- type: bug
130+
text: "Single-channel hereNow with includeUUIDs=false now returns channel data in the channels map for consistency with multi-channel behaviour. Previously, the channels map was empty in this scenario, forcing reliance on totalOccupancy field only. Breaking change."
131+
- type: bug
132+
text: "Removed possibility to use deprecated MPNS -Microsoft Push Notification Service. Breaking change."
133+
- type: bug
134+
text: "Added deprecation warning for GCP and old APNS PushType. ."
135+
- type: bug
136+
text: "In case FCM is chosen as PushType type REST query param gets fcm value instead of gcm."
124137
- date: 2025-09-11
125138
version: v10.6.0
126139
changes:

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## v11.0.0
2+
October 21 2025
3+
4+
#### Added
5+
- Added limit and offset parameters for hereNow. Number of returned users per channel by default is limited to 1000. Breaking change.
6+
7+
#### Fixed
8+
- Single-channel hereNow with includeUUIDs=false now returns channel data in the channels map for consistency with multi-channel behaviour. Previously, the channels map was empty in this scenario, forcing reliance on totalOccupancy field only. Breaking change.
9+
- Removed possibility to use deprecated MPNS -Microsoft Push Notification Service. Breaking change.
10+
- Added deprecation warning for GCP and old APNS PushType. .
11+
- In case FCM is chosen as PushType type REST query param gets fcm value instead of gcm.
12+
113
## v10.6.0
214
September 11 2025
315

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your
2020
<dependency>
2121
<groupId>com.pubnub</groupId>
2222
<artifactId>pubnub-kotlin</artifactId>
23-
<version>10.6.0</version>
23+
<version>11.0.0</version>
2424
</dependency>
2525
```
2626

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RELEASE_SIGNING_ENABLED=true
1818
SONATYPE_HOST=DEFAULT
1919
SONATYPE_AUTOMATIC_RELEASE=false
2020
GROUP=com.pubnub
21-
VERSION_NAME=10.6.0
21+
VERSION_NAME=11.0.0
2222
POM_PACKAGING=jar
2323

2424
POM_NAME=PubNub SDK

pubnub-kotlin/pubnub-kotlin-impl/src/test/kotlin/com/pubnub/api/legacy/PubNubImplTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class PubNubImplTest : BaseTest() {
5656
fun getVersionAndTimeStamp() {
5757
val version = PubNubImpl.SDK_VERSION
5858
val timeStamp = PubNubImpl.timestamp()
59-
assertEquals("10.6.0", version)
59+
assertEquals("11.0.0", version)
6060
assertTrue(timeStamp > 0)
6161
}
6262

0 commit comments

Comments
 (0)