Skip to content

Commit

Permalink
prep v4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
duytiennguyen-okta committed Oct 17, 2023
1 parent cdb5ff6 commit 75bbecc
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 4.5.0 (October 17, 2023)

### NEW - RESOURCES, DATA SOURCES, PROPERTIES, ATTRIBUTES, ENV VARS:

* New resource: `okta_app_oauth_role_assignment` allow the assignment of admin roles on OAuth Clients in Okta - [1756](https://github.com/okta/terraform-provider-okta/pull/1756). Thanks, [@tgoodsell-tempus](https://github.com/tgoodsell-tempus)
* New datasource: `okta_org_metadata` [1768](https://github.com/okta/terraform-provider-okta/pull/1768). Thanks, [@tgoodsell-tempus](https://github.com/tgoodsell-tempus)
* Add `risk_score` argument to resource `okta_app_signon_policy_rule` [#1761](https://github.com/okta/terraform-provider-okta/pull/1761). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)!

### BUG FIXES

* Fix JSON change detection of JSON resource arguments [#1758](https://github.com/okta/terraform-provider-okta/pull/1758). Thanks, [@monde](https://github.com/monde)!
* Fix panic issue when convertInterfaceArrToStringArr [#1760](https://github.com/okta/terraform-provider-okta/pull/1760). Thanks, [@duytiennguyen-okta](https://github.com/duytiennguyen-okta)!
* Fix panic issue in the missing error check [#1765](https://github.com/okta/terraform-provider-okta/pull/1765). Thanks, [@monde](https://github.com/monde)!

### IMPROVEMENTS
* Add track all users argument to okta_group_memberships import [#1766](https://github.com/okta/terraform-provider-okta/pull/1766). Thanks, [@arvindkrishnakumar-okta](https://github.com/arvindkrishnakumar-okta)!


## 4.4.3 (October 09, 2023)

### BUG FIXES
Expand Down
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ func main() {
return framework
},
}

// At the moment, there is no way to use tf6muxserver to mux the new and old provider because the okta.Provider().GRPCProvider only return protocolv5
// Most likely we will have to convert all of the old provider to new provider to use v6
// There are constraint of using v5, such as not being able to use NestedAttributes, we have to use NestedBlock instead (see okta_org_metada)
// use the muxer
muxServer, err := tf5muxserver.NewMuxServer(context.Background(), providers...)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion okta/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
)

const (
OktaTerraformProviderVersion = "4.4.3"
OktaTerraformProviderVersion = "4.5.0"
OktaTerraformProviderUserAgent = "okta-terraform/" + OktaTerraformProviderVersion
)

Expand Down
1 change: 0 additions & 1 deletion okta/data_source_okta_org_metadata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ func TestAccDataSourceOktaOrgMetadata_read(t *testing.T) {
ErrorCheck: testAccErrorChecks(t),
ProtoV5ProviderFactories: testAccMergeProvidersFactories,
Steps: []resource.TestStep{
// Read testing
{
Config: mgr.GetFixtures("datasource.tf", t),
Check: resource.ComposeAggregateTestCheckFunc(
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.4.3"
version = "~> 4.5.0"
}
}
}
Expand Down

0 comments on commit 75bbecc

Please sign in to comment.