From 8b8369774cf23d86cc431bde3017b049f1bdfa5f Mon Sep 17 00:00:00 2001 From: Anthony Reilly Date: Thu, 7 Mar 2024 11:33:20 -0500 Subject: [PATCH] fix: clean up invalid XML comment --- CHANGELOG.md | 6 ++++++ build.props | 16 ++++++++-------- src/NetCoreForce.Client/AuthenticationClient.cs | 2 +- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 703c4d3..0ae33d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +### 2024-03-06 v4.1.0 + +* feat: add client credentials flow +* fix: Add field CalculatedFormula to SObjectFieldMetadata +* fix: Add field AdditionalData to ErrorResponse + ### 2023-06-06 v4.0.0 * feat: add FieldsToNull and IngoreNulls options to control null field serialization and to allow explicitly setting fields to null diff --git a/build.props b/build.props index 9fe3252..4e444d4 100644 --- a/build.props +++ b/build.props @@ -2,7 +2,7 @@ - 4.0.0 + 4.1.0 @@ -10,7 +10,7 @@ Anthony Reilly - 2023 Anthony Reilly + 2024 Anthony Reilly MIT https://github.com/anthonyreilly/NetCoreForce false @@ -25,15 +25,15 @@ - netstandard2.0;netstandard2.1;net6.0;net7.0 - netcoreapp2.1;netcoreapp3.1;net6.0;net7.0 - netcoreapp2.1;netcoreapp3.1;net6.0;net7.0 + netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0 + netcoreapp2.1;netcoreapp3.1;net6.0;net7.0;net8.0 + netcoreapp2.1;netcoreapp3.1;net6.0;net7.0;net8.0 - netstandard2.0;netstandard2.1;net6.0;net7.0 - net6.0;net7.0 - net6.0;net7.0 + netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0 + net6.0;net7.0;net8.0 + net6.0;net7.0;net8.0 \ No newline at end of file diff --git a/src/NetCoreForce.Client/AuthenticationClient.cs b/src/NetCoreForce.Client/AuthenticationClient.cs index 40899fb..93a2c51 100644 --- a/src/NetCoreForce.Client/AuthenticationClient.cs +++ b/src/NetCoreForce.Client/AuthenticationClient.cs @@ -273,7 +273,7 @@ public async Task TokenRefreshAsync(string refreshToken, string clientId, string /// /// Client credentials OAuth Authentication Flow - /// https://help.salesforce.com/s/articleView?id=sf.remoteaccess_oauth_client_credentials_flow.htm&type=5 + /// https://help.salesforce.com/s/articleView?id=sf.remoteaccess_oauth_client_credentials_flow.htm /// /// The Consumer Key from the connected app definition. /// The Consumer Secret from the connected app definition. Required unless the Require Secret for Web Server Flow setting is not enabled in the connected app definition.