Skip to content

Commit

Permalink
update version, changelog, adjust functional test to be more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyreilly committed Mar 29, 2024
1 parent 8b83697 commit bb824fa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Changelog

### 2024-03-06 v4.1.0
### 2024-03-29 v4.1.0

* feat: added .net8.0 build and test targets
* feat: add client credentials flow
* fix: Add field CalculatedFormula to SObjectFieldMetadata
* fix: Add field AdditionalData to ErrorResponse
Expand Down
2 changes: 1 addition & 1 deletion build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<!--Versioning-->
<VersionPrefix>4.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<VersionSuffix>Beta</VersionSuffix>

<!-- Targets -->
<LangVersion>8.0</LangVersion>
Expand Down
4 changes: 2 additions & 2 deletions src/NetCoreForce.FunctionalTests/SOSLTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public async Task BasicSearch()

ForceClient client = await forceClientFixture.GetForceClient();

SearchResult<SObjectGeneric> result = await client.Search("FIND {cd*}");
SearchResult<SObjectGeneric> result = await client.Search("FIND {corp}");

Assert.NotNull(result);
Assert.NotNull(result.SearchRecords);
Expand All @@ -39,7 +39,7 @@ public async Task TypedSearch()

ForceClient client = await forceClientFixture.GetForceClient();

SearchResult<SfAccount> result = await client.Search<SfAccount>("FIND {cd*} IN ALL FIELDS RETURNING Account (Id, Name)");
SearchResult<SfAccount> result = await client.Search<SfAccount>("FIND {corp} IN ALL FIELDS RETURNING Account (Id, Name)");

Assert.NotNull(result);
Assert.NotNull(result.SearchRecords);
Expand Down
2 changes: 1 addition & 1 deletion src/NetCoreForce.FunctionalTests/credentials_example.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"clientSecret": "your_client_secret",
"username": "username",
"password": "password",
"apiVersion": "v57.0",
"apiVersion": "v60.0",
"authorizationEndpoint": "https://login.salesforce.com/services/oauth2/authorize",
"tokenRequestEndpoint": "https://login.salesforce.com/services/oauth2/token",
"tokenRevocationEndpoint": "https://login.salesforce.com/services/oauth2/revoke"
Expand Down
2 changes: 1 addition & 1 deletion src/SampleConsole/credentials_example.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"clientSecret": "your_client_secret",
"username": "username",
"password": "password",
"apiVersion": "v57.0",
"apiVersion": "v60.0",
"authorizationEndpoint": "https://login.salesforce.com/services/oauth2/authorize",
"tokenRequestEndpoint": "https://login.salesforce.com/services/oauth2/token",
"tokenRevocationEndpoint": "https://login.salesforce.com/services/oauth2/revoke"
Expand Down

0 comments on commit bb824fa

Please sign in to comment.