Skip to content

Commit

Permalink
Prep v3.45.0 release
Browse files Browse the repository at this point in the history
monde committed Mar 29, 2023
1 parent 96b0eff commit bca332a
Showing 3 changed files with 35 additions and 2 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

## 3.45.0 (March 29, 2023)

### BUG FIXES:

* Update algorithm signature values and documentation for IdP OIDC
[#1506](https://github.com/okta/terraform-provider-okta/pull/1506). Thanks,
[@monde](https://github.com/monde)!
* Update OAuth API scopes
[#1494](https://github.com/okta/terraform-provider-okta/pull/1494). Thanks,
[@awagneratzendesk](https://github.com/awagneratzendesk)!

### PROJECT IMPROVEMENTS:

* tfplugindocs document generation from schema
[#1498](https://github.com/okta/terraform-provider-okta/pull/1498). Thanks,
[@duytiennguyen-okta](https://github.com/duytiennguyen-okta)!

### NOTICES

We are [getting ready for the v4.0.0
release](https://github.com/okta/terraform-provider-okta/issues/1338) of the
Okta Terraform Provider. That release will include the following items.

- Removal of [deprecated resources, data sources, and
arguments](https://developer.hashicorp.com/terraform/plugin/sdkv2/best-practices/deprecations)
- 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 as a release
- A more consistent means of generating documentation published at the
[Terraform
Registry](https://registry.terraform.io/providers/okta/okta/latest/docs)

## 3.44.0 (March 10, 2023)

### BUG FIXES:
2 changes: 1 addition & 1 deletion okta/config.go
Original file line number Diff line number Diff line change
@@ -147,7 +147,7 @@ func oktaSDKClient(c *Config) (client *okta.Client, err error) {
okta.WithRateLimitMaxBackOff(int64(c.maxWait)),
okta.WithRequestTimeout(int64(c.requestTimeout)),
okta.WithRateLimitMaxRetries(int32(c.retryCount)),
okta.WithUserAgentExtra("okta-terraform/3.44.0"),
okta.WithUserAgentExtra("okta-terraform/3.45.0"),
}

switch {
2 changes: 1 addition & 1 deletion website/docs/index.html.markdown
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ terraform {
required_providers {
okta = {
source = "okta/okta"
version = "~> 3.44"
version = "~> 3.45"
}
}
}

0 comments on commit bca332a

Please sign in to comment.