From 943ebd11853aec2490d5d544430938a8f9cb9d94 Mon Sep 17 00:00:00 2001 From: Tien Nguyen Date: Mon, 5 Jun 2023 11:32:37 -0400 Subject: [PATCH 1/2] prep release --- CHANGELOG.md | 17 ++++++++++++----- okta/config.go | 2 +- website/docs/index.html.markdown | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94ab06ad2..b24e02b4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,20 @@ # Changelog +## 4.0.1 (June 5, 2023) + +### BUG FIXES +* Add engine check solving the classic org issue [#1559](https://github.com/okta/terraform-provider-okta/pull/1559). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! +* Add skip users and skip group back to app datasource[#1562](https://github.com/okta/terraform-provider-okta/pull/1562). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! + + ## 4.0.0 (April 28, 2023) ### FEATURE -* Removal of [deprecated resources, data sources, and attributes](https://github.com/okta/terraform-provider-okta/issues/1338) -* Removal of artificial input validation, let the Okta API do the input validation -* Fast running acceptance tests that will better block broken functionality from being published using [vcr](https://pkg.go.dev/github.com/dnaeon/go-vcr@v1.2.0) -* Bringing in [Go Sdk v3](https://github.com/okta/okta-sdk-golang/releases/tag/v3.0.2) -* A more consistent means of generating documentation published at the [Terraform Registry](https://registry.terraform.io/providers/okta/okta/latest/docs) using [tfplugindocs](https://github.com/hashicorp/terraform-plugin-docs) +* Removal of [deprecated resources, data sources, and attributes](https://github.com/okta/terraform-provider-okta/issues/1338)[#1532](https://github.com/okta/terraform-provider-okta/pull/1532). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! +* Removal of artificial input validation, let the Okta API do the input validation [#1513](https://github.com/okta/terraform-provider-okta/pull/1513). Thanks, [@monde](https://github.com/monde)! +* Fast running acceptance tests that will better block broken functionality from being published using [vcr](https://pkg.go.dev/github.com/dnaeon/go-vcr@v1.2.0) [#1520](https://github.com/okta/terraform-provider-okta/pull/1520). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! +* Bringing in [Go Sdk v3](https://github.com/okta/okta-sdk-golang/releases/tag/v3.0.2) [#1500](https://github.com/okta/terraform-provider-okta/pull/1500). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! +* A more consistent means of generating documentation published at the [Terraform Registry](https://registry.terraform.io/providers/okta/okta/latest/docs) using [tfplugindocs](https://github.com/hashicorp/terraform-plugin-docs) [#1498](https://github.com/okta/terraform-provider-okta/pull/1498). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! ## 3.46.0 (April 14, 2023) diff --git a/okta/config.go b/okta/config.go index a3aaa4282..021a7d6cc 100644 --- a/okta/config.go +++ b/okta/config.go @@ -160,7 +160,7 @@ func oktaSDKClient(c *Config) (client *sdk.Client, err error) { sdk.WithRateLimitMaxBackOff(int64(c.maxWait)), sdk.WithRequestTimeout(int64(c.requestTimeout)), sdk.WithRateLimitMaxRetries(int32(c.retryCount)), - sdk.WithUserAgentExtra("okta-terraform/4.0.0"), + sdk.WithUserAgentExtra("okta-terraform/4.0.1"), } switch { diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index f9b8a12bc..2e8cfc819 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.0" + version = "~> 4.0.1" } } } From becd9b4e6fc28e8feaa4097179a209602734512a Mon Sep 17 00:00:00 2001 From: Mike Mondragon Date: Mon, 5 Jun 2023 09:00:40 -0700 Subject: [PATCH 2/2] Add PR #1572 to release --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b24e02b4b..0bb2efdda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### BUG FIXES * Add engine check solving the classic org issue [#1559](https://github.com/okta/terraform-provider-okta/pull/1559). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! * Add skip users and skip group back to app datasource[#1562](https://github.com/okta/terraform-provider-okta/pull/1562). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! +* Correct Okta policy rule profile enrollment resource drift issue [#1572](https://github.com/okta/terraform-provider-okta/pull/1572). Thanks, [@monde](https://github.com/monde)! ## 4.0.0 (April 28, 2023)