Skip to content

Commit 5dba9d1

Browse files
Implement in-house CBOR implementation to replace PeterO.CBOR (#258)
* implement in-house CBOR implementation, remove PeterO.CBOR package, refactor TokenManager and add additional token parsing tests * change specific error logs to warnings * add missing entities snippets * PubNub SDK v7.3.15.0 release. --------- Co-authored-by: PubNub Release Bot <[email protected]>
1 parent 7a04519 commit 5dba9d1

File tree

15 files changed

+995
-278
lines changed

15 files changed

+995
-278
lines changed

.pubnub.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
name: c-sharp
2-
version: "7.3.14"
2+
version: "7.3.15"
33
schema: 1
44
scm: github.com/pubnub/c-sharp
55
changelog:
6+
- date: 2025-07-03
7+
version: v7.3.15
8+
changes:
9+
- type: feature
10+
text: "Implemented an in-house CBOR solution for ParseToken() handling to reduce total SDK+dependencies size."
611
- date: 2025-06-25
712
version: v7.3.14
813
changes:
@@ -919,7 +924,7 @@ features:
919924
- QUERY-PARAM
920925
supported-platforms:
921926
-
922-
version: Pubnub 'C#' 7.3.14
927+
version: Pubnub 'C#' 7.3.15
923928
platforms:
924929
- Windows 10 and up
925930
- Windows Server 2008 and up
@@ -930,7 +935,7 @@ supported-platforms:
930935
- .Net Framework 4.6.1+
931936
- .Net Framework 6.0
932937
-
933-
version: PubnubPCL 'C#' 7.3.14
938+
version: PubnubPCL 'C#' 7.3.15
934939
platforms:
935940
- Xamarin.Android
936941
- Xamarin.iOS
@@ -950,7 +955,7 @@ supported-platforms:
950955
- .Net Core
951956
- .Net 6.0
952957
-
953-
version: PubnubUWP 'C#' 7.3.14
958+
version: PubnubUWP 'C#' 7.3.15
954959
platforms:
955960
- Windows Phone 10
956961
- Universal Windows Apps
@@ -974,7 +979,7 @@ sdks:
974979
distribution-type: source
975980
distribution-repository: GitHub
976981
package-name: Pubnub
977-
location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.14.0
982+
location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.15.0
978983
requires:
979984
-
980985
name: ".Net"
@@ -1257,7 +1262,7 @@ sdks:
12571262
distribution-type: source
12581263
distribution-repository: GitHub
12591264
package-name: PubNubPCL
1260-
location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.14.0
1265+
location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.15.0
12611266
requires:
12621267
-
12631268
name: ".Net Core"
@@ -1616,7 +1621,7 @@ sdks:
16161621
distribution-type: source
16171622
distribution-repository: GitHub
16181623
package-name: PubnubUWP
1619-
location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.14.0
1624+
location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.15.0
16201625
requires:
16211626
-
16221627
name: "Universal Windows Platform Development"

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v7.3.15 - July 03 2025
2+
-----------------------------
3+
- Added: implemented an in-house CBOR solution for ParseToken() handling to reduce total SDK+dependencies size.
4+
15
v7.3.14 - June 25 2025
26
-----------------------------
37
- Modified: updated log type from Error to Warn for TaskCanceledException.

0 commit comments

Comments
 (0)