From f9abd2615f39cd69493dfdc1eaf164d021fa6044 Mon Sep 17 00:00:00 2001 From: Tien Nguyen Date: Wed, 1 Nov 2023 14:27:29 -0400 Subject: [PATCH] prep release v4.6.0 --- CHANGELOG.md | 17 +++++++++++++++++ okta/config.go | 2 +- website/docs/index.html.markdown | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc2de3069..3907cb2a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 4.6.0 (November 1, 2023) + +### IMPROVEMENTS + +* Add progressive_profiling_action to okta_policy_rule_profile_enrollment [#1777](https://github.com/okta/terraform-provider-okta/pull/1777). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! +* Add system to okta_app_signon_policy_rule, okta_auth_server_policy_rule [#1788](https://github.com/okta/terraform-provider-okta/pull/1788). Thanks, [@monde](https://github.com/monde)! +* Update okta_group search[#1794](https://github.com/okta/terraform-provider-okta/pull/1794). Thanks, [@monde](https://github.com/monde)! + +### BUG FIXES + +* Add default to risk_score to avoid breaking change [#1780](https://github.com/okta/terraform-provider-okta/pull/1780). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! +* Fix incorrect drift detection and other bad behavior in okta_app_oauth_role_assignment [#1781](https://github.com/okta/terraform-provider-okta/pull/1781). Thanks, [@monde](https://github.com/monde)! +* Implement proper error for incorrect compound import input [#1785](https://github.com/okta/terraform-provider-okta/pull/1785). Thanks, [@monde](https://github.com/monde)! +* Fix a panic in resource okta_resource_set [#1786](https://github.com/okta/terraform-provider-okta/pull/1786). Thanks, [@monde](https://github.com/monde)! +* Correct change detection on resources okta_app_oauth_post_logout_redirect_uri and okta_app_oauth_redirect_uri [#1793](https://github.com/okta/terraform-provider-okta/pull/1793). Thanks, [@monde](https://github.com/monde)! + + ## 4.5.0 (October 17, 2023) ### NEW - RESOURCES, DATA SOURCES, PROPERTIES, ATTRIBUTES, ENV VARS: diff --git a/okta/config.go b/okta/config.go index 410c756c2..e39909336 100644 --- a/okta/config.go +++ b/okta/config.go @@ -25,7 +25,7 @@ import ( ) const ( - OktaTerraformProviderVersion = "4.5.0" + OktaTerraformProviderVersion = "4.6.0" OktaTerraformProviderUserAgent = "okta-terraform/" + OktaTerraformProviderVersion ) diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index dccc7aaba..7da7f370b 100644 --- a/website/docs/index.html.markdown +++ b/website/docs/index.html.markdown @@ -24,7 +24,7 @@ terraform { required_providers { okta = { source = "okta/okta" - version = "~> 4.5.0" + version = "~> 4.6.0" } } }