diff --git a/.pubnub.yml b/.pubnub.yml index 817cd811d..3aaeaca95 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,8 +1,15 @@ name: c-sharp -version: "7.0.0" +version: "7.1.0" schema: 1 scm: github.com/pubnub/c-sharp changelog: + - date: 2024-12-04 + version: v7.1.0 + changes: + - type: feature + text: "Added support for CustomMessageType in publish, signal, files features." + - type: feature + text: "Added support for Type field in membership APIs." - date: 2024-10-30 version: v7.0.0 changes: @@ -806,7 +813,7 @@ features: - QUERY-PARAM supported-platforms: - - version: Pubnub 'C#' 7.0.0 + version: Pubnub 'C#' 7.1.0 platforms: - Windows 10 and up - Windows Server 2008 and up @@ -817,7 +824,7 @@ supported-platforms: - .Net Framework 4.6.1+ - .Net Framework 6.0 - - version: PubnubPCL 'C#' 7.0.0 + version: PubnubPCL 'C#' 7.1.0 platforms: - Xamarin.Android - Xamarin.iOS @@ -837,7 +844,7 @@ supported-platforms: - .Net Core - .Net 6.0 - - version: PubnubUWP 'C#' 7.0.0 + version: PubnubUWP 'C#' 7.1.0 platforms: - Windows Phone 10 - Universal Windows Apps @@ -861,7 +868,7 @@ sdks: distribution-type: source distribution-repository: GitHub package-name: Pubnub - location: https://github.com/pubnub/c-sharp/releases/tag/v7.0.0.0 + location: https://github.com/pubnub/c-sharp/releases/tag/v7.1.0.0 requires: - name: ".Net" @@ -1144,7 +1151,7 @@ sdks: distribution-type: source distribution-repository: GitHub package-name: PubNubPCL - location: https://github.com/pubnub/c-sharp/releases/tag/v7.0.0.0 + location: https://github.com/pubnub/c-sharp/releases/tag/v7.1.0.0 requires: - name: ".Net Core" @@ -1503,7 +1510,7 @@ sdks: distribution-type: source distribution-repository: GitHub package-name: PubnubUWP - location: https://github.com/pubnub/c-sharp/releases/tag/v7.0.0.0 + location: https://github.com/pubnub/c-sharp/releases/tag/v7.1.0.0 requires: - name: "Universal Windows Platform Development" diff --git a/CHANGELOG b/CHANGELOG index b679a9ef5..e03bbb5b8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +v7.1.0 - December 04 2024 +----------------------------- +- Added: added support for CustomMessageType in publish, signal, files features. +- Added: added support for Type field in membership APIs. + v7.0.0 - October 30 2024 ----------------------------- - Added: added support for `Channel`, `ChannelGroup`, `Subscription` and `SubscriptionSet`, `ChannelMetadata`, `UserMetadata` entities for Subscribe related operation. diff --git a/src/Api/PubnubApi/Properties/AssemblyInfo.cs b/src/Api/PubnubApi/Properties/AssemblyInfo.cs index b4981c086..62a78e2dc 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.0.0.0")] -[assembly: AssemblyFileVersion("7.0.0.0")] +[assembly: AssemblyVersion("7.1.0.0")] +[assembly: AssemblyFileVersion("7.1.0.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 8cdfb456f..5aa9b1055 100644 --- a/src/Api/PubnubApi/PubnubApi.csproj +++ b/src/Api/PubnubApi/PubnubApi.csproj @@ -14,7 +14,7 @@ Pubnub - 7.0.0.0 + 7.1.0.0 PubNub C# .NET - Web Data Push API Pandu Masabathula PubNub @@ -22,11 +22,8 @@ http://pubnub.s3.amazonaws.com/2011/powered-by-pubnub/pubnub-icon-600x600.png true https://github.com/pubnub/c-sharp/ - Added support for `Channel`, `ChannelGroup`, `Subscription` and `SubscriptionSet`, `ChannelMetadata`, `UserMetadata` entities for Subscribe related operation. -BREAKING CHANGES: Added new event listeners support. -BREAKING CHANGES: All apis calls will be made through `HttpClient` by default. -Default value for `EnableEventEngine` is set to `true`, Subscribe operation will be executed by event engine by default. -Removed telemetry manager. + Added support for CustomMessageType in publish, signal, files features. +Added support for Type field in membership APIs. 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/PubnubApiPCL/PubnubApiPCL.csproj b/src/Api/PubnubApiPCL/PubnubApiPCL.csproj index f681576ca..a5c2af288 100644 --- a/src/Api/PubnubApiPCL/PubnubApiPCL.csproj +++ b/src/Api/PubnubApiPCL/PubnubApiPCL.csproj @@ -15,7 +15,7 @@ PubnubPCL - 7.0.0.0 + 7.1.0.0 PubNub C# .NET - Web Data Push API Pandu Masabathula PubNub @@ -23,11 +23,8 @@ http://pubnub.s3.amazonaws.com/2011/powered-by-pubnub/pubnub-icon-600x600.png true https://github.com/pubnub/c-sharp/ - Added support for `Channel`, `ChannelGroup`, `Subscription` and `SubscriptionSet`, `ChannelMetadata`, `UserMetadata` entities for Subscribe related operation. -BREAKING CHANGES: Added new event listeners support. -BREAKING CHANGES: All apis calls will be made through `HttpClient` by default. -Default value for `EnableEventEngine` is set to `true`, Subscribe operation will be executed by event engine by default. -Removed telemetry manager. + Added support for CustomMessageType in publish, signal, files features. +Added support for Type field in membership APIs. 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 b74ac7efa..105fef7f7 100644 --- a/src/Api/PubnubApiUWP/PubnubApiUWP.csproj +++ b/src/Api/PubnubApiUWP/PubnubApiUWP.csproj @@ -16,7 +16,7 @@ PubnubUWP - 7.0.0.0 + 7.1.0.0 PubNub C# .NET - Web Data Push API Pandu Masabathula PubNub @@ -24,11 +24,8 @@ http://pubnub.s3.amazonaws.com/2011/powered-by-pubnub/pubnub-icon-600x600.png true https://github.com/pubnub/c-sharp/ - Added support for `Channel`, `ChannelGroup`, `Subscription` and `SubscriptionSet`, `ChannelMetadata`, `UserMetadata` entities for Subscribe related operation. -BREAKING CHANGES: Added new event listeners support. -BREAKING CHANGES: All apis calls will be made through `HttpClient` by default. -Default value for `EnableEventEngine` is set to `true`, Subscribe operation will be executed by event engine by default. -Removed telemetry manager. + Added support for CustomMessageType in publish, signal, files features. +Added support for Type field in membership APIs. 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 510ac70ec..ed0d66ae7 100644 --- a/src/Api/PubnubApiUnity/PubnubApiUnity.csproj +++ b/src/Api/PubnubApiUnity/PubnubApiUnity.csproj @@ -15,7 +15,7 @@ PubnubApiUnity - 7.0.0.0 + 7.1.0.0 PubNub C# .NET - Web Data Push API Pandu Masabathula PubNub