Skip to content

Commit

Permalink
Merge pull request #1485 from okta/prep_v3_44_0
Browse files Browse the repository at this point in the history
prep v3.44.0 release
  • Loading branch information
duytiennguyen-okta authored Mar 10, 2023
2 parents 78cd3c0 + de2d9dd commit d0c5948
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

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

## 3.43.0 (March 7, 2023)

### NEW - RESOURCES, DATA SOURCES, PROPERTIES, ATTRIBUTES, ENV VARS:
Expand Down
2 changes: 1 addition & 1 deletion okta/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.43.0"),
okta.WithUserAgentExtra("okta-terraform/3.44.0"),
}

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 = "~> 3.43"
version = "~> 3.44"
}
}
}
Expand Down

0 comments on commit d0c5948

Please sign in to comment.