Update ghcr.io/opentofu/opentofu Docker tag to v1.11.5#9
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Update ghcr.io/opentofu/opentofu Docker tag to v1.11.5#9renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
6b0cf37 to
88920ef
Compare
88920ef to
bb0779c
Compare
bb0779c to
d5d57c6
Compare
d5d57c6 to
a3dba99
Compare
a3dba99 to
1aba176
Compare
1aba176 to
3979b6f
Compare
3979b6f to
e236a60
Compare
e236a60 to
ade968b
Compare
ade968b to
e0939bf
Compare
e0939bf to
eb5f8b7
Compare
eb5f8b7 to
93a9594
Compare
93a9594 to
aa1897a
Compare
aa1897a to
1b900f2
Compare
1b900f2 to
cd0ead9
Compare
cd0ead9 to
7b0d5bc
Compare
7b0d5bc to
08deaf8
Compare
08deaf8 to
2eac973
Compare
2eac973 to
c398405
Compare
c398405 to
1d9a8ee
Compare
1d9a8ee to
6a41bc5
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.8.4-arm64→1.11.5-arm641.8.4-arm→1.11.5-arm1.8.4-amd64→1.11.5-amd641.8.4-386→1.11.5-386Release Notes
opentofu/opentofu (ghcr.io/opentofu/opentofu)
v1.11.5Compare Source
BUG FIXES:
universe_domainoption in the gcs backend to support sovereign GCP services (#3758)Full Changelog: https://github.com/opentofu/opentofu/blob/67fe9db49b7dafd46470cf9ac7f437aaa95f5c40/CHANGELOG.md
v1.11.4Compare Source
SECURITY ADVISORIES:
.ziparchive during either provider or module installation duringtofu init. (#3689)BREAKING CHANGES:
Modules containing local provider configurations now also reject the
enabledargument, matching existing behavior forcount,for_each, anddepends_on. (#3680)This was an oversight in the original design of the enabled feature and was missed during the review process. Although our goal is to not introduce breaking changes in patch releases, in some cases it may be warranted. Anyone who has used the enabled feature in this particular way will have unintentionally introduced a foot-gun into their infrastructure and should remedy it post-haste.
BUG FIXES:
DeferralAllowedcapability of OpenTofu since having that created unwanted behaviour from some providers. (#3676)Full Changelog: opentofu/opentofu@v1.11.3...v1.11.4
v1.11.3Compare Source
BUG FIXES:
tofu testwithmock_providerfailing during cleanup whenlifecycle { ignore_changes }references a block. (#3644)tofu applyis interrupted with Ctrl+C while using the HTTP backend. (#3624)Full Changelog: opentofu/opentofu@v1.11.2...v1.11.3
v1.11.2Compare Source
UPGRADE NOTES:
The change from #2643, that was announced previously in v1.11.0, has been reverted in this release. OpenTofu will no longer directly recommend using the
-exclude=option to work around problems caused by unknown values in provider configurations.Unfortunately there are existing providers that spuriously report that they cannot plan due to unknown values even when planning would have been successful, and so we cannot rely on providers to accurately signal when unknown values are the cause of an error. Using
-excludeis still a valid workaround for these problems even though OpenTofu cannot accurately detect when it's useful to make that suggestion.BUG FIXES:
hashicorp/helmandhashicorp/kubernetesproviders when the provider configuration contains unknown values, as long as the configuration is carefully written to avoid the plan phase actually depending on those values. (#3592)tofu initon Windows with an azurerm backend, the subscription_id is quoted correctly allowing successful authentication. (#3602)Full Changelog: opentofu/opentofu@v1.11.1...v1.11.2
v1.11.1Compare Source
BUG FIXES:
Full Changelog: opentofu/opentofu@v1.11.0...v1.11.1
v1.11.0Compare Source
OpenTofu 1.11.0
We're proud to announce that OpenTofu 1.11.0 is now officially available! 🎉
Highlights
This release cycle introduces major new capabilities and integrations:
Ephemeral Values and Write Only Attributes
Ephemeral resources allow you to work with confidential data, temporary credentials, and transient infrastructure without persisting them to your state.
The
enabledMeta-ArgumentIf you want to conditionally deploy a resource, you no longer have to use
count = var.create_my_resource ? 1 : 0, you can now add the newenabledmeta-argument to your resource to conditionally deploy it.Compatibility Notes
macOS: Requires macOS 12 Monterey or later
Azure Backend (
azurerm):endpointandARM_ENDPOINTconfiguration options are no longer supportedmsi_endpointandARM_MSI_ENDPOINToptions are no longer supportedenvironmentandmetadata_hostarguments are now mutually exclusiveissensitive() Function: Now correctly returns unknown results when evaluating unknown values. Code that previously relied on the incorrect behavior may need updates.
Testing with Mocks: Mock values generated during testing now strictly adhere to provider schemas. Test configurations with invalid mock values will need to be corrected.
S3 Module Installation: When installing module packages from Amazon S3 buckets using S3 source addresses OpenTofu will use the same credentials as the AWS CLI and SDK.
TLS and SSH Security:
draft-miller-ssh-cert-03specification-var/-var-fileduringtofu apply <planfile>:-var/-var-fileduringtofu apply <planfile>to pass again the values for ephemeral variables during apply-var/-var-fileto be used with non-ephemeral variables too, but it will error if the values given for this type of variables is different from the ones given during the plan creationTF_VARvalues should stay consistent betweenplanandapply <planfile>to avoid the errors mentioned aboveReference
Thank you for your continued support and testing of the OpenTofu project!
v1.10.9Compare Source
SECURITY ADVISORIES:
This release contains fixes for some security advisories related to previous releases in this series.
No limit on number of query string arguments in net/url's ParseQuery
This release incorporates the upstream fixes for GO-2026-4341.
crypto/tls handling of multiple messages that span across encryption level boundaries
This release incorporates the upstream fixes for GO-2026-4340.
BUG FIXES:
Using a network mirror for the providers source does not print debug logs without being asked for (#3736)
Full Changelog: https://github.com/opentofu/opentofu/blob/0de30e8050bc32dfada2c4c978e736239e0ab265/CHANGELOG.md
v1.10.8Compare Source
SECURITY ADVISORIES:
This release contains fixes for some security advisories related to previous releases in this series.
Incorrect handling of excluded subdomain constraint in conjunction with TLS certificates containing wildcard SANs
This release incorporates the upstream fixes for GO-2025-4175.
Excessive CPU usage when reporting error about crafted TLS certificate with many hostnames
This release incorporates the upstream fixes for GO-2025-4155.
Full Changelog: opentofu/opentofu@v1.10.7...v1.10.8
v1.10.7Compare Source
SECURITY ADVISORIES:
This release contains fixes for some security advisories related to previous releases in this series.
tofu initin OpenTofu v1.10.6 and earlier could potentially use unbounded memory if there is a direct or indirect dependency on a maliciously-crafted module package distributed as a "tar" archive.This would require the attacker to coerce a root module author to depend (directly or indirectly) on a module package they control, using the HTTP, Amazon S3, or Google Cloud Storage source types to refer to a tar archive.
This release incorporates the upstream fixes for CVE-2025-58183.
When making requests to HTTPS servers, OpenTofu v1.10.6 and earlier could potentially use unbounded memory or crash with a "panic" error if TLS verification involves an excessively-long certificate chain or a chain including DSA public keys.
This affected all outgoing HTTPS requests made by OpenTofu itself, including requests to HTTPS-based state storage backends, module registries, and provider registries. For example, an attacker could coerce a root module author to depend (directly or indirectly) on a module they control which then refers to a module or provider from an attacker-controlled registry. That mode of attack would cause failures in
tofu init, at module or provider installation time.Provider plugins contain their own HTTPS client code, which may have similar problems. OpenTofu v1.10.7 cannot address similar problems within provider plugins, and so we recommend checking for similar advisories and fixes in the provider plugins you use.
This release incorporates upstream fixes for CVE-2025-58185, CVE-2025-58187, and CVE-2025-58188.
BUG FIXES:
for_eachinsidedynamicblocks can now call provider-defined functions. (#3429)Full Changelog: opentofu/opentofu@v1.10.6...v1.10.7
v1.10.6Compare Source
1.10.6
UPGRADE NOTES:
BUG FIXES:
Full Changelog: opentofu/opentofu@v1.10.5...v1.10.6
v1.10.5Compare Source
BUG FIXES:
Full Changelog: opentofu/opentofu@v1.10.4...v1.10.5
v1.10.4Compare Source
BUG FIXES:
Full Changelog: opentofu/opentofu@v1.10.3...v1.10.4
v1.10.3Compare Source
1.10.3
BUG FIXES:
tryorcanand then that expression becomes relevant for deciding whether to report a "change outside of OpenTofu" in the human-oriented plan diff. (#2988)Full Changelog: opentofu/opentofu@v1.10.2...v1.10.3
v1.10.2Compare Source
1.10.2
x-amz-server-side-encryptionheader for the lockfile. (#2870)registry.terraform.iowill no longer cause errors related to a corresponding provider onregistry.opentofu.orgwhen executing workflow commands like plan and apply. (#2979)Full Changelog: opentofu/opentofu@v1.10.1...v1.10.2
v1.10.1Compare Source
BUG FIXES:
TF_APPEND_USER_AGENThandling in the S3 remote state backend. (#2955)OTHER CHANGES:
v1.10.0Compare Source
OpenTofu 1.10.0
We're thrilled to announce the release of OpenTofu 1.10.0, our most comprehensive update yet! This release represents months of dedicated work from our community, introducing some fantastic features that will improve how OpenTofu users manage and distribute infrastructure as code.
Highlights
This release cycle introduces major new capabilities and integrations:
OCI Registry Support
Full integration with OCI registries for both provider and module distribution, valuable for organizations with private infrastructure-as-code components, air-gapped environments, or enhanced security requirements.
For more information, refer to Module Packages in OCI Registries and Provider Mirrors in OCI Registries.
Native S3 Locking
Simplify your infrastructure by using S3's conditional writes capability for state locking, eliminating the need for a separate DynamoDB table.
OpenTelemetry Tracing
Gain insights into OpenTofu operations with experimental OpenTelemetry tracing, completely local and under your control.
Resource Management with Target Files
Manage complex deployments more easily with the new
-target-fileand-exclude-fileoptions, allowing version-controlled resource targeting patterns.Compatibility Notes
ghcr.io/opentofu/opentofuimage is no longer supported as a base imageReference
v1.9.4Compare Source
1.9.4
BUG FIXES:
Full Changelog: opentofu/opentofu@v1.9.3...v1.9.4
v1.9.3Compare Source
BUG FIXES:
Full Changelog: opentofu/opentofu@v1.9.2...v1.9.3
v1.9.2Compare Source
1.9.2
BUG FIXES:
tryorcanand then that expression becomes relevant for deciding whether to report a "change outside of OpenTofu" in the human-oriented plan diff. (#2988)Full Changelog: opentofu/opentofu@v1.9.1...v1.9.2
v1.9.1Compare Source
BUG FIXES:
plantimestamp()now returns unknown value during validation (#2397)required_providersblock does not panic anymore, but yields "syntax error" (2344)Full Changelog: opentofu/opentofu@v1.9.0...v1.9.1
v1.9.0Compare Source
We're proud to announce that OpenTofu 1.9.0 is now officially out! 🎉
This release includes a lot of major and minor new features, as well as a ton of community contributions!
The highlights are:
for_eachin provider configuration blocks: An alternate (aka "aliased") provider configuration can now have multiple dynamically-chosen instances using thefor_eachargument:Each instance of a resource can also potentially select a different instance of the associated provider configuration, making it easier to declare infrastructure that ought to be duplicated for each region.
-excludeplanning option: similar to-target, this allows operators to tell OpenTofu to work on only a subset of the objects declared in the configuration or tracked in the state.While
-targetspecifies the objects to include and skips everything not needed for the selected objects,-excludeinstead specifies objects to skip. OpenTofu will exclude the selected objects and everything that depends on them.Please take the above for a spin and let us know your feedback!
For all the features, see the related blog post or the detailed changelog.
You can find the full diff here.
v1.8.11Compare Source
BUG FIXES:
Full Changelog: opentofu/opentofu@v1.8.10...v1.8.11
v1.8.10Compare Source
1.8.10
BUG FIXES:
tryorcanand then that expression becomes relevant for deciding whether to report a "change outside of OpenTofu" in the human-oriented plan diff. (#2988)Full Changelog: opentofu/opentofu@v1.8.9...v1.8.10
v1.8.9Compare Source
BUG FIXES:
plantimestamp()now returns unknown value during validation (#2397)required_providersblock does not panic anymore, but yields "syntax error" (2344)Full Changelog: opentofu/opentofu@v1.8.8...v1.8.9
v1.8.8Compare Source
SECURITY:
golang.org/x/cryptoto resolve CVE-2024-45337. (#2287)golang.org/x/netto resolve CVE-2024-45338. (#2311)BUG FIXES:
tofu testnow removes outputs of destroyed modules between different test runs. (#2274)v1.8.7Compare Source
BUG FIXES:
tofu testis now settingnulls for dynamic type when generating mock values. (#2245)v1.8.6Compare Source
ENHANCEMENTS:
BUG FIXES:
tofu testcommand doesn't try to validate mock provider definition by its underlying provider schema now. (#2140)tofu test. (#2144)v1.8.5Compare Source
BUG FIXES:
tofu initwill no longer return a spurious "Backend configuration changed" error when re-initializing a working directory with existing initialization of a backend whose configuration schema has required arguments. This was a regression caused by the similar fix in the v1.8.4 release. (#2135)Full Changelog: opentofu/opentofu@v1.8.4...v1.8.5
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 becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.