diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ab0e8655..dd5e5209a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,27 @@ # Changelog -## 4.13.0 (Jan 24, 2025) +## 4.14.0 (Feb 11, 2025) + +### IMPROVEMENTS + +* Improve code quality controls for code merges [#2213](https://github.com/okta/terraform-provider-okta/pull/2213). Thanks, [@monde](https://github.com/monde)! +* Improve resource `okta_app_oauth` docs for `token_endpoint_auth_method` [#2211](https://github.com/okta/terraform-provider-okta/pull/2211). Thanks, [@exitcode0](https://github.com/exitcode0)! +* Improve resource `okta_app_oauth` docs for `wildcard_redirect` [#2207](https://github.com/okta/terraform-provider-okta/pull/2207). Thanks, [@exitcode0](https://github.com/exitcode0)! +* Improve resource `okta_app_oauth` docs for `response_types` [#2206](https://github.com/okta/terraform-provider-okta/pull/2206). Thanks, [@exitcode0](https://github.com/exitcode0)! + +### BUG FIXES + +* Ensure `yubikey_token` authenticator on `okta_policy_mfa` is respected [#2205](https://github.com/okta/terraform-provider-okta/pull/2205). Thanks, [@monde](https://github.com/monde)! +* Resource `okta_app_saml`'s `acs_endpoints` is a list and respects ordering [#2204](https://github.com/okta/terraform-provider-okta/pull/2204). Thanks, [@monde](https://github.com/monde)! +* Brand ID and Template Name are incorporated into `okta_email_template_settings` import [#2202](https://github.com/okta/terraform-provider-okta/pull/2201). Thanks, [@steveAG](https://github.com/steveAG)! +* Data source `okta_apps` page size is 200 [#2200](https://github.com/okta/terraform-provider-okta/pull/2200). Thanks, [@exitcode0](https://github.com/exitcode0)! + +## 4.13.1 (Jan 24, 2025) ### BUG FIXES * Fix issue os_expression does not distinguished between null and empty string [#2187](https://github.com/okta/terraform-provider-okta/pull/2187). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! * Fix force_new in catch_all in okta_app_signon_policy [#2188](https://github.com/okta/terraform-provider-okta/pull/2188). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! - ## 4.13.0 (Jan 17, 2025) ### NEW - RESOURCES, DATA SOURCES, PROPERTIES, ATTRIBUTES, ENV VARS: * Add attribute to okta_app_signon_policy to create a 'Catch All' rule that's 'DENY' [#2153](https://github.com/okta/terraform-provider-okta/pull/2153). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! diff --git a/docs/index.md b/docs/index.md index 151bf87f7..b73e5892e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,7 +24,7 @@ terraform { required_providers { okta = { source = "okta/okta" - version = "~> 4.13.1" + version = "~> 4.14.0" } } } @@ -135,4 +135,4 @@ arguments](https://www.terraform.io/docs/configuration/providers.html) (e.g. - `max_api_capacity` - (Optional, experimental) sets what percentage of capacity the provider can use of the total rate limit capacity while making calls to the Okta management API endpoints. Okta API operates in one minute buckets. - See Okta Management API Rate Limits: https://developer.okta.com/docs/reference/rl-global-mgmt. Can be set to a value between 1 and 100. \ No newline at end of file + See Okta Management API Rate Limits: https://developer.okta.com/docs/reference/rl-global-mgmt. Can be set to a value between 1 and 100. diff --git a/okta/config.go b/okta/config.go index e0e58ac71..9cb96ad30 100644 --- a/okta/config.go +++ b/okta/config.go @@ -26,7 +26,7 @@ import ( ) const ( - OktaTerraformProviderVersion = "4.13.1" + OktaTerraformProviderVersion = "4.14.0" OktaTerraformProviderUserAgent = "okta-terraform/" + OktaTerraformProviderVersion ) diff --git a/templates/index.md b/templates/index.md index 151bf87f7..b73e5892e 100644 --- a/templates/index.md +++ b/templates/index.md @@ -24,7 +24,7 @@ terraform { required_providers { okta = { source = "okta/okta" - version = "~> 4.13.1" + version = "~> 4.14.0" } } } @@ -135,4 +135,4 @@ arguments](https://www.terraform.io/docs/configuration/providers.html) (e.g. - `max_api_capacity` - (Optional, experimental) sets what percentage of capacity the provider can use of the total rate limit capacity while making calls to the Okta management API endpoints. Okta API operates in one minute buckets. - See Okta Management API Rate Limits: https://developer.okta.com/docs/reference/rl-global-mgmt. Can be set to a value between 1 and 100. \ No newline at end of file + See Okta Management API Rate Limits: https://developer.okta.com/docs/reference/rl-global-mgmt. Can be set to a value between 1 and 100.