Skip to content

Releases: okta/okta-sdk-golang

v3.0.6

13 Jun 18:36
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.19.0...v3.0.6

v3.0.5

08 Jun 16:48
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.19.0...v3.0.5

v3.0.4

07 Jun 18:04
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.19.0...v3.0.4

v3.0.3

02 Jun 18:44
Compare
Choose a tag to compare
Add generated code

v2.19.0

01 Jun 16:18
v2.19.0
60469a4
Compare
Choose a tag to compare

v2.19.0

v2.18.0

14 Apr 17:36
935c5fe
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.17.0...v2.18.0

v2.17.0

07 Mar 00:17
v2.17.0
056faf9
Compare
Choose a tag to compare

v2.17.0

  • Revert integer values representation as integer pointers
    • Original change was too agreesive for a minor release
    • All integer fields have a parallel pointer field that can be used as an alternative to deal with 0 values during JSON marshaling
      • Example PasswordPolicy model has fields int64 Priority and *int64 PriorityPtr
      • This change will not break code from release v2.15.0 and earlier
  • New models
    • MultifactorEnrollmentPolicy
    • MultifactorEnrollmentPolicyAuthenticatorSettings
    • MultifactorEnrollmentPolicyAuthenticatorStatus
    • MultifactorEnrollmentPolicyAuthenticatorType
    • MultifactorEnrollmentPolicySettings
    • MultifactorEnrollmentPolicySettingsType
  • New methods / endpoints
    • Application has PreviewSAMLAppMetadata method for GET /api/v1/apps/{applicationId}/sso/saml/metadata endpoint.
  • Added parameters
    • Default bool on AuthorizationServer model

v3.0.1

30 Nov 21:00
Compare
Choose a tag to compare

What's Changed

v3.0.0

30 Nov 20:13
Compare
Choose a tag to compare

What's Changed

Note: Broken, do not use

Initial release for v3 sdk

v2.16.0

29 Nov 23:49
v2.16.0
9e7c84b
Compare
Choose a tag to compare

v2.16.0

  • All API integers, which previously had been typed as int64, are now typed
    *int64 so that serialization of actual 0 values are not ignored when
    omitempty tags are present for serialization.