Skip to content

Commit

Permalink
Merge pull request #1577 from okta/prep_v4.0.1
Browse files Browse the repository at this point in the history
prep release
  • Loading branch information
duytiennguyen-okta authored Jun 5, 2023
2 parents 0583cdf + becd9b4 commit 4f1c1ad
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
# 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)!
* 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)

### 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)

Expand Down
2 changes: 1 addition & 1 deletion okta/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ terraform {
required_providers {
okta = {
source = "okta/okta"
version = "~> 4.0"
version = "~> 4.0.1"
}
}
}
Expand Down

0 comments on commit 4f1c1ad

Please sign in to comment.