From b38c19bfdc6f4080bb08baec3e6d698c5eda10d0 Mon Sep 17 00:00:00 2001 From: Mike Mondragon Date: Thu, 7 Sep 2023 10:36:17 -0700 Subject: [PATCH] prep v4.4.0 release --- CHANGELOG.md | 25 +++++++++++++++++++++++++ okta/config.go | 2 +- website/docs/index.html.markdown | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5633b2f9..5694198c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## 4.4.0 (September 7, 2023) + +### NEW - RESOURCES, DATA SOURCES, PROPERTIES, ATTRIBUTES, ENV VARS: + +* New resource: `okta_app_access_policy_assignment` easily assign access/authentication/signon policy to an application - [1698](https://github.com/okta/terraform-provider-okta/pull/1698). Thanks, [@adantop](https://github.com/adantop), [@monde](https://github.com/monde)! +* Add `brand_id` argument to resource `okta_domain` [#1685](https://github.com/okta/terraform-provider-okta/pull/1685). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! +* Add `optional` attribute to data source `okta_auth_server_scopes` [#1680](https://github.com/okta/terraform-provider-okta/pull/1680). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! +* Make resource `okta_brand` fully CRUD (original API support was for read/update only) [#1677](https://github.com/okta/terraform-provider-okta/pull/1677). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)! + +### IMPROVEMENTS + +* PR [1691](https://github.com/okta/terraform-provider-okta/pull/1691). Thanks, [@monde](https://github.com/monde)! + * Add guards to resources `okta_profile_mapping` and `okta_app_oauth` allowing for OAuth 2.0 authentication + * Update clarification in docs that resources `okta_security_notification_emails` and `okta_rate_limiting` are OAuth 2.0 authentication incompatible + +### BUG FIXES + +* Fix `metadata_url` attribute parsing in resource `okta_app_saml` [#1632](https://github.com/okta/terraform-provider-okta/pull/1632). Thanks, [@arvindkrishnakumar-okta](https://github.com/arvindkrishnakumar-okta)! + +### PROJECT IMPROVEMENTS: + +* Add brand `name` attribute to resource and data source docs [#1619](https://github.com/okta/terraform-provider-okta/pull/1619). Thanks, [@thatguysimon](https://github.com/thatguysimon)! +* Refine/improve stalebot behavior for issue triage [#1688](https://github.com/okta/terraform-provider-okta/pull/1688), [#1697](https://github.com/okta/terraform-provider-okta/pull/1697). Thanks, [@exitcode0](https://github.com/exitcode0)! +* Improve development and upgrade sections of the README [#1679](https://github.com/okta/terraform-provider-okta/pull/1697). Thanks, [@jefftaylor-okta](https://github.com/jefftaylor-okta)! + ## 4.3.0 (August 18, 2023) ### IMPROVEMENTS diff --git a/okta/config.go b/okta/config.go index 72b3475ae..d2367d2ed 100644 --- a/okta/config.go +++ b/okta/config.go @@ -24,7 +24,7 @@ import ( ) const ( - OktaTerraformProviderVersion = "4.3.0" + OktaTerraformProviderVersion = "4.4.0" OktaTerraformProviderUserAgent = "okta-terraform/" + OktaTerraformProviderVersion ) diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index 3f27efb04..8b2049bb9 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.3.0" + version = "~> 4.4.0" } } }