Skip to content

Releases: okta/okta-sdk-dotnet

Okta.Sdk v8.0.1

27 Jun 16:40
45c8589
Compare
Choose a tag to compare

What's Changed

  • OKTA-728925: add configuration property useProxy to selectively disable or enable proxy configuration. Fixes #691

Full Changelog: v8.0.0...v8.0.0.1

Okta.Sdk v8.0.0

11 Jun 13:18
101a6a8
Compare
Choose a tag to compare

What's Changed

This version introduced several breaking changes. For details on breaking changes and how to migrate from 7.x to 8.x, check out the migrating guide.

Release 8.0.0 by @laura-rodriguez in #715

Features

The Okta Management SDK now supports OAuth 2.0 DPoP. If your application has DPoP enabled, the SDK will automatically generate a DPoP JWT using ephemeral keys to get an access token. No additional configuration is required for the SDK. (#697 )

Bug Fixes

  • Fix "UserSchemaAttributes minLength and maxLength are non-nullable and cause array schema attribute creation to fail." issue (#702)
  • Fix "Unable to access Links (_links) in version 7 for an IdentityProvider when using GetIdentityProviderAsync/CreateIdentityProviderAsync" (#700)
  • Rollback PolicyCanBeCreatedOrUpdated schema changes
  • Remove obsolete methods for IdentityProviderPolicy
  • Update AppAndInstanceConditionEvaluatorAppOrInstance.Id readonly property from true to false (#716)

Full Changelog: v7.0.6...v8.0.0

Okta.Sdk v7.0.6

19 Apr 19:57
b95064c
Compare
Choose a tag to compare

What's Changed

  • Update OAS3 with the latest IdP Discovery policy changes.
  • IdentityProviderPolicy will no longer inherit from Policy in the major release. The inheritance has been marked as obsolete.
  • The following PolicyApi methods have been marked as obsolete, and will be removed in the next major version:
    • System.Threading.Tasks.Task<Policy> CreatePolicyAsync(Policy policy, bool? activate = default(bool?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
    • System.Threading.Tasks.Task<ApiResponse<Policy>> CreatePolicyWithHttpInfoAsync(Policy policy, bool? activate = default(bool?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
    • System.Threading.Tasks.Task<Policy> ReplacePolicyAsync(string policyId, Policy policy, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
    • System.Threading.Tasks.Task<ApiResponse<Policy>> ReplacePolicyWithHttpInfoAsync(string policyId, Policy policy, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
      They will be replaced by the following ones:
    • System.Threading.Tasks.Task<PolicyCanBeCreatedOrReplaced> CreatePolicyAsync( PolicyCanBeCreatedOrReplaced policy , bool? activate = default(bool?) , System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
    • System.Threading.Tasks.Task<ApiResponse<PolicyCanBeCreatedOrReplaced>> CreatePolicyWithHttpInfoAsync( PolicyCanBeCreatedOrReplaced policy , bool? activate = default(bool?) , System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
    • System.Threading.Tasks.Task<Policy> ReplacePolicyAsync(string policyId, Policy policy, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
    • System.Threading.Tasks.Task<ApiResponse<Policy>> ReplacePolicyWithHttpInfoAsync(string policyId, Policy policy, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));

Full Changelog: v7.0.5...v7.0.6

Okta.Sdk v7.0.5

05 Feb 18:22
2be6234
Compare
Choose a tag to compare

Bug Fixes

Downgrade System.IdentityModel.Tokens* dependencies from 7.2.0 to 6.35.0 to avoid breaking changes (#692)

Okta.Sdk v7.0.4

29 Jan 20:27
c915413
Compare
Choose a tag to compare

Features/Bug Fixes

Update vulnerable System.IdentityModel.Tokens.Jwt dependency (OKTA-683207)
Fix "Missing application settings when fetching SamlApplication" (#644)

Okta.Sdk v7.0.3

09 Jan 18:19
1e1cae0
Compare
Choose a tag to compare

Features/Bug fixes

Fix "Missing data in verifyFactorRequest prevents verifying webauthn" (OKTA-656179)

Okta.Sdk v7.0.2

15 Dec 21:21
3afa851
Compare
Choose a tag to compare

Features/Bug fixes

Fix "JTI Claim as a string instead of guid" (#682)

Okta.Sdk v7.0.1

10 Oct 15:29
bf13176
Compare
Choose a tag to compare

Features/Bug fixes

  • Fix "Incosistent Exception Handling" issue (#658)
  • Fix "Update UserType.Id to be editable" issue (#660)
  • Fix "Nuget package missing license information" issue (#667)
  • Fix "VerifyUserFactorResponse doesn't correspond with the server's response" (#665)

Okta.Sdk v7.0.0

11 Aug 17:51
f1bacae
Compare
Choose a tag to compare

We're excited to drop the 7.0.0 version of the Okta Management SDK for .NET! 🎉

What's included today

  • Upgraded the RestSharp dependency from 106.13.0 to 110.2.0 (#606)
  • Upgraded the Okta management OpenAPI specification to be aligned with the Okta release v2023.07.0.
  • New API clients added:
  • ApiServiceIntegrationsApi
  • ApplicationSSOApi
  • AttackProtectionApi
  • EmailServerApi
  • IdentitySourceApi
  • RealmApi
  • UISchemaApi

Upgrading

Upgrading the Okta management OpenAPI specification as well as upgrading the RestSharp dependency have introduced several breaking changes, so we've rolled over the major version number to 7.0.0. Check out the migrating guide for more info!

Okta.Sdk v6.0.11

25 May 16:40
f031765
Compare
Choose a tag to compare

Bug Fixes

Fix "Create/Update Account returns NULL when okta tenant hits rate limits" issue (#638)