From bca332a09ea8ece2e268df6e110e357805798614 Mon Sep 17 00:00:00 2001 From: Mike Mondragon Date: Wed, 29 Mar 2023 14:00:41 -0700 Subject: [PATCH 1/2] Prep v3.45.0 release --- CHANGELOG.md | 33 ++++++++++++++++++++++++++++++++ okta/config.go | 2 +- website/docs/index.html.markdown | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b49221fb..ae302b7ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/okta/config.go b/okta/config.go index c2b4c84cf..0f85f4785 100644 --- a/okta/config.go +++ b/okta/config.go @@ -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 { diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index 3039e9906..e8dfc5205 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 = "~> 3.44" + version = "~> 3.45" } } } From a2c591d76e928b51fb7e5b31294d872df6516c0d Mon Sep 17 00:00:00 2001 From: Mike Mondragon Date: Wed, 29 Mar 2023 14:04:54 -0700 Subject: [PATCH 2/2] Multiline markdown doesn't render nicely in GH --- CHANGELOG.md | 66 ++++++++++++++-------------------------------------- 1 file changed, 17 insertions(+), 49 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae302b7ca..e4e3ab2d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,77 +4,45 @@ ### 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)! +* 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)! +* tfplugindocs document generation from schema [#1498](https://github.com/okta/terraform-provider-okta/pull/1498). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! -### NOTICES +### 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. +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) +- 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: -* Improve JSON serialization of 0 integer values affecting a number of open - issues [#1484](https://github.com/okta/terraform-provider-okta/pull/1484). - Thanks, [@monde](https://github.com/monde)! -* Fix panic in `okta_app_saml` when `embed_url` is missing for - `preconfigured_app` apps - [#1480](https://github.com/okta/terraform-provider-okta/pull/1480). Thanks, - [@monde](https://github.com/monde)! +* Improve JSON serialization of 0 integer values affecting a number of open issues [#1484](https://github.com/okta/terraform-provider-okta/pull/1484). Thanks, [@monde](https://github.com/monde)! +* Fix panic in `okta_app_saml` when `embed_url` is missing for `preconfigured_app` apps [#1480](https://github.com/okta/terraform-provider-okta/pull/1480). Thanks, [@monde](https://github.com/monde)! ## 3.43.0 (March 7, 2023) ### NEW - RESOURCES, DATA SOURCES, PROPERTIES, ATTRIBUTES, ENV VARS: -* Resource `okta_user` supports ignoring custom profile attributes - [#1476](https://github.com/okta/terraform-provider-okta/pull/1476). Thanks, - [@virgofx](https://github.com/virgofx)! -* Adding `settings.signOn.samlSignedRequestEnabled` as - `saml_signed_request_enabled` argument on resource `okta_app_saml` - [#1475](https://github.com/okta/terraform-provider-okta/pull/1475). Thanks, - [@monde](https://github.com/monde)! +* Resource `okta_user` supports ignoring custom profile attributes [#1476](https://github.com/okta/terraform-provider-okta/pull/1476). Thanks, [@virgofx](https://github.com/virgofx)! +* Adding `settings.signOn.samlSignedRequestEnabled` as `saml_signed_request_enabled` argument on resource `okta_app_saml` [#1475](https://github.com/okta/terraform-provider-okta/pull/1475). Thanks, [@monde](https://github.com/monde)! ### PROJECT IMPROVEMENTS: -* Resource `okta_user_schema_property` documentation update - [#1468](https://github.com/okta/terraform-provider-okta/pull/1468) Thanks, - [@pro4tlzz](https://github.com/pro4tlzz)! +* Resource `okta_user_schema_property` documentation update [#1468](https://github.com/okta/terraform-provider-okta/pull/1468) Thanks, [@pro4tlzz](https://github.com/pro4tlzz)! ### BUG FIXES: -* Add correct import functionality for `okta_email_customization` - [#1471](https://github.com/okta/terraform-provider-okta/pull/1471) Thanks, - [@samcook](https://github.com/samcook)! -* Fixed `authentication_policy` change detection - [#1470](https://github.com/okta/terraform-provider-okta/pull/1470). Thanks, - [@monde](https://github.com/monde)! -* Correctly handle zero "0" integer values in API calls for resources - `okta_policy_password` and `okta_policy_password_default` - [#1477](https://github.com/okta/terraform-provider-okta/pull/1477). Thanks, - [@monde](https://github.com/monde)! +* Add correct import functionality for `okta_email_customization` [#1471](https://github.com/okta/terraform-provider-okta/pull/1471) Thanks, [@samcook](https://github.com/samcook)! +* Fixed `authentication_policy` change detection [#1470](https://github.com/okta/terraform-provider-okta/pull/1470). Thanks, [@monde](https://github.com/monde)! +* Correctly handle zero "0" integer values in API calls for resources `okta_policy_password` and `okta_policy_password_default` [#1477](https://github.com/okta/terraform-provider-okta/pull/1477). Thanks, [@monde](https://github.com/monde)! - Attributes: - `password_auto_unlock_minutes` - `password_expire_warn_days`