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
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.13.0"
version: "6.14.0"
schema: 1
scm: github.com/pubnub/c-sharp
changelog:
- date: 2023-02-27
version: v6.14.0
changes:
- type: improvement
text: "Undeprecated GrantToken methods/properties."
- date: 2022-12-05
version: v6.13.0
changes:
Expand Down Expand Up @@ -701,7 +706,7 @@ features:
- QUERY-PARAM
supported-platforms:
-
version: Pubnub 'C#' 6.13.0
version: Pubnub 'C#' 6.14.0
platforms:
- Windows 10 and up
- Windows Server 2008 and up
Expand All @@ -711,7 +716,7 @@ supported-platforms:
- .Net Framework 4.5
- .Net Framework 4.6.1+
-
version: PubnubPCL 'C#' 6.13.0
version: PubnubPCL 'C#' 6.14.0
platforms:
- Xamarin.Android
- Xamarin.iOS
Expand All @@ -731,7 +736,7 @@ supported-platforms:
- .Net Core
- .Net 6.0
-
version: PubnubUWP 'C#' 6.13.0
version: PubnubUWP 'C#' 6.14.0
platforms:
- Windows Phone 10
- Universal Windows Apps
Expand All @@ -755,7 +760,7 @@ sdks:
distribution-type: source
distribution-repository: GitHub
package-name: Pubnub
location: https://github.com/pubnub/c-sharp/releases/tag/v6.13.0.0
location: https://github.com/pubnub/c-sharp/releases/tag/v6.14.0.0
requires:
-
name: ".Net"
Expand Down Expand Up @@ -1038,7 +1043,7 @@ sdks:
distribution-type: source
distribution-repository: GitHub
package-name: PubNubPCL
location: https://github.com/pubnub/c-sharp/releases/tag/v6.13.0.0
location: https://github.com/pubnub/c-sharp/releases/tag/v6.14.0.0
requires:
-
name: ".Net Core"
Expand Down Expand Up @@ -1397,7 +1402,7 @@ sdks:
distribution-type: source
distribution-repository: GitHub
package-name: PubnubUWP
location: https://github.com/pubnub/c-sharp/releases/tag/v6.13.0.0
location: https://github.com/pubnub/c-sharp/releases/tag/v6.14.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.14.0 - February 27 2023
-----------------------------
- Modified: undeprecated GrantToken methods/properties.

v6.13.0 - December 05 2022
-----------------------------
- Fixed: added null check for PublishFileMessage PNStatus in SendFileOperation.
Expand Down
1 change: 0 additions & 1 deletion src/Api/PubnubApi/EndPoint/Access/GrantTokenOperation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public GrantTokenOperation(PNConfiguration pubnubConfig, IJsonPluggableLibrary j
InitializeDefaultVariableObjectStates();
}

[Obsolete("AuthorizedUuid is deprecated, please use AuthorizedUserId instead.")]
public GrantTokenOperation AuthorizedUuid(string uuid)
{
if (!string.IsNullOrEmpty(pubnubAuthorizedUserId))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,9 @@ public class PNTokenPatterns : PNTokenPermissionMappingBase
}
public class PNTokenPermissionMappingBase
{
[Obsolete("Channels is deprecated, please use Spaces instead.")]
public Dictionary<string, PNTokenAuthValues> Channels { get; set; }

[Obsolete("ChannelGroups is deprecated.")]
public Dictionary<string, PNTokenAuthValues> ChannelGroups { get; set; }

[Obsolete("Uuids is deprecated, please use Users instead.")]
public Dictionary<string, PNTokenAuthValues> Uuids { get; set; }

public Dictionary<string, PNTokenAuthValues> Users { get; set; }
public Dictionary<string, PNTokenAuthValues> Spaces { get; set; }

Expand Down
1 change: 0 additions & 1 deletion src/Api/PubnubApi/PNConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public int PresenceInterval
public string AuthKey { get; set; }

[Obsolete("Uuid is deprecated, please use UserId instead.")]

public string Uuid
{
get
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.13.0.0")]
[assembly: AssemblyFileVersion("6.13.0.0")]
[assembly: AssemblyVersion("6.14.0.0")]
[assembly: AssemblyFileVersion("6.14.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
6 changes: 2 additions & 4 deletions src/Api/PubnubApi/PubnubApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,15 @@

<PropertyGroup>
<PackageId>Pubnub</PackageId>
<PackageVersion>6.13.0.0</PackageVersion>
<PackageVersion>6.14.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>Added null check for PublishFileMessage PNStatus in SendFileOperation.
Removed invalid Content-Type in ObjectsV2 request headers targeting .Net Frameworks.
Added CultureInfo.InvariantCulture to string formatting.</PackageReleaseNotes>
<PackageReleaseNotes>Undeprecated GrantToken methods/properties.</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
6 changes: 2 additions & 4 deletions src/Api/PubnubApiPCL/PubnubApiPCL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,15 @@

<PropertyGroup>
<PackageId>PubnubPCL</PackageId>
<PackageVersion>6.13.0.0</PackageVersion>
<PackageVersion>6.14.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>Added null check for PublishFileMessage PNStatus in SendFileOperation.
Removed invalid Content-Type in ObjectsV2 request headers targeting .Net Frameworks.
Added CultureInfo.InvariantCulture to string formatting.</PackageReleaseNotes>
<PackageReleaseNotes>Undeprecated GrantToken methods/properties.</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
6 changes: 2 additions & 4 deletions src/Api/PubnubApiUWP/PubnubApiUWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,15 @@

<PropertyGroup>
<PackageId>PubnubUWP</PackageId>
<PackageVersion>6.13.0.0</PackageVersion>
<PackageVersion>6.14.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>Added null check for PublishFileMessage PNStatus in SendFileOperation.
Removed invalid Content-Type in ObjectsV2 request headers targeting .Net Frameworks.
Added CultureInfo.InvariantCulture to string formatting.</PackageReleaseNotes>
<PackageReleaseNotes>Undeprecated GrantToken methods/properties.</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