Skip to content

Commit

Permalink
OpenTofu 1.8.7
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Nygaard Jensen <[email protected]>
  • Loading branch information
ravager-dk committed Dec 6, 2024
1 parent 1dda0d9 commit ba31296
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions opentofu.portable/opentofu.portable.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>opentofu.portable</id>
<version>1.8.6</version>
<version>1.8.7</version>
<packageSourceUrl>https://github.com/ravager-dk/Chocolatey-Packages/tree/master/opentofu.portable</packageSourceUrl>
<owners>Martin Nygaard Jensen</owners>
<title>OpenTofu (Portable)</title>
Expand All @@ -22,7 +22,7 @@ The key features of OpenTofu are:
- **Execution Plans:** OpenTofu has a "planning" step where it generates an execution plan. The execution plan shows what OpenTofu will do when you call apply. This lets you avoid any surprises when OpenTofu manipulates infrastructure.
- **Resource Graph:** OpenTofu builds a graph of all your resources, and parallelizes the creation and modification of any non-dependent resources. Because of this, OpenTofu builds infrastructure as efficiently as possible, and operators get insight into dependencies in their infrastructure.
- **Change Automation:** Complex changesets can be applied to your infrastructure with minimal human interaction. With the previously mentioned execution plan and resource graph, you know exactly what OpenTofu will change and in what order, avoiding many possible human errors.</description>
<releaseNotes>https://github.com/opentofu/opentofu/compare/v1.8.5...v1.8.6</releaseNotes>
<releaseNotes>https://github.com/opentofu/opentofu/compare/v1.8.6...v1.8.7</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
8 changes: 4 additions & 4 deletions opentofu.portable/tools/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ The extension has been downloaded from their official download link listed on ht
and can be verified like this:

1. Download the release tagged with the corresponding choco package version:
32-Bit: <https://github.com/opentofu/opentofu/releases/download/v1.8.6/tofu_1.8.6_windows_386.zip>
64-Bit: <https://github.com/opentofu/opentofu/releases/download/v1.8.6/tofu_1.8.6_windows_amd64.zip>
32-Bit: <https://github.com/opentofu/opentofu/releases/download/v1.8.7/tofu_1.8.7_windows_386.zip>
64-Bit: <https://github.com/opentofu/opentofu/releases/download/v1.8.7/tofu_1.8.7_windows_amd64.zip>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: 7F0AB8B6C0E9E1846901ABA2523FF98589031E7C2BD57158D023C07D7ABADD84
checksum64: 5261108E4F92AADD0478A7DD09AA6078C14D09A907531737CEBC7F96AF43D0AD
checksum32: C4B8E975FA3A49E85AC0BCBCFBE9CC0CE91AC2DEBFE64AC14C3A3A249E35E353
checksum64: C63B55B322CA292491D8151CF24F43BA64F3522F896F13B16A49477A362580DF
4 changes: 2 additions & 2 deletions opentofu.portable/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ $toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
PackageName = "opentofu.portable"
File = "$toolsPath\tofu_1.8.6_windows_386.zip"
File64 = "$toolsPath\tofu_1.8.6_windows_amd64.zip"
File = "$toolsPath\tofu_1.8.7_windows_386.zip"
File64 = "$toolsPath\tofu_1.8.7_windows_amd64.zip"
Destination = $toolsPath
}
Get-ChocolateyUnzip @packageArgs
Expand Down
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions opentofu/opentofu.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>opentofu</id>
<version>1.8.6</version>
<version>1.8.7</version>
<packageSourceUrl>https://github.com/ravager-dk/Chocolatey-Packages/tree/master/opentofu</packageSourceUrl>
<owners>Martin Nygaard Jensen</owners>
<title>OpenTofu</title>
Expand All @@ -29,9 +29,9 @@ The key features of OpenTofu are:

- **Change Automation**: Complex changesets can be applied to your infrastructure with minimal human interaction. With the previously mentioned execution plan and resource graph, you know exactly what OpenTofu will change and in what order, avoiding many possible human errors.
</description>
<releaseNotes>https://github.com/opentofu/opentofu/compare/v1.8.5...v1.8.6</releaseNotes>
<releaseNotes>https://github.com/opentofu/opentofu/compare/v1.8.6...v1.8.7</releaseNotes>
<dependencies>
<dependency id="opentofu.portable" version="[1.8.6]" />
<dependency id="opentofu.portable" version="[1.8.7]" />
</dependencies>
</metadata>
<files>
Expand Down

0 comments on commit ba31296

Please sign in to comment.