Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
---
version: v9.2.0
version: v9.3.0
changelog:
- date: 2025-11-04
version: v9.3.0
changes:
- type: feature
text: "BREAKING CHANGES: The HereNow method will return a maximum of 1000 occupants per channel. Previously, it was returning all occupants without limit parameter support. Use pagination through offset when more than 1000 occupants present in channel."
- type: bug
text: "Discard use of gcm and replaced with fcm for push notification service type of google. Removed mpns support."
- date: 2025-10-02
version: v9.2.0
changes:
Expand Down Expand Up @@ -795,7 +802,7 @@ sdks:
distribution-type: package
distribution-repository: git release
package-name: PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v9.2.0/PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v9.3.0/PubNub.unitypackage
requires:
-
name: "UnityEditor"
Expand Down Expand Up @@ -927,7 +934,7 @@ sdks:
distribution-type: package
distribution-repository: git release
package-name: PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v9.2.0/PubNub.unitypackage
location: https://github.com/pubnub/unity/releases/download/v9.3.0/PubNub.unitypackage
requires:
-
name: "UnityEditor"
Expand Down
Binary file modified PubNubUnity/Assets/PubNub/Runtime/Plugins/PubnubApiUnity.dll
Binary file not shown.
30 changes: 30 additions & 0 deletions PubNubUnity/Assets/PubNub/Runtime/Plugins/PubnubApiUnity.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions PubNubUnity/Assets/PubNub/Runtime/Util/NewtonsoftJsonUnity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public object DeserializeToObject(object rawObject, Type type)
{
try
{
logger?.Debug("JsonNet Deserializing object data.");
logger?.Trace("JsonNet Deserializing object data.");
if (rawObject is JObject jObject)
{
return jObject.ToObject(type);
Expand All @@ -159,7 +159,7 @@ public object DeserializeToObject(object rawObject, Type type)

public object DeserializeToObject(string jsonString)
{
logger?.Debug("JsonNet Deserializing json string data.");
logger?.Trace("JsonNet Deserializing json string data.");
object result = JsonConvert.DeserializeObject<object>(jsonString,
new JsonSerializerSettings { DateParseHandling = DateParseHandling.None, MaxDepth = 64 });
if (result.GetType().ToString() == "Newtonsoft.Json.Linq.JArray")
Expand All @@ -180,7 +180,7 @@ public object DeserializeToObject(string jsonString)
result = objectContainer;
}
}
logger?.Debug("JsonNet Deserialsed json string data successfully.");
logger?.Trace("JsonNet Deserialsed json string data successfully.");
return result;
}

Expand Down Expand Up @@ -215,7 +215,7 @@ private bool IsGenericTypeForMessage<T>()

private T DeserializeMessageToObjectBasedOnPlatform<T>(List<object> listObject)
{
logger?.Debug("JsonNet Deserializing Messages data.");
logger?.Trace("JsonNet Deserializing Messages data.");
T ret = default(T);
Type dataType = typeof(T).GetTypeInfo().GenericTypeArguments[0];
Type generic = typeof(PNMessageResult<>);
Expand Down Expand Up @@ -290,7 +290,7 @@ private T DeserializeMessageToObjectBasedOnPlatform<T>(List<object> listObject)

ret = (T)Convert.ChangeType(message, specific, CultureInfo.InvariantCulture);
}
logger?.Debug("JsonNet Deserialized Messages successfully.");
logger?.Trace("JsonNet Deserialized Messages successfully.");
return ret;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace PubnubApi.Unity
{
public class UnityPNSDKSource : IPNSDKSource {

private const string build = "9.2.0";
private const string build = "9.3.0";
public string Build => build;

public string GetPNSDK() {
Expand Down
2 changes: 1 addition & 1 deletion PubNubUnity/Assets/PubNub/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.pubnub.sdk",
"version": "9.2.0",
"version": "9.3.0",
"displayName": "PubNub SDK",
"description": "PubNub Real-time Cloud-Hosted Push API and Push Notification Client Frameworks",
"unity": "2018.2",
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.2.0
9.3.0
Loading