diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e9269d6b..7ab0e8655 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 4.13.0 (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 a38dea935..151bf87f7 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,7 +24,7 @@ terraform { required_providers { okta = { source = "okta/okta" - version = "~> 4.13.0" + version = "~> 4.13.1" } } } diff --git a/docs/resources/admin_role_targets.md b/docs/resources/admin_role_targets.md index 7e8b86d32..c48c690a6 100644 --- a/docs/resources/admin_role_targets.md +++ b/docs/resources/admin_role_targets.md @@ -56,4 +56,4 @@ Import is supported using the following syntax: ```shell terraform import okta_admin_role_targets.example / -``` +``` \ No newline at end of file diff --git a/okta/config.go b/okta/config.go index 23de8277b..28f3ef8bc 100644 --- a/okta/config.go +++ b/okta/config.go @@ -26,7 +26,7 @@ import ( ) const ( - OktaTerraformProviderVersion = "4.13.0" + OktaTerraformProviderVersion = "4.13.1" OktaTerraformProviderUserAgent = "okta-terraform/" + OktaTerraformProviderVersion ) diff --git a/templates/index.md b/templates/index.md index a38dea935..151bf87f7 100644 --- a/templates/index.md +++ b/templates/index.md @@ -24,7 +24,7 @@ terraform { required_providers { okta = { source = "okta/okta" - version = "~> 4.13.0" + version = "~> 4.13.1" } } }