diff --git a/.pubnub.yml b/.pubnub.yml index 080d83e33..0ce28efd2 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,8 +1,13 @@ name: c-sharp -version: "7.3.13" +version: "7.3.14" schema: 1 scm: github.com/pubnub/c-sharp changelog: + - date: 2025-06-25 + version: v7.3.14 + changes: + - type: improvement + text: "Updated log type from Error to Warn for TaskCanceledException." - date: 2025-06-06 version: v7.3.13 changes: @@ -914,7 +919,7 @@ features: - QUERY-PARAM supported-platforms: - - version: Pubnub 'C#' 7.3.13 + version: Pubnub 'C#' 7.3.14 platforms: - Windows 10 and up - Windows Server 2008 and up @@ -925,7 +930,7 @@ supported-platforms: - .Net Framework 4.6.1+ - .Net Framework 6.0 - - version: PubnubPCL 'C#' 7.3.13 + version: PubnubPCL 'C#' 7.3.14 platforms: - Xamarin.Android - Xamarin.iOS @@ -945,7 +950,7 @@ supported-platforms: - .Net Core - .Net 6.0 - - version: PubnubUWP 'C#' 7.3.13 + version: PubnubUWP 'C#' 7.3.14 platforms: - Windows Phone 10 - Universal Windows Apps @@ -969,7 +974,7 @@ sdks: distribution-type: source distribution-repository: GitHub package-name: Pubnub - location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.13.0 + location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.14.0 requires: - name: ".Net" @@ -1252,7 +1257,7 @@ sdks: distribution-type: source distribution-repository: GitHub package-name: PubNubPCL - location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.13.0 + location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.14.0 requires: - name: ".Net Core" @@ -1611,7 +1616,7 @@ sdks: distribution-type: source distribution-repository: GitHub package-name: PubnubUWP - location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.13.0 + location: https://github.com/pubnub/c-sharp/releases/tag/v7.3.14.0 requires: - name: "Universal Windows Platform Development" diff --git a/CHANGELOG b/CHANGELOG index 4f1ce1a5f..72c6128fd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v7.3.14 - June 25 2025 +----------------------------- +- Modified: updated log type from Error to Warn for TaskCanceledException. + v7.3.13 - June 06 2025 ----------------------------- - Fixed: improved parsing of file download errors to be properly set in operation status ErrorData. diff --git a/src/Api/PubnubApi/Properties/AssemblyInfo.cs b/src/Api/PubnubApi/Properties/AssemblyInfo.cs index bb50e25ff..db4165da1 100644 --- a/src/Api/PubnubApi/Properties/AssemblyInfo.cs +++ b/src/Api/PubnubApi/Properties/AssemblyInfo.cs @@ -11,8 +11,8 @@ [assembly: AssemblyProduct("Pubnub C# SDK")] [assembly: AssemblyCopyright("Copyright © 2021")] [assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("7.3.13.0")] -[assembly: AssemblyFileVersion("7.3.13.0")] +[assembly: AssemblyVersion("7.3.14.0")] +[assembly: AssemblyFileVersion("7.3.14.0")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. diff --git a/src/Api/PubnubApi/PubnubApi.csproj b/src/Api/PubnubApi/PubnubApi.csproj index a70a828af..aa160d28c 100644 --- a/src/Api/PubnubApi/PubnubApi.csproj +++ b/src/Api/PubnubApi/PubnubApi.csproj @@ -14,7 +14,7 @@ Pubnub - 7.3.13.0 + 7.3.14.0 PubNub C# .NET - Web Data Push API Pandu Masabathula PubNub @@ -22,7 +22,7 @@ http://pubnub.s3.amazonaws.com/2011/powered-by-pubnub/pubnub-icon-600x600.png true https://github.com/pubnub/c-sharp/ - Improved parsing of file download errors to be properly set in operation status ErrorData. + Updated log type from Error to Warn for TaskCanceledException. Web Data Push Real-time Notifications ESB Message Broadcasting Distributed Computing PubNub is a Massively Scalable Web Push Service for Web and Mobile Games. This is a cloud-based service for broadcasting messages to thousands of web and mobile clients simultaneously diff --git a/src/Api/PubnubApi/Transport/HttpClientService.cs b/src/Api/PubnubApi/Transport/HttpClientService.cs index f123a840b..5b643630f 100644 --- a/src/Api/PubnubApi/Transport/HttpClientService.cs +++ b/src/Api/PubnubApi/Transport/HttpClientService.cs @@ -392,7 +392,7 @@ private TransportResponse GetTransportResponseForTaskCancelation(TransportReques { TransportResponse transportResponse; - logger?.Error($"HttpClient Service: TaskCanceledException for url {transportRequest.RequestUrl}"); + logger?.Warn($"HttpClient Service: TaskCanceledException for url {transportRequest.RequestUrl}"); transportResponse = new TransportResponse() { RequestUrl = transportRequest.RequestUrl, diff --git a/src/Api/PubnubApiPCL/PubnubApiPCL.csproj b/src/Api/PubnubApiPCL/PubnubApiPCL.csproj index 2ab7c7202..5f95ff31b 100644 --- a/src/Api/PubnubApiPCL/PubnubApiPCL.csproj +++ b/src/Api/PubnubApiPCL/PubnubApiPCL.csproj @@ -14,7 +14,7 @@ PubnubPCL - 7.3.13.0 + 7.3.14.0 PubNub C# .NET - Web Data Push API Pandu Masabathula PubNub @@ -22,7 +22,7 @@ http://pubnub.s3.amazonaws.com/2011/powered-by-pubnub/pubnub-icon-600x600.png true https://github.com/pubnub/c-sharp/ - Improved parsing of file download errors to be properly set in operation status ErrorData. + Updated log type from Error to Warn for TaskCanceledException. Web Data Push Real-time Notifications ESB Message Broadcasting Distributed Computing PubNub is a Massively Scalable Web Push Service for Web and Mobile Games. This is a cloud-based service for broadcasting messages to thousands of web and mobile clients simultaneously diff --git a/src/Api/PubnubApiUWP/PubnubApiUWP.csproj b/src/Api/PubnubApiUWP/PubnubApiUWP.csproj index 715bedf4d..3b7446838 100644 --- a/src/Api/PubnubApiUWP/PubnubApiUWP.csproj +++ b/src/Api/PubnubApiUWP/PubnubApiUWP.csproj @@ -16,7 +16,7 @@ PubnubUWP - 7.3.13.0 + 7.3.14.0 PubNub C# .NET - Web Data Push API Pandu Masabathula PubNub @@ -24,7 +24,7 @@ http://pubnub.s3.amazonaws.com/2011/powered-by-pubnub/pubnub-icon-600x600.png true https://github.com/pubnub/c-sharp/ - Improved parsing of file download errors to be properly set in operation status ErrorData. + Updated log type from Error to Warn for TaskCanceledException. Web Data Push Real-time Notifications ESB Message Broadcasting Distributed Computing PubNub is a Massively Scalable Web Push Service for Web and Mobile Games. This is a cloud-based service for broadcasting messages to thousands of web and mobile clients simultaneously diff --git a/src/Api/PubnubApiUnity/PubnubApiUnity.csproj b/src/Api/PubnubApiUnity/PubnubApiUnity.csproj index b3c66cdc7..53c2e5075 100644 --- a/src/Api/PubnubApiUnity/PubnubApiUnity.csproj +++ b/src/Api/PubnubApiUnity/PubnubApiUnity.csproj @@ -15,7 +15,7 @@ PubnubApiUnity - 7.3.13.0 + 7.3.14.0 PubNub C# .NET - Web Data Push API Pandu Masabathula PubNub