Skip to content

Commit

Permalink
SetChannelMetadata name - removed default empty (#187)
Browse files Browse the repository at this point in the history
* SetChannelMetadata name - removed default empty
  • Loading branch information
budgetpreneur authored Sep 4, 2023
1 parent 9f4e2aa commit 82bee35
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 16 deletions.
19 changes: 12 additions & 7 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: c-sharp
version: "6.17.0"
version: "6.18.0"
schema: 1
scm: github.com/pubnub/c-sharp
changelog:
- date: 2023-09-04
version: v6.18.0
changes:
- type: bug
text: "Allow name param as optional in SetChannelMetadata. Removed default empty value."
- date: 2023-07-10
version: v6.17.0
changes:
Expand Down Expand Up @@ -725,7 +730,7 @@ features:
- QUERY-PARAM
supported-platforms:
-
version: Pubnub 'C#' 6.17.0
version: Pubnub 'C#' 6.18.0
platforms:
- Windows 10 and up
- Windows Server 2008 and up
Expand All @@ -735,7 +740,7 @@ supported-platforms:
- .Net Framework 4.5
- .Net Framework 4.6.1+
-
version: PubnubPCL 'C#' 6.17.0
version: PubnubPCL 'C#' 6.18.0
platforms:
- Xamarin.Android
- Xamarin.iOS
Expand All @@ -755,7 +760,7 @@ supported-platforms:
- .Net Core
- .Net 6.0
-
version: PubnubUWP 'C#' 6.17.0
version: PubnubUWP 'C#' 6.18.0
platforms:
- Windows Phone 10
- Universal Windows Apps
Expand All @@ -779,7 +784,7 @@ sdks:
distribution-type: source
distribution-repository: GitHub
package-name: Pubnub
location: https://github.com/pubnub/c-sharp/releases/tag/v6.17.0.0
location: https://github.com/pubnub/c-sharp/releases/tag/v6.18.0.0
requires:
-
name: ".Net"
Expand Down Expand Up @@ -1062,7 +1067,7 @@ sdks:
distribution-type: source
distribution-repository: GitHub
package-name: PubNubPCL
location: https://github.com/pubnub/c-sharp/releases/tag/v6.17.0.0
location: https://github.com/pubnub/c-sharp/releases/tag/v6.18.0.0
requires:
-
name: ".Net Core"
Expand Down Expand Up @@ -1421,7 +1426,7 @@ sdks:
distribution-type: source
distribution-repository: GitHub
package-name: PubnubUWP
location: https://github.com/pubnub/c-sharp/releases/tag/v6.17.0.0
location: https://github.com/pubnub/c-sharp/releases/tag/v6.18.0.0
requires:
-
name: "Universal Windows Platform Development"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v6.18.0 - September 04 2023
-----------------------------
- Fixed: allow name param as optional in SetChannelMetadata. Removed default empty value.

v6.17.0 - July 10 2023
-----------------------------
- Modified: validate json string before deserialization.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class SetChannelMetadataOperation : PubnubCoreBase
private readonly EndPoint.TelemetryManager pubnubTelemetryMgr;

private string chMetaId = "";
private string chMetaName = "";
private string chMetaName;
private string chMetaDesc;
private Dictionary<string, object> chMetaCustom;
private bool includeCustom;
Expand Down
4 changes: 2 additions & 2 deletions src/Api/PubnubApi/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
[assembly: AssemblyProduct("Pubnub C# SDK")]
[assembly: AssemblyCopyright("Copyright © 2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyVersion("6.17.0.0")]
[assembly: AssemblyFileVersion("6.17.0.0")]
[assembly: AssemblyVersion("6.18.0.0")]
[assembly: AssemblyFileVersion("6.18.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.
Expand Down
4 changes: 2 additions & 2 deletions src/Api/PubnubApi/PubnubApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@

<PropertyGroup>
<PackageId>Pubnub</PackageId>
<PackageVersion>6.17.0.0</PackageVersion>
<PackageVersion>6.18.0.0</PackageVersion>
<Title>PubNub C# .NET - Web Data Push API</Title>
<Authors>Pandu Masabathula</Authors>
<Owners>PubNub</Owners>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIconUrl>http://pubnub.s3.amazonaws.com/2011/powered-by-pubnub/pubnub-icon-600x600.png</PackageIconUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/pubnub/c-sharp/</RepositoryUrl>
<PackageReleaseNotes>Validate json string before deserialization.</PackageReleaseNotes>
<PackageReleaseNotes>Allow name param as optional in SetChannelMetadata. Removed default empty value.</PackageReleaseNotes>
<PackageTags>Web Data Push Real-time Notifications ESB Message Broadcasting Distributed Computing</PackageTags>
<!--<Summary>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</Summary>-->
<Description>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</Description>
Expand Down
4 changes: 2 additions & 2 deletions src/Api/PubnubApiPCL/PubnubApiPCL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@

<PropertyGroup>
<PackageId>PubnubPCL</PackageId>
<PackageVersion>6.17.0.0</PackageVersion>
<PackageVersion>6.18.0.0</PackageVersion>
<Title>PubNub C# .NET - Web Data Push API</Title>
<Authors>Pandu Masabathula</Authors>
<Owners>PubNub</Owners>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIconUrl>http://pubnub.s3.amazonaws.com/2011/powered-by-pubnub/pubnub-icon-600x600.png</PackageIconUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/pubnub/c-sharp/</RepositoryUrl>
<PackageReleaseNotes>Validate json string before deserialization.</PackageReleaseNotes>
<PackageReleaseNotes>Allow name param as optional in SetChannelMetadata. Removed default empty value.</PackageReleaseNotes>
<PackageTags>Web Data Push Real-time Notifications ESB Message Broadcasting Distributed Computing</PackageTags>
<!--<Summary>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</Summary>-->
<Description>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</Description>
Expand Down
4 changes: 2 additions & 2 deletions src/Api/PubnubApiUWP/PubnubApiUWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@

<PropertyGroup>
<PackageId>PubnubUWP</PackageId>
<PackageVersion>6.17.0.0</PackageVersion>
<PackageVersion>6.18.0.0</PackageVersion>
<Title>PubNub C# .NET - Web Data Push API</Title>
<Authors>Pandu Masabathula</Authors>
<Owners>PubNub</Owners>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIconUrl>http://pubnub.s3.amazonaws.com/2011/powered-by-pubnub/pubnub-icon-600x600.png</PackageIconUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/pubnub/c-sharp/</RepositoryUrl>
<PackageReleaseNotes>Validate json string before deserialization.</PackageReleaseNotes>
<PackageReleaseNotes>Allow name param as optional in SetChannelMetadata. Removed default empty value.</PackageReleaseNotes>
<PackageTags>Web Data Push Real-time Notifications ESB Message Broadcasting Distributed Computing</PackageTags>
<!--<Summary>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</Summary>-->
<Description>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</Description>
Expand Down

0 comments on commit 82bee35

Please sign in to comment.