mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
go.mod: Upgrade to Go 1.24
This selects the latest version of Go for forthcoming releases. Upgrading does immediately change some behaviors, which are documented in the CHANGELOG.md update here. Signed-off-by: Martin Atkins <mart@degeneration.co.uk>
This commit is contained in:
parent
d15bd07501
commit
c95248e979
@ -1 +1 @@
|
||||
1.22.11
|
||||
1.24.0
|
||||
|
@ -2,8 +2,13 @@
|
||||
|
||||
UPGRADE NOTES:
|
||||
|
||||
* Using the `ghcr.io/opentofu/opentofu` image as a base image for custom images is no longer supported. Please see https://opentofu.org/docs/intro/install/docker/ for instructions on building your own image.
|
||||
* On Linux, OpenTofu now requires kernel version 3.2 or later.
|
||||
* On macOS, OpenTofu now requires macOS 11 Big Sur or later. We expect that the next minor release will require macOS 12 Monterey or later.
|
||||
* Using the `ghcr.io/opentofu/opentofu` image as a base image for custom images is no longer supported. Refer to https://opentofu.org/docs/intro/install/docker/ for instructions on building your own image.
|
||||
* OpenTofu 1.10 with `pg` backend must not be used in parallel with older versions. It may lead to unsafe state writes, when the database is shared across multiple projects.
|
||||
* On Windows, OpenTofu now has a more conservative definition of "symlink" which is limited only true [symbolic links](https://learn.microsoft.com/en-us/windows/win32/fileio/symbolic-links), and does not include other [reparse point](https://learn.microsoft.com/en-us/windows/win32/fileio/reparse-points) types such as [junctions](https://learn.microsoft.com/en-us/windows/win32/fileio/hard-links-and-junctions#junctions).
|
||||
|
||||
This change fixes a number of edge-cases that caused OpenTofu to interpret paths incorrectly in earlier versions, but may cause new failures if the path you use for the `TEMP` environment variable traverses through directory junctions. Replacing any directory junctions with directory symlinks (e.g. using [`mklink`](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/mklink) with the `/d` parameter instead of the `/j` parameter) should ensure correct treatment.
|
||||
|
||||
NEW FEATURES:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user