diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dda95e5d..6cb9890eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,26 +1,19 @@ # Changelog Running changelog of releases since `2.0.0-rc.4` -## v2.3.0 -### New Structs -- `OpenIdConnectApplicationSettingsRefreshToken` -- `OpenIdConnectRefreshTokenRotationType` - -### Bug Fixes -- `NewCustomHotpUserFactor` sets factor type to `token:htop` - -### Updates -- Updates `OpenIdConnectApplicationSettingsClient` properties to include `RefreshToken *OpenIdConnectApplicationSettingsRefreshToken` - ## v2.2.0 ### New Structs - `OpenIdConnectApplicationSettingsClientKeys` +- `OpenIdConnectApplicationSettingsRefreshToken` +- `OpenIdConnectRefreshTokenRotationType` ### Bug Fixes - Updates `okta/OpenIdConnectApplicationSettingsClient` properties to include `jwks []JsonWebKey` (Resolves #176) +- `NewCustomHotpUserFactor` sets factor type to `token:htop` ### Updates - Removes vendor directory +- Updates `OpenIdConnectApplicationSettingsClient` properties to include `RefreshToken *OpenIdConnectApplicationSettingsRefreshToken` ## v2.1.0 ### New Structs diff --git a/okta/application.go b/okta/application.go index d5732c0f2..71d40f8db 100644 --- a/okta/application.go +++ b/okta/application.go @@ -704,7 +704,7 @@ func (m *ApplicationResource) ListApplicationUsers(ctx context.Context, appId st return appUser, resp, nil } -// Assigns a user to an application with [credentials](#application-user-credentials-object) and an app-specific [profile](#application-user-profile-object). Profile mappings defined for the application are first applied before applying any profile properties specified in the request. +// Assigns an user to an application with [credentials](#application-user-credentials-object) and an app-specific [profile](#application-user-profile-object). Profile mappings defined for the application are first applied before applying any profile properties specified in the request. func (m *ApplicationResource) AssignUserToApplication(ctx context.Context, appId string, body AppUser) (*AppUser, *Response, error) { url := fmt.Sprintf("/api/v1/apps/%v/users", appId) diff --git a/okta/okta.go b/okta/okta.go index df20aecf6..e02453440 100644 --- a/okta/okta.go +++ b/okta/okta.go @@ -32,7 +32,7 @@ import ( "gopkg.in/yaml.v3" ) -const Version = "2.3.0" +const Version = "2.2.0" type Client struct { config *config diff --git a/openapi/generator/templates/okta.go.hbs b/openapi/generator/templates/okta.go.hbs index 822993d2a..0ee1f75cd 100644 --- a/openapi/generator/templates/okta.go.hbs +++ b/openapi/generator/templates/okta.go.hbs @@ -16,7 +16,7 @@ import ( "gopkg.in/yaml.v3" ) -const Version = "2.3.0" +const Version = "2.2.0" type Client struct { config *config