Skip to content

chore(deps): update dependencies#1255

Open
terraform-ibm-modules-ops wants to merge 1 commit intomainfrom
renovate/dependencies
Open

chore(deps): update dependencies#1255
terraform-ibm-modules-ops wants to merge 1 commit intomainfrom
renovate/dependencies

Conversation

@terraform-ibm-modules-ops
Copy link
Copy Markdown
Contributor

@terraform-ibm-modules-ops terraform-ibm-modules-ops commented Mar 27, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.69.7v1.70.2 age confidence require minor
ibm (source) 1.89.02.0.0 age confidence required_provider major
restapi (source) 2.0.13.0.0 age confidence required_provider major
terraform-ibm-modules/app-configuration/ibm (source) 1.15.161.16.1 age confidence module minor
terraform-ibm-modules/client-to-site-vpn/ibm (source) 3.5.83.5.9 age confidence module patch
terraform-ibm-modules/common-pipeline-assets v1.24.4v1.24.6 age confidence action patch
terraform-ibm-modules/landing-zone/ibm (source) 8.15.118.15.13 age confidence module patch
terraform-ibm-modules/scc-workload-protection/ibm (source) 1.18.01.18.2 age confidence module patch
terraform-ibm-modules/secrets-manager-private-cert-engine/ibm (source) 1.13.51.14.0 age confidence module minor
terraform-ibm-modules/secrets-manager-private-cert/ibm (source) 1.11.51.12.0 age confidence module minor
terraform-ibm-modules/secrets-manager-secret-group/ibm (source) 1.4.81.5.0 age confidence module minor

Release Notes

terraform-ibm-modules/ibmcloud-terratest-wrapper (github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper)

v1.70.2

Compare Source

Bug Fixes

v1.70.1

Compare Source

Bug Fixes
  • deps: update module github.com/go-git/go-git/v5 to v5.17.2 (#​1125) (2b78e3f)

v1.70.0

Compare Source

Features
  • return default versions for Kubernetes or OpenShift platforms; GetKubeVersions now provides both the full list of versions and the default version (#​1123) (ef4aaf6)
IBM-Cloud/terraform-provider-ibm (ibm)

v2.0.0

Compare Source

This release adds internal support for Terraform's Plugin Framework alongside our existing implementation. All your existing Terraform configurations work exactly as before with zero changes required.
We're bumping to v2.0.0 to signal an important internal architectural enhancement: the provider now supports Terraform Plugin Framework in addition to the existing SDKv2 implementation. This is a major milestone that enables future capabilities while maintaining complete backward compatibility.

Bug Fixes

Cloud Internet Services
  • handle null timestamps in CIS custom page resource (6702)
Cloud Logs
  • add Computed to alert filter_type and incident_settings fields (6716)
General
  • Fix the missing read env for provider (6704)
Partner Center Sell
  • Add id to composite children plan updatable flag is editable parnercentersellv1 (6698)
Power Systems
  • CCNA Error Msg Refactor (6711)
  • Capture Error Msg Refactor (6712)
Transit Gateway
  • handle create timeout by checking existing connec… (6703)
VPC Infrastructure
  • Update size validation range for RFS (6709)
  • fixed document for is_images datasource (6689)

Enhancements

General
  • Plugin Framework support (6611)
Cloud Databases
  • Refactor ibm_database resource and datasource to introduce backend abstraction (6667)
Cloud Logs
  • Logs Routing Default Private CSE endpoint and write_status (6710)
  • Update Views API for PR #​164 (164)
  • Add IBM Cloud Logs Extensions API support (6700)
Code Engine
  • Add ibm_code_engine_build_run action with Plugin Framework support (6611)
Configuration Aggregator
  • Add IBM Account Management API Support (6701)
Power Systems
  • Add externalIP attribute for network_interface (6705)
  • Add Asaps To SAP Profile/s (6708)
Secrets Manager
  • Private path support for Code Engine (6699)
  • SM event notification datasource should not fail when no registration exists (6692)
Transit Gateway
  • support Secrets Manager CRNs in authentication_key (6713)
Mastercard/terraform-provider-restapi (restapi)

v3.0.0

Compare Source

This is a huge release driven by the "simple" need to migrate the provider from TFSDK to Terraform Plugin Framework. Because the provider is already several years old, this represented an opportunity to improve how it works in accordance with refactoring required for TPF.

Great care was taken to avoid breaking changes, but please be mindful that this was an extensive set of changes!

Changes

  • Logging was revamped to use the terraform logging library across the board, so the level configured there will be the level used as the provider does it's work. The existing debug parameter on the provider and objects will now only affect whether or not the client spits out the HTTP request and response to STDERR as it works. This is separate and independent from the Terraform log stream and log level.
  • Moved to the latest terraform plugin framework. This should eliminate warnings (thanks for the report in #​337, @​twcchu) while also not affecting behaviors
  • The default timeout for the HTTP client has been set to 30 seconds instead of "infinite"
  • The provider now validates the URI provided is a parseable URI
  • The provider now marks the password field as sensitive. Thanks for the callout in #​300, Dr-J-Watson!

Fixes

  • Fixed some cases where some fields were not logged and clarify the request/response body in HTTP output. Thanks for the PR in #​316, @​rforen!
  • Send empty JSON document (just {}) when configured for (read|search|destroy_data) attributes
  • Correctly interpolate and append {id} in paths which include query strings. Thanks for the PR in #​339, @​pregress!
  • Raise parameter errors when read_search's search key and value are not specified. Thanks for the report in #​332, @​toadjuane!
  • Correctly inherit/append query string with read_search when the object has a query_string specified. Thanks for the heads up in #​332, @​zepeng811!

New

  • In addition to username/password, added a new bearer_token parameter to the provider in #​301 - thanks, @​Dr-J-Watson!
  • The provider now supports retries! To enable retry on failures (connection/TLS/etc errors or a 500-range response except 501), set max_attempts greater than 1 in retries. Thanks for the idea in #​315, @​barrack1234!
  • Support {id} interpolation in read_search.search_value during read operations. Thanks for the idea in @​333, @​toadjaune and the contribution in #​295, @​orgads!
  • Support a user-provided JSON patch to be applied during read_search operations in case the API provides a response asymmetric to what was submitted. Thanks for the idea in #​295, @​orgads!
  • Add support for ignore_server_additions which will watch for server changes only to fields present in data. Thanks for the PR in #​336, @​jor2!
  • Perform lazy client initialization to support planning when the URL for the provider isn't known yet. Thanks for the idea in #​291, @​A7exSchin
  • Add results_contains_object to the data source to avoid a second read operation to the API. Thanks for the idea in #​310, @​cybrhwk!

Misc

  • Obtain a clean HTTP client from terraform rather than the Go runtime. This avoids other providers possibly polluting the default client from affecting us.
  • Along with revamping logging, the file name from which the log entry came is no longer logged.
terraform-ibm-modules/terraform-ibm-app-configuration (terraform-ibm-modules/app-configuration/ibm)

v1.16.1

Compare Source

Bug Fixes

v1.16.0

Compare Source

Features
  • App Configuration no longer supports new integrations with Hyper Protect Crypto Services (HPCS) for key management. Existing HPCS integrations continue to work, but creating new HPCS integrations is not supported. Ref (#​364) (2dece7e)
terraform-ibm-modules/terraform-ibm-client-to-site-vpn (terraform-ibm-modules/client-to-site-vpn/ibm)

v3.5.9

Compare Source

Bug Fixes
  • add a sleep interval to ensure the VPN gateway is ready before creating the security group target resource (#​544) (e2def66)
terraform-ibm-modules/common-pipeline-assets (terraform-ibm-modules/common-pipeline-assets)

v1.24.6

Compare Source

Bug Fixes

v1.24.5

Compare Source

Bug Fixes
terraform-ibm-modules/terraform-ibm-landing-zone (terraform-ibm-modules/landing-zone/ibm)

v8.15.13

Compare Source

Bug Fixes

v8.15.12

Compare Source

Bug Fixes
terraform-ibm-modules/terraform-ibm-scc-workload-protection (terraform-ibm-modules/scc-workload-protection/ibm)

v1.18.2

Compare Source

Bug Fixes

v1.18.1

Compare Source

Bug Fixes
terraform-ibm-modules/terraform-ibm-secrets-manager-private-cert-engine (terraform-ibm-modules/secrets-manager-private-cert-engine/ibm)

v1.14.0

Compare Source

Features
  • deps: updating module provider range strategy to support IBM provider v2 (#​449) (c6bbf9d)
terraform-ibm-modules/terraform-ibm-secrets-manager-private-cert (terraform-ibm-modules/secrets-manager-private-cert/ibm)

v1.12.0

Compare Source

Features
  • deps: updating module provider range strategy to support IBM provider v2 (#​435) (e34a8a6)
terraform-ibm-modules/terraform-ibm-secrets-manager-secret-group (terraform-ibm-modules/secrets-manager-secret-group/ibm)

v1.5.0

Compare Source

Features
  • deps: updating module provider range strategy to support IBM provider v2 (#​413) (8c5401f)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@terraform-ibm-modules-dev
Copy link
Copy Markdown
Contributor

/run pipeline

@terraform-ibm-modules-dev
Copy link
Copy Markdown
Contributor

/run pipeline

@terraform-ibm-modules-dev
Copy link
Copy Markdown
Contributor

/run pipeline

@terraform-ibm-modules-dev
Copy link
Copy Markdown
Contributor

/run pipeline

@terraform-ibm-modules-ops
Copy link
Copy Markdown
Contributor Author

terraform-ibm-modules-ops commented Apr 4, 2026

ℹ️ Artifact update notice

File name: tests/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 9 additional dependencies were updated

Details:

Package Change
github.com/IBM/platform-services-go-sdk v0.96.0 -> v0.97.1
github.com/cloudflare/circl v1.6.1 -> v1.6.3
github.com/go-git/go-git/v5 v5.17.0 -> v5.17.2
golang.org/x/crypto v0.49.0 -> v0.50.0
golang.org/x/mod v0.33.0 -> v0.34.0
golang.org/x/net v0.51.0 -> v0.52.0
golang.org/x/sys v0.42.0 -> v0.43.0
golang.org/x/text v0.35.0 -> v0.36.0
golang.org/x/tools v0.42.0 -> v0.43.0

@terraform-ibm-modules-dev
Copy link
Copy Markdown
Contributor

/run pipeline

2 similar comments
@BabithaPadiri
Copy link
Copy Markdown
Collaborator

/run pipeline

@BabithaPadiri
Copy link
Copy Markdown
Collaborator

/run pipeline

@terraform-ibm-modules-dev
Copy link
Copy Markdown
Contributor

/run pipeline

@terraform-ibm-modules-dev
Copy link
Copy Markdown
Contributor

/run pipeline

@terraform-ibm-modules-dev
Copy link
Copy Markdown
Contributor

/run pipeline

@terraform-ibm-modules-dev
Copy link
Copy Markdown
Contributor

/run pipeline

1 similar comment
@BabithaPadiri
Copy link
Copy Markdown
Collaborator

/run pipeline

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants