From e30d001a977fc13c7d6f54d89c5a28a4e03ce31288df51f2a91be532d9bd0e4b Mon Sep 17 00:00:00 2001 From: Johannes Kastl Date: Fri, 1 Nov 2024 17:53:09 +0000 Subject: [PATCH] update to 0.68.7 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:terraform/terragrunt?expand=0&rev=349 --- .gitattributes | 23 + .gitignore | 1 + Makefile | 36 + PACKAGING_README.md | 14 + _service | 19 + _servicedata | 4 + terragrunt-0.62.1.obscpio | 3 + terragrunt-0.62.3.obscpio | 3 + terragrunt-0.63.2.obscpio | 3 + terragrunt-0.63.6.obscpio | 3 + terragrunt-0.64.0.obscpio | 3 + terragrunt-0.64.1.obscpio | 3 + terragrunt-0.64.2.obscpio | 3 + terragrunt-0.66.1.obscpio | 3 + terragrunt-0.66.3.obscpio | 3 + terragrunt-0.66.4.obscpio | 3 + terragrunt-0.66.5.obscpio | 3 + terragrunt-0.66.9.obscpio | 3 + terragrunt-0.67.10.obscpio | 3 + terragrunt-0.67.15.obscpio | 3 + terragrunt-0.67.16.obscpio | 3 + terragrunt-0.67.4.obscpio | 3 + terragrunt-0.68.2.obscpio | 3 + terragrunt-0.68.4.obscpio | 3 + terragrunt-0.68.6.obscpio | 3 + terragrunt-0.68.7.obscpio | 3 + terragrunt.changes | 1987 ++++++++++++++++++++++++++++++++++++ terragrunt.obsinfo | 4 + terragrunt.spec | 56 + vendor.tar.gz | 3 + 30 files changed, 2207 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 PACKAGING_README.md create mode 100644 _service create mode 100644 _servicedata create mode 100644 terragrunt-0.62.1.obscpio create mode 100644 terragrunt-0.62.3.obscpio create mode 100644 terragrunt-0.63.2.obscpio create mode 100644 terragrunt-0.63.6.obscpio create mode 100644 terragrunt-0.64.0.obscpio create mode 100644 terragrunt-0.64.1.obscpio create mode 100644 terragrunt-0.64.2.obscpio create mode 100644 terragrunt-0.66.1.obscpio create mode 100644 terragrunt-0.66.3.obscpio create mode 100644 terragrunt-0.66.4.obscpio create mode 100644 terragrunt-0.66.5.obscpio create mode 100644 terragrunt-0.66.9.obscpio create mode 100644 terragrunt-0.67.10.obscpio create mode 100644 terragrunt-0.67.15.obscpio create mode 100644 terragrunt-0.67.16.obscpio create mode 100644 terragrunt-0.67.4.obscpio create mode 100644 terragrunt-0.68.2.obscpio create mode 100644 terragrunt-0.68.4.obscpio create mode 100644 terragrunt-0.68.6.obscpio create mode 100644 terragrunt-0.68.7.obscpio create mode 100644 terragrunt.changes create mode 100644 terragrunt.obsinfo create mode 100644 terragrunt.spec create mode 100644 vendor.tar.gz diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..623502c --- /dev/null +++ b/Makefile @@ -0,0 +1,36 @@ +NAME = terragrunt + +mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) +mkfile_dir := $(dir $(mkfile_path)) +export GOPATH := $(mkfile_dir)/tmpdir/ + +# make sure ./ is in the path, +# otherwise mockery is not found... +export PATH := :$(mkfile_dir)/tmpdir/bin:$(PATH) + +default: clean tar + +clean: + rm -rf $(NAME) $(NAME)-*.obscpio vendor.tar.gz ./tmpdir + +tar: + osc service manualrun + mkdir -p ./tmpdir/src/ && \ + rm -rf ./tmpdir/src/ && \ + echo "Copy files to ./tmpdir/src/" && \ + cp -r ./terragrunt/ ./tmpdir/src && \ + cd ./tmpdir/src/ && \ + echo "Installing mockery" && \ + go install github.com/vektra/mockery/v2@v2.43.0 && \ + echo "Starting go generate" && \ + go generate ./... && \ + go mod download && \ + go mod vendor && \ + echo "Creating tarball vendor.tar.gz" && \ + tar czf ../../vendor.tar.gz ./vendor && \ + ls -lh ../../vendor.tar.gz && \ + echo "Cleaning up" && \ + go clean -modcache && \ + cd ../../ && \ + rm -rf ./tmpdir && \ + echo "Finished" diff --git a/PACKAGING_README.md b/PACKAGING_README.md new file mode 100644 index 0000000..8ad5d0d --- /dev/null +++ b/PACKAGING_README.md @@ -0,0 +1,14 @@ +# Packaging terragrunt + +terragrunt 0.58.4 changed the Makefile. Since then, the `mocks` need to be +prepared during build. +This also means, that vendoring fails without first creating the mocks... + +1. Change the version in the `_service` file +3. Run `make` +4. Check the autogenerated changelog entry +5. Commit the changes as usual + +For the OBS workflow you need `obs-service-tar_scm`. + +For the `make` part you need `make` and a recent go installation. diff --git a/_service b/_service new file mode 100644 index 0000000..d974f53 --- /dev/null +++ b/_service @@ -0,0 +1,19 @@ + + + https://github.com/gruntwork-io/terragrunt + git + .git + v0.68.7 + @PARENT_TAG@ + enable + v(.*) + + + terragrunt + + + + *.tar + gz + + diff --git a/_servicedata b/_servicedata new file mode 100644 index 0000000..90f123b --- /dev/null +++ b/_servicedata @@ -0,0 +1,4 @@ + + + https://github.com/gruntwork-io/terragrunt + 326c3251e74f7ea5156ace251fdcc1d49f1084c3 \ No newline at end of file diff --git a/terragrunt-0.62.1.obscpio b/terragrunt-0.62.1.obscpio new file mode 100644 index 0000000..ea7e60d --- /dev/null +++ b/terragrunt-0.62.1.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f318e6e4a67422e821a008da8792363c0e6a552ad2f8df1d4a14ac70946ec78 +size 7724557 diff --git a/terragrunt-0.62.3.obscpio b/terragrunt-0.62.3.obscpio new file mode 100644 index 0000000..29e93bd --- /dev/null +++ b/terragrunt-0.62.3.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5016e3e8aea8baf77ec0903f0db4729f940c3d018bf3847ad5c58c7cfb0ea0e5 +size 7726093 diff --git a/terragrunt-0.63.2.obscpio b/terragrunt-0.63.2.obscpio new file mode 100644 index 0000000..f9dd04c --- /dev/null +++ b/terragrunt-0.63.2.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b902eda3a2e0fcac846073b3a6005b1b7c62e6480c86edb45e3a9d1bb7c9174e +size 7726605 diff --git a/terragrunt-0.63.6.obscpio b/terragrunt-0.63.6.obscpio new file mode 100644 index 0000000..6863ac1 --- /dev/null +++ b/terragrunt-0.63.6.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09bdcc57b1d3ec97fd5f8ec6b243054f1b3177bcfa1697e9d8775527d8da36f0 +size 7757325 diff --git a/terragrunt-0.64.0.obscpio b/terragrunt-0.64.0.obscpio new file mode 100644 index 0000000..fbebe4c --- /dev/null +++ b/terragrunt-0.64.0.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4d069dddfc7bf60f716fa2a7ed550334d66fa1bb1726bf82617ee07bb68b127 +size 7762445 diff --git a/terragrunt-0.64.1.obscpio b/terragrunt-0.64.1.obscpio new file mode 100644 index 0000000..040bc73 --- /dev/null +++ b/terragrunt-0.64.1.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5e258c7529794a721942c8722826147a198d1cbc8e8b69223bd5d3bfd97e810 +size 7766029 diff --git a/terragrunt-0.64.2.obscpio b/terragrunt-0.64.2.obscpio new file mode 100644 index 0000000..e1f1b8c --- /dev/null +++ b/terragrunt-0.64.2.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d5396a9d7df3875b9bd43df50a09a27fa471d2eabb955cff6bda41f35e1e52 +size 7772685 diff --git a/terragrunt-0.66.1.obscpio b/terragrunt-0.66.1.obscpio new file mode 100644 index 0000000..8d2ec02 --- /dev/null +++ b/terragrunt-0.66.1.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beef1cf5218bcc979f64d154942d2e8e36830753bcd6fc07a0e1d2e07f008438 +size 7795213 diff --git a/terragrunt-0.66.3.obscpio b/terragrunt-0.66.3.obscpio new file mode 100644 index 0000000..2562b6d --- /dev/null +++ b/terragrunt-0.66.3.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac9eaa784ae0a9136ba330a210591ea8faa086c454488b78c6b23b3dd29e33d +size 7805453 diff --git a/terragrunt-0.66.4.obscpio b/terragrunt-0.66.4.obscpio new file mode 100644 index 0000000..8cc31a9 --- /dev/null +++ b/terragrunt-0.66.4.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b971957a27e36cfd5aa83e85c726850a69c8d862666e50d490293b1ea926494 +size 7818253 diff --git a/terragrunt-0.66.5.obscpio b/terragrunt-0.66.5.obscpio new file mode 100644 index 0000000..970c568 --- /dev/null +++ b/terragrunt-0.66.5.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3542c5686f7b624a5d0ac828be5c819e6b319a02de67d2cd9e1c450b1b79171 +size 7815693 diff --git a/terragrunt-0.66.9.obscpio b/terragrunt-0.66.9.obscpio new file mode 100644 index 0000000..0326b7d --- /dev/null +++ b/terragrunt-0.66.9.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e7e05872f885ea56f0b197e4dd7f0359bb089f2b95b4add5ef5478af1f43bc +size 7841805 diff --git a/terragrunt-0.67.10.obscpio b/terragrunt-0.67.10.obscpio new file mode 100644 index 0000000..a1c1e90 --- /dev/null +++ b/terragrunt-0.67.10.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25bb062bab1287918d9ed62b49ae6ff64e0cbb1e4ece3788166e484b74245240 +size 7954445 diff --git a/terragrunt-0.67.15.obscpio b/terragrunt-0.67.15.obscpio new file mode 100644 index 0000000..0f97b65 --- /dev/null +++ b/terragrunt-0.67.15.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231e7c4b8f0920af8a621b698438201f491566721084ecb8edbc69b3e0baf36d +size 7992333 diff --git a/terragrunt-0.67.16.obscpio b/terragrunt-0.67.16.obscpio new file mode 100644 index 0000000..6e6280f --- /dev/null +++ b/terragrunt-0.67.16.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb65790e4e61555e029faaf39836660fd127e9d6074537907bdc149363f4e253 +size 7993357 diff --git a/terragrunt-0.67.4.obscpio b/terragrunt-0.67.4.obscpio new file mode 100644 index 0000000..c328983 --- /dev/null +++ b/terragrunt-0.67.4.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba86ea0f6849fa4565836bd352dd236ab9b743e50c9866f46e1adbd72992bbb +size 7891469 diff --git a/terragrunt-0.68.2.obscpio b/terragrunt-0.68.2.obscpio new file mode 100644 index 0000000..3c51589 --- /dev/null +++ b/terragrunt-0.68.2.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8c570f7b626635c7b66399a77ad1b0383b7f5ee6c3fc064aee1674be32cc448 +size 8010253 diff --git a/terragrunt-0.68.4.obscpio b/terragrunt-0.68.4.obscpio new file mode 100644 index 0000000..84c8562 --- /dev/null +++ b/terragrunt-0.68.4.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:475bb293cb530f5e1683ba8aad22cad58fb0d83876146f5b30b796cf79d778a5 +size 8030733 diff --git a/terragrunt-0.68.6.obscpio b/terragrunt-0.68.6.obscpio new file mode 100644 index 0000000..ad7b3a6 --- /dev/null +++ b/terragrunt-0.68.6.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d53b78d12741c6d0a354aa4e43bf391477a8ca2cd4b89c335ec9c474d98b9b85 +size 8045069 diff --git a/terragrunt-0.68.7.obscpio b/terragrunt-0.68.7.obscpio new file mode 100644 index 0000000..e68fcb9 --- /dev/null +++ b/terragrunt-0.68.7.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea0e4d5367c58d09f157eb1a19c470fd2b09fa4945517e659f42348f9ebbb47 +size 8047117 diff --git a/terragrunt.changes b/terragrunt.changes new file mode 100644 index 0000000..9519be4 --- /dev/null +++ b/terragrunt.changes @@ -0,0 +1,1987 @@ +------------------------------------------------------------------- +Fri Nov 01 16:15:59 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.68.7: + * Add provider cache offline errors handling (#3527) + +------------------------------------------------------------------- +Tue Oct 29 15:12:04 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.68.6: + * Updated --terragrunt-out-dir / --terragrunt-json-out-dir to + handle relative paths. +- Update to version 0.68.5: + * Added strict flag for improved performance in dependency + processing + * You can now enhance performance by setting the environment + variable: + TERRAGRUNT_STRICT_CONTROL="skip-dependencies-inputs" + This will skip input processing for dependencies, leading to + faster execution times when running Terragrunt. + * Improved CI/CD pipeline to build without Go proxy and detect + checksum changes. + * Enhanced error messages for invalid strict control flags. + * Updated dependencies for better performance and stability. + * Refined scaffold documentation. + * Fixed panic issue in Sops decryption. + * Corrected handling of pseudo-tty commands. + +------------------------------------------------------------------- +Thu Oct 17 19:04:03 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.68.4: + * chore: Updating deps (#3480) + * CICD updates (#3467) + * feat: Upgrading `go-getter` to v2 in scaffold (#3455) + +------------------------------------------------------------------- +Wed Oct 16 16:16:56 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.68.3: + * feat: Adding Strict Package (#3424) + +------------------------------------------------------------------- +Wed Oct 16 08:01:53 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.68.2: + * Fixing modules output corruption (#3459) + * Redirect engine messages to stderr (#3468) + +------------------------------------------------------------------- +Fri Oct 11 07:06:21 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.68.1: + * fix: Removing non non-interactive logic in err stream redirect + (#3464) + +------------------------------------------------------------------- +Fri Oct 11 07:02:22 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.68.0: + * Suppressing `423` error in Terragrunt Provider Cache (#3453) + * Fix concurrent map write due to read lock and delete (#3457) + * fix(init): do not require re-init after explicit init on clean + directory (#2949) + * feat: support merging the "skip" attribute from included files. + (#3225) + * build(deps): bump webrick from 1.8.1 to 1.8.2 in /docs (#3436) + +------------------------------------------------------------------- +Sun Oct 06 08:04:37 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.16: + * Handling of redirected input (#3451) + +------------------------------------------------------------------- +Wed Oct 02 06:28:29 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.15: + * Engine log level propagation (#3443) + +------------------------------------------------------------------- +Fri Sep 27 13:09:48 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.14: + * fix: Use env vars for `sops_decrypt_file` (#3439) + +------------------------------------------------------------------- +Fri Sep 27 13:05:01 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.13: + * CVE fixes and dependencies update (#3435) + +------------------------------------------------------------------- +Fri Sep 27 12:58:39 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.12: + * Fixing registry host discovery (Terragrunt Provider Cache) + (#3432) + * Fixing converting absolute paths to relative in logs (#3433) + +------------------------------------------------------------------- +Wed Sep 25 17:03:18 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.11: + * feat: introducing "copy_terraform_lock_file" to fine tune Lock + File Handling (#2889) + +------------------------------------------------------------------- +Sat Sep 21 13:44:15 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.10: + * Improved errors printing in case of terraform/tofu invocation + (#3423) + * feat: Adding release announcement workflow (#3419) + +------------------------------------------------------------------- +Sat Sep 21 13:38:23 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.9: + * fix: update repository for catalog command (#3415) + * feat: Adding issue templates (#3416) + * feat: Adding `codespell` to Automatically Check Spelling + (#3413) + +------------------------------------------------------------------- +Sat Sep 21 13:35:11 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.8: + * User-friendly error for invalid envs/flags (#3414) + +------------------------------------------------------------------- +Sat Sep 21 13:30:53 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.7: + * Downloading of latest engine (#3412) + * feat: Adding `stylecheck` lint (#3354) + +------------------------------------------------------------------- +Sat Sep 21 13:26:02 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.6: + * Fixing output STDOUT logs to `stdout` (#3409) + * Allow pre-release versions to pass version constraints (#3405) + +------------------------------------------------------------------- +Sat Sep 14 08:22:33 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.5: + * Fix various logging issues. Log package refactoring. (#3400) + * feat: Adding `preserved` label exemption to stale check (#3392) + * Fixed scafold tests (#3396) + +------------------------------------------------------------------- +Fri Sep 13 18:50:23 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.4: + * Added handling of TERRAGRUNT_TEMP_QUOTE_NULL (#3395) + * Updated download test to fetch changes from main (#3386) + * TG-251 Test fixtures organisation (#3380) + +------------------------------------------------------------------- +Fri Sep 13 18:46:36 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.3: + * fix: Reverting changes in #3383 (#3385) + +------------------------------------------------------------------- +Fri Sep 13 18:40:06 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.2: + * 3364 - Update Remote State Encryption When Configurations Are + Updated (#3383) + * Migration from master to main (#3379) + * build(deps-dev): bump rexml from 3.3.3 to 3.3.6 in /docs (#3359) + * Tests simplification (#3365) + +------------------------------------------------------------------- +Fri Sep 13 18:32:31 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.1: + * Dependencies upgrade (#3374) + +------------------------------------------------------------------- +Fri Sep 13 18:25:14 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.67.0: + * Log improvements (#3338) + * Locals doc: Fix/improve 'Reading from other HCL files' (#3361) + * feat: Adding `thelpher` and `wastedassign` lints (#3352) + * feat: Split out unessential jobs (#3357) + * feat: Adding strict lint (#3348) + * Engine documentation update (#3355) + * feat: Adding `wsl` lint (#3351) + +------------------------------------------------------------------- +Tue Aug 20 16:40:34 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.9: + * fix: make `terragrunt-fetch-dependency-output-from-state` to + work with not applied dependencies (#3350) + +------------------------------------------------------------------- +Fri Aug 16 18:21:48 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.8: + * chore: Bumping go to `1.22` (#3346) + +------------------------------------------------------------------- +Fri Aug 16 18:10:54 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.7: + * fix: Fixing remote state init skip (#3345) + * Adding `test` Lint Presets (#3340) + * Updated documentation for --terragrunt-graph-root (#3344) + * fix: Reverting to asserts for non error checking assertions + (#3341) + +------------------------------------------------------------------- +Wed Aug 14 16:53:36 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.6: + * Engine output handling (#3339) + +------------------------------------------------------------------- +Tue Aug 13 18:04:24 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.5: + * chore: Adding `performance` Lint Preset (#3336) + * chore: Adding `bugs` Lint Preset (#3334) + +------------------------------------------------------------------- +Mon Aug 12 14:40:54 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.4: + * chore: Bumping `golangci-lint` to `v1.59.1` (#3333) + * Fix CICD tests for mocks (#3335) + * chore: Hiding Mocks Tests (#3331) + * fix: Fixing stale action (#3332) + * fix: Fixing command not found error (#3330) + * Add configuration options for AWS S3 server access logging + (#3006) + * feat: Add stale issue workflow (#3329) + +------------------------------------------------------------------- +Wed Aug 07 07:32:56 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.3: + * Terragrunt performance improvements (#3307) + +------------------------------------------------------------------- +Wed Aug 07 07:27:55 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.2: + * feat: Adding `TG_CTX_TF_PATH` to hook context (#3323) + * build(deps-dev): bump rexml from 3.3.1 to 3.3.3 in /docs + (#3316) + * build(deps-dev): bump nokogiri from 1.16.3 to 1.16.5 in /docs + (#3135) + * add env TERRAGRUNT_EXCLUDE_DIR to docs (#3320) + * fix: Reference OpenTofu Everywhere We Can (#3319) + +------------------------------------------------------------------- +Sat Aug 03 07:52:13 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.1: + * Adding resolving relative urls to Terragrunt Provider Cache + (#3318) + * Fixing interpreting empty list as null value (#3317) + +------------------------------------------------------------------- +Fri Aug 02 14:19:29 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.66.0: + * chore: Bumping OpenTofu to `v1.8.0` (#3315) + +------------------------------------------------------------------- +Fri Aug 02 14:11:28 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.65.0: + * `sops_decrypt_file()`: resolve path argument relative to + `terragrunt.hcl` (#2752) + * chore: Bumping `gruntwork-io/pre-commit` to `v0.1.23` (#3311) + +------------------------------------------------------------------- +Thu Aug 01 11:20:35 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.64.5: + * Sorting output and fixing minor bugs in `hclvalidate` command + (#3309) + * fix: Adjusting docs for engines (#3306) + +------------------------------------------------------------------- +Thu Aug 01 10:33:07 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.64.4: + * Fixing "dependency cycle between modules" when using + `hclvalidate` command with undefined `config_path` attribute + (#3305) + +------------------------------------------------------------------- +Thu Aug 01 07:54:12 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.64.3: + * Engine verification (#3300) + +------------------------------------------------------------------- +Tue Jul 30 06:39:19 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.64.2: + * Adding supply credentials for a third-party registry when using + Terragrunt Provider Cache (#3303) + +------------------------------------------------------------------- +Sat Jul 27 08:05:55 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.64.1: + * Adding registry url discovery for Terragrunt Provider Cache + (#3299) + +------------------------------------------------------------------- +Thu Jul 25 17:55:52 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.64.0: + * Upgrade to Sops 3.9.0 (#3297) + +------------------------------------------------------------------- +Thu Jul 25 17:52:08 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.63.8: + * fix: Fixing dynamic auth for deps (#3293) + +------------------------------------------------------------------- +Thu Jul 25 17:39:40 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.63.7: + * Open Telemetry update (#3291) + +------------------------------------------------------------------- +Thu Jul 25 05:22:22 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.63.6: + * Fixing generation of `provider_installation` block used for + provider caching (#3290) + +------------------------------------------------------------------- +Wed Jul 24 17:46:40 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.63.5: + * Add support for engine downloading (#3281) + +------------------------------------------------------------------- +Wed Jul 24 17:42:19 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.63.4: + * 3274 - fix: Include nothing when value for + `terragrunt-include-dir` doesn't exist on the filesystem + (#3286) + +------------------------------------------------------------------- +Tue Jul 23 05:36:28 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.63.3: + * Fixing generation of `provider_installation` block used for + provider caching (#3280) + * Updated links to provider caching (#3282) + +------------------------------------------------------------------- +Fri Jul 19 05:46:22 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.63.2: + * fix: getting dynamic credentials before parsing locals block + (#3279) + +------------------------------------------------------------------- +Thu Jul 18 18:57:24 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.63.1: + * chore: add log before executing external command (#3276) + +------------------------------------------------------------------- +Thu Jul 18 18:53:03 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.63.0: + * fix: Reducing the number of Rs in + `TERRRAGRUNT_IAM_ASSUME_ROLE_WEB_IDENTITY_TOKEN` (#3272) + +------------------------------------------------------------------- +Wed Jul 17 04:58:01 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.62.3: + * Add handling of multi line variables description (#3269) + +------------------------------------------------------------------- +Tue Jul 16 20:19:03 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.62.2: + * fix: diags error when parse remote_state (#3268) + +------------------------------------------------------------------- +Tue Jul 16 06:08:38 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.62.1: + * Dependencies update (#3266) + +------------------------------------------------------------------- +Fri Jul 12 19:33:33 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.62.0: + * IaC engine support (#3218) + +------------------------------------------------------------------- +Fri Jul 12 19:27:18 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.61.1: + * Added passing of extra ENVs to the hook executed command + (#3263) + * feat: Adding more documentation on validation (#3262) + * fix: Fixing Pages Build (#3260) + * feat: Adding pages GHA build (#3259) + +------------------------------------------------------------------- +Thu Jul 11 18:41:39 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.61.0: + * Added `hclvalidate` command (#3248) + * Added `--terragrunt-excludes-file` flag (#3255) + * fix: Adjusting CODEOWNERS file so that all are recognized as + codeowners, instead of only the last entry (#3251) + +------------------------------------------------------------------- +Wed Jul 10 08:35:11 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.60.1: + * Concurrent access write fixes (#3245) + +------------------------------------------------------------------- +Wed Jul 10 08:29:04 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.60.0: + * Add support for Terraform 1.9 (#3239) + +------------------------------------------------------------------- +Wed Jul 10 07:44:06 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.59.7: + * Fixed using authentication provider credentials with + `get_aws_account_id` (#3243) + * chore: Updating `CODEOWNERS` to include current Terragrunt + maintainers (#3233) + * fix: Fixing quick start docs (#3232) + * chore: switch to gtm for docs site (#3229) + +------------------------------------------------------------------- +Wed Jul 03 15:14:51 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.59.6: + * build(deps): bump github.com/hashicorp/go-retryablehttp (#3226) + * build(deps): bump github.com/hashicorp/go-getter from 1.7.4 to + 1.7.5 (#3227) + * Add script to check GH release assets (#3223) + +------------------------------------------------------------------- +Fri Jun 21 19:02:21 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.59.5: + * Fixed using dynamic AWS credentials for `remote_state` (#3219) + * fix: Adjusting language for `--terragrunt-non-interactive` in + the docs so that it's clearer what it does for users (#3216) + * feat: Adding more context on why caching partial parsing of + configs can be useful (#3214) + * Updated resource class to avoid killing build process (#3213) + * fix: Fixing cookie policy link (#3212) + +------------------------------------------------------------------- +Mon Jun 17 19:15:09 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.59.4: + * Fixed fetching compressed data from a network mirror server + (#3208) + * Remove TERRAGRUNT_PROVIDER_CACHE_DISABLE_PARTIAL_LOCK_FILE + reference (#3206) + +------------------------------------------------------------------- +Thu Jun 13 18:44:43 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.59.3: + * Add support for AssumeRoleWithWebIdentity (#2997) + +------------------------------------------------------------------- +Thu Jun 13 09:46:46 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.59.2: + * build(deps): bump + github.com/Azure/azure-sdk-for-go/sdk/azidentity (#3199) + * chore: Updating copy on README.md (#3200) + +------------------------------------------------------------------- +Wed Jun 12 13:46:38 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.59.1: + * feat: Adding caching for role assumptions (#3197) + * feat: Adding initialization check caching (#3193) + * chore: Updating mac release machine to `macos.m1.medium.gen1` + (#3186) + +------------------------------------------------------------------- +Wed Jun 12 13:34:15 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.59.0: + * feat: Moving `cache` to `internal` (#3192) + * feat: dynamic authentication (#3194) + +------------------------------------------------------------------- +Mon Jun 10 13:47:56 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.15: + * feat: log verbose improvements (#3189) + +------------------------------------------------------------------- +Tue Jun 04 06:24:41 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.14: + * Terragrunt Provider Cache with `providers lock` command (#3176) + +------------------------------------------------------------------- +Sat Jun 01 09:56:00 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.13: + * Improved errors printing returned from Sops (#3174) + * fix: Correcting docs on default binary used by Terragrunt + (#3173) + * s/trragrunt/terragrunt/ (#3170) + * feat: Adding binary signing test (#3166) + +------------------------------------------------------------------- +Thu May 30 11:22:26 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.12: + * fix: init command on every run (#3167) + +------------------------------------------------------------------- +Thu May 30 11:08:04 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.11: + * fix: Revert resource class update (#3164) + * chore: Bumping CircleCI configs (#3160) + * Fixed flaky test `TestTerragruntProviderCache` (#3161) + +------------------------------------------------------------------- +Fri May 24 19:32:35 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.10: + * Fixed ignoring `TERRAGRUNT_DOWNLOAD` for dependent modules + (#3158) + * fix: Fixing `TestTerraformHelp` (#3154) + * fix: Fixing some malformed cli-options in docs (#3152) + * fix: get rid of testdata archives (#3155) + +------------------------------------------------------------------- +Wed May 22 21:35:50 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.9: + * Improved logging for S3 bucket encryption (#3147) + * Fixed subcommand actions wrapping (#3144) + * Cleaning up docs (#3149) + * feat: Improving `locals` documentation (#3148) + +------------------------------------------------------------------- +Tue May 21 18:35:11 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.8: + * fix: s3 source handling (#3146) + +------------------------------------------------------------------- +Sun May 19 09:38:14 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.7: + * Support all `provider_installation` methods with provider cache + (#3133) + +------------------------------------------------------------------- +Sat May 18 09:20:07 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.6: + * fix: terraform source url handling (#3142) + +------------------------------------------------------------------- +Sat May 18 09:04:13 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.5: + * Docs and tests fixes (#3136) + +------------------------------------------------------------------- +Sat May 11 19:49:23 UTC 2024 - Johannes Kastl + +- add Makefile and PACKAGING_README.md, remove services from + `_service`. Upstream changes break the go module vendoring, so we + can no longer use the go_modules service + +------------------------------------------------------------------- +Fri May 10 20:41:19 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.4: + * Updated makefile to generate mocks before build (#3126) + * Usage of locks when copy metadata fields (#3124) + +------------------------------------------------------------------- +Wed May 08 10:30:27 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.3: + * Added Terraform lock file generation with provider caching (#3108) + +------------------------------------------------------------------- +Fri May 03 16:15:59 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.2: + * Fixed handling of module prefixes (#3104) + * Bump CI image (#3116) + * Get rid of third party code (#3114) + +------------------------------------------------------------------- +Thu May 02 07:36:01 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.1: + * Added `if_disabled` attribute for `generate` block (#3110) + +------------------------------------------------------------------- +Thu May 02 07:33:47 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.58.0: + * OpenTofu 1.7 (#3111) + * LIB-75: Replace tfenv and tgswitch with mise (#3094) + +------------------------------------------------------------------- +Mon Apr 29 09:27:45 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.13: + * fix(provider_cache): Use more permissive regex search for + Status Locked (#3105) + * fix: unit test (#3106) + +------------------------------------------------------------------- +Sat Apr 27 09:19:41 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.12: + * Use OpenTofu by default if available in environment (#3097) + +------------------------------------------------------------------- +Fri Apr 26 16:55:15 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.11: + * fix: sync Terraform CLI args for 'show' command (#3075) + +------------------------------------------------------------------- +Fri Apr 26 16:46:18 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.10: + * Open Telemetry context propagation (#3098) + * feat: Adding RFC Form (#3099) + +------------------------------------------------------------------- +Wed Apr 24 16:58:58 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.9: + * Check hash and signature of cached providers (#3055) + * fix: copyright text (#3091) + +------------------------------------------------------------------- +Tue Apr 23 19:41:58 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.8: + * Add support for JSON directory output (#3084) + +------------------------------------------------------------------- +Tue Apr 23 19:39:18 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.7: + * Bump github.com/hashicorp/go-getter to 1.7.4 (#3088) + +------------------------------------------------------------------- +Tue Apr 23 10:36:51 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.6: + * Get rid of code under BUSL license (#3085) + * Moved destroy operation to separated section (#3074) + +------------------------------------------------------------------- +Fri Apr 19 19:27:17 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.5: + * build(deps): bump golang.org/x/net from 0.19.0 to 0.23.0 + (#3072) + +------------------------------------------------------------------- +Fri Apr 19 19:22:31 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.4: + * Add support for saving output plan (#3073) + +------------------------------------------------------------------- +Fri Apr 19 19:13:27 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.3: + * Fixes getting output from multiple nested dependencies (#3071) + +------------------------------------------------------------------- +Wed Apr 17 10:15:49 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.2: + * Fixed handling of dependency outputs when json log format is + enabled (#3049) + * Fixed 'inputs' typo in docs (#3061) + +------------------------------------------------------------------- +Mon Apr 15 18:32:09 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.1: + * Fixes module requests routing with provider caching (#3057) + * Improved test for checking aws errors (#3058) + * Updated terragrunt command execution in parallel tests (#3054) + +------------------------------------------------------------------- +Sat Apr 13 09:35:09 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.57.0: + * Support for Terraform 1.8 (#3052) + * docs: update terragrunt supported versions table (#3038) + +------------------------------------------------------------------- +Thu Apr 11 04:59:48 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.56.5: + * Fixes destroy order for `apply -destroy` alias (#3011) + * build(deps): bump github.com/docker/docker (#3046) + * install.md: add for Gentoo, link to Repology (#3044) + +------------------------------------------------------------------- +Wed Apr 10 17:35:24 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.56.4: + * Caching Terraform providers (#3001) + * chore: fix function names in comment (#3042) + * Fix TestTerragruntParallelism (#3045) + * Flaky tests fixes (#3041) + +------------------------------------------------------------------- +Mon Apr 08 17:06:22 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.56.3: + * Fixes slow destroy of config deeply nested in config hierarchy + (#3015) + +------------------------------------------------------------------- +Fri Apr 05 06:30:56 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.56.2: + * Conditionally set log level of s3 bucket encryption warning + (#2878) + * Add flag for disabling dependent modules identification in + json-render (#2918) + +------------------------------------------------------------------- +Fri Apr 05 06:22:09 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.56.1: + * terragrunt-info parsing improvement (#2901) + +------------------------------------------------------------------- +Fri Apr 05 06:18:20 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.56.0: + * Add step to test terragrunt with latest terraform version + (#3035) + * Downgrading latest officially supported version of Terraform to + 1.5.x (#2936) + +------------------------------------------------------------------- +Wed Apr 03 17:01:20 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.21: + * Remote state errors improvement (#3032) + +------------------------------------------------------------------- +Tue Mar 26 07:20:08 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.20: + * fix: regexp (#3027) + * terragrunt issue 3017: expand docs for find_in_parent_folder() + (#3018) + +------------------------------------------------------------------- +Sat Mar 23 09:38:07 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.19: + * MacOS binary signer update (#3023) + * Updated module ci version (#3021) + * Updated sign binaries parameters for MacOS (#3020) + * Updated gon version to v0.2.5 (#3019) + * Scaffold command, fix unable to handle https URL (#3005) + * Fix grammar in feature text (#3010) + +------------------------------------------------------------------- +Tue Mar 19 06:54:18 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.18: + * build(deps-dev): bump nokogiri and mini_portile2 in /docs + (#3009) + * build(deps): bump google.golang.org/protobuf from 1.32.0 to + 1.33.0 (#3000) + * build(deps-dev): bump nokogiri from 1.10.4 to 1.10.10 in /docs + (#2929) + * build(deps): bump github.com/go-jose/go-jose/v3 from 3.0.0 to + 3.0.3 (#2996) + * build(deps): bump github.com/cloudflare/circl from 1.3.3 to + 1.3.7 (#2995) + +------------------------------------------------------------------- +Tue Mar 19 06:48:38 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.17: + * Add support for opentofu registry (#2961) + +------------------------------------------------------------------- +Sun Mar 17 09:58:18 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.16: + * Terragrunt performance improvements (#2983) + +------------------------------------------------------------------- +Sun Mar 17 09:52:57 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.15: + * Catalog TUI Improvements (#2993) + +------------------------------------------------------------------- +Sun Mar 17 09:49:28 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.14: + * Upgrade sops to v3.8.1 (#2991) + * Include "modules" path in the module url used in docs for + scaffold command (#2985) + +------------------------------------------------------------------- +Sun Mar 17 09:47:25 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.13: + * MacOS catalog terminal reset (#2984) + +------------------------------------------------------------------- +Sun Mar 17 09:41:07 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.12: + * Scaffold execution in Windows (#2982) + +------------------------------------------------------------------- +Sun Mar 17 09:37:54 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.11: + * Catalog screen freeze on MacOS (#2978) + +------------------------------------------------------------------- +Sun Mar 17 09:30:24 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.10: + * Catalog terminal freeze (#2962) + +------------------------------------------------------------------- +Sat Feb 24 09:09:56 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.9: + * Fix data race accessing shared slice from goroutines in + dependency computation. (#2942) + * Recommending pre-release as a way to mitigate the risk of + failed releases (#2964) + * Test for tracking that no errors are printed in HCL files + parsing (#2947) + +------------------------------------------------------------------- +Sat Feb 24 09:00:58 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.8: + * Fixing typo in the log message when using catalog (#2960) + +------------------------------------------------------------------- +Sat Feb 24 08:57:41 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.7: + * Update go version to 1.21.7 to fix CVEs (#2951) +- BuildRequire go1.21.7 or higher + +------------------------------------------------------------------- +Sat Feb 24 08:54:54 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.6: + * Fix nested dependency parsing (#2957) + +------------------------------------------------------------------- +Sat Feb 24 08:52:59 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.5: + * Add support for OpenTelemetry (#2921) + +------------------------------------------------------------------- +Tue Feb 20 20:50:49 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.4: + * Reference to dependency inputs (#2945) + +------------------------------------------------------------------- +Tue Feb 20 20:48:53 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.3: + * Improved identification of remote state changes (#2939) + +------------------------------------------------------------------- +Wed Feb 14 20:08:14 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.2: + * Improved handling of disabled modules (#2938) + +------------------------------------------------------------------- +Tue Feb 06 07:28:52 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.1: + * build(deps): bump github.com/opencontainers/runc from 1.1.9 to + 1.1.12 (#2924) + +------------------------------------------------------------------- +Fri Feb 02 15:11:30 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.55.0: + * Add graph command to terragrunt (#2871) + +------------------------------------------------------------------- +Fri Jan 26 19:40:59 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.22: + * Updated AWS SDK to 1.50.0 (#2906) + +------------------------------------------------------------------- +Tue Jan 23 17:48:18 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.21: + * Enhanced Missing Executable Error Messages for Terraform & Tofu + (#2905) + +------------------------------------------------------------------- +Sat Jan 20 17:33:59 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.20: + * Add support for JSON output format (#2863) + +------------------------------------------------------------------- +Thu Jan 18 14:06:19 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.19: + * Improved parsing of empty tfvars files (#2896) + +------------------------------------------------------------------- +Wed Jan 17 07:23:32 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.18: + * Fix cloning repos for the catalog command. (#2888) + +------------------------------------------------------------------- +Mon Jan 15 19:10:30 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.17: + * Fixed identification of terragrunt cache dir (#2874) + * Updated CICD to use release version of OpenTofu 1.6.0 (#2887) + +------------------------------------------------------------------- +Mon Jan 15 17:13:32 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.16: + * Fix reading `catalog` configuration (#2884) + +------------------------------------------------------------------- +Mon Jan 15 17:08:31 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.15: + * Manifest file removal in Windows (#2875) + +------------------------------------------------------------------- +Mon Jan 15 17:00:09 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.14: + * Add handling for missing policy bucket (#2881) + +------------------------------------------------------------------- +Mon Jan 15 16:57:03 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.13: + * AWS SDK version upgrade (#2883) + +------------------------------------------------------------------- +Thu Jan 04 18:17:18 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.12: + * Fix built-in `find_in_parent_folders` func (#2869) + * Usage of tofu 1.6.0-rc1 in tests (#2790) + +------------------------------------------------------------------- +Thu Jan 04 18:08:37 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.11: + * build(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 + (#2858) + +------------------------------------------------------------------- +Thu Jan 04 18:06:12 UTC 2024 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.10: + * fix: findInParentFolders func (#2866) + +------------------------------------------------------------------- +Thu Dec 21 17:12:08 UTC 2023 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.9: + * Fix catalog configuration file search. (#2862) + +------------------------------------------------------------------- +Wed Dec 20 12:59:35 UTC 2023 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.8: + * Speed up repo cloning for the `catalog` command (#2857) + +------------------------------------------------------------------- +Tue Dec 19 13:30:02 UTC 2023 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.7: + * feat: update the log level from debug to info (#2820) + +------------------------------------------------------------------- +Tue Dec 19 13:22:23 UTC 2023 - opensuse_buildservice@ojkastl.de + +- Update to version 0.54.6: + * Fixed passing assume_role generation (#2853) + +------------------------------------------------------------------- +Sat Dec 16 18:59:53 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.54.5: + * Read the list of repositories for the `catalog` command from + * the terragrunt configuration file (#2852) + +------------------------------------------------------------------- +Fri Dec 15 06:27:03 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.54.4: + * Non interactive state initialization (#2840) + +------------------------------------------------------------------- +Thu Dec 14 10:57:53 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.54.3: + * Catalog handling https urls (#2850) + +------------------------------------------------------------------- +Wed Dec 13 15:46:23 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.54.2: + * Parse frontmatter data in the `catalog` command (#2843) + +------------------------------------------------------------------- +Mon Dec 11 17:22:27 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.54.1: + * Fixed passing of module URL from catalog to scaffold (#2842) + * scaffold blank spaces fix (#2839) + * Scaffold and catalog documentation fixes (#2838) + +------------------------------------------------------------------- +Sat Dec 09 19:50:39 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.54.0: + * Initial catalog implementation (#2815) + * Fixed scaffold docs (#2829) + * Terragrunt scaffold (#2821) + * Update regex for version check (#2817) + +------------------------------------------------------------------- +Tue Nov 28 09:37:08 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.53.8: + * Add handling of backend configs (#2810) + +------------------------------------------------------------------- +Mon Nov 27 19:24:29 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.53.7: + * Updated jw v4 dependency version (#2805) + +------------------------------------------------------------------- +Thu Nov 23 06:42:42 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.53.6: + * feat: Support assume_role in s3 backend config. Starting with + TF1.6 (#2800) + * Update Arch Linux package URL in install.md (#2802) + +------------------------------------------------------------------- +Tue Nov 21 06:14:14 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.53.5: + * Reverted function name, added test to track usage of function + (#2801) + * feat: disallow undefined flags (#2799) + +------------------------------------------------------------------- +Fri Nov 17 05:57:40 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.53.4: + * Add a new built-in function `get_working_dir()` (#2791) + * Fix TestErrorExplaining (#2793) + * Add shell completion (#2788) + +------------------------------------------------------------------- +Thu Nov 16 12:09:49 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.53.3: + * Improved explanation of missing aws creds (#2787) + * Update usage of private repo docs (#2784) + * Add missing terraform commands (#2780) + +------------------------------------------------------------------- +Mon Nov 06 05:45:53 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.53.2: + * GCP dependencies update (#2775) + +------------------------------------------------------------------- +Thu Nov 02 05:59:43 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.53.1: + * Update aws-sdk to support SSO (#2774) + * Add Default Retryable Error List to Docs (#2771) + * test: use `T.Setenv` to set env vars in tests (#2205) + +------------------------------------------------------------------- +Mon Oct 30 07:28:28 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.53.0: + * Terraform 1.6 (#2754) + +------------------------------------------------------------------- +Fri Oct 27 09:19:06 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.52.7: + * Bump google.golang.org/grpc from 1.55.0 to 1.56.3 (#2767) + +------------------------------------------------------------------- +Fri Oct 27 09:16:51 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.52.6: + * fix!: output-module-groups to work like run-all (#2769) + * Update tofu version to 1.6.0-alpha3 (#2766) + +------------------------------------------------------------------- +Wed Oct 25 04:37:23 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.52.5: + * feat: add read_tfvars_file function (#2757) + +------------------------------------------------------------------- +Sat Oct 21 18:16:45 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.52.4: + * Add linting of source code (#2743) + +------------------------------------------------------------------- +Sat Oct 14 06:31:31 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.52.3: + * Bump golang.org/x/net from 0.15.0 to 0.17.0 (#2755) + +------------------------------------------------------------------- +Fri Oct 13 05:01:42 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.52.2: + * Add option to skip S3 credentials validation (#2753) + +------------------------------------------------------------------- +Sun Oct 08 16:00:18 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.52.1: + * Dependent modules scanning improvements (#2749) + * Add opentofu notice (#2738) + +------------------------------------------------------------------- +Fri Oct 06 13:17:52 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.52.0: + * Add OpenTofu support (#2745) + +------------------------------------------------------------------- +Thu Oct 05 04:49:53 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.9: + * Update render-json to include list of dependent modules (#2740) + * refactor: fix usage of deprecated calls to io/ioutil package + (#2742) + +------------------------------------------------------------------- +Wed Oct 04 09:37:21 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.8: + * Add check for aws session before checking S3 bucket (#2739) + * docs: removes two errors in the markdown (#2741) + +------------------------------------------------------------------- +Fri Sep 29 19:18:17 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.7: + * State file handling improvements (#2735) + +------------------------------------------------------------------- +Thu Sep 28 13:46:06 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.6: + * Updated dependencies to fix security issues (#2733) + +------------------------------------------------------------------- +Wed Sep 27 04:35:36 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.5: + * #2280 Add validation of generate blocks from includes (#2281) + +------------------------------------------------------------------- +Thu Sep 21 10:00:38 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.4: + * fix: make `auto-init` respect `-no-color` flag (#2722) + * Add built-in function `get_default_retryable_errors` (#2725) + +------------------------------------------------------------------- +Wed Sep 20 05:14:16 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.3: + * Add debug log message to print chdir option (#2724) + +------------------------------------------------------------------- +Wed Sep 20 05:08:00 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.2: + * S3 bucket errors handling (#2721) + +------------------------------------------------------------------- +Tue Sep 19 04:45:48 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.1: + * Removes trailing slash appended to the end of + `get_path_to_repo_root()` (#2719) + +------------------------------------------------------------------- +Mon Sep 18 05:35:23 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.51.0: + * Updated to go 1.21 (#2715) + +------------------------------------------------------------------- +Fri Sep 15 09:26:32 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.17: + * Add enabled property for dependency (#2712) + +------------------------------------------------------------------- +Wed Sep 13 14:34:38 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.16: + * Improved checking of windows console errors (#2711) + +------------------------------------------------------------------- +Wed Sep 13 04:57:13 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.15: + * Fixed searching for configs with non-default names #2704. + (#2704) + * Updating link to before-and-after-hooks (#2708) + +------------------------------------------------------------------- +Thu Sep 07 05:38:10 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.14: + * Terragrunt version in AWS API Calls (#2701) + +------------------------------------------------------------------- +Wed Sep 06 07:42:13 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.13: + * Module path checking improvements (#2700) + +------------------------------------------------------------------- +Wed Sep 06 07:35:52 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.12: + * Updated setting of fetch depednency flag (#2699) + +------------------------------------------------------------------- +Wed Sep 06 07:30:42 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.11: + * feat: disable terraform command validation (#2697) + * Prevent `init` command from parallel running if plugin cache is + used (#2698) + +------------------------------------------------------------------- +Wed Sep 06 07:15:54 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.10: + * GCS remote state configuration prefix (#2695) + * Move shared libraries to go-commons repository (#2688) + +------------------------------------------------------------------- +Wed Sep 06 07:11:49 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.9: + * Improved handling of errors from AWS API (#2684) + +------------------------------------------------------------------- +Wed Sep 06 06:30:36 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.8: + * TFLint configuration loading from hook parameters (#2683) + +------------------------------------------------------------------- +Wed Sep 06 06:29:10 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.7: + * fix: terraform console command in non-interactive mode (#2686) + +------------------------------------------------------------------- +Wed Sep 06 06:21:12 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.6: + * Google Cloud impersonate fixes (#2679) + +------------------------------------------------------------------- +Wed Sep 06 06:10:50 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.5: + * Add terraform command validation (#2676) + +------------------------------------------------------------------- +Wed Sep 06 06:09:13 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.4: + * Null vars file cleanup (#2672) + +------------------------------------------------------------------- +Wed Sep 06 06:02:19 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.3: + * Logrus dependency update (#2665) + +------------------------------------------------------------------- +Wed Sep 06 05:45:35 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.2: + * fix: "null" values in json for aws policy (#2667) + +------------------------------------------------------------------- +Wed Sep 06 05:41:09 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.1: + * Prevent parsing of excluded modules (#2664) + +------------------------------------------------------------------- +Wed Sep 06 05:37:29 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.50.0: + * Pass null values in Terraform inputs (#2663) + +------------------------------------------------------------------- +Wed Sep 06 05:34:33 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.49.1: + * Update CircleCI config to sign MacOS binaries (#2661) + +------------------------------------------------------------------- +Wed Sep 06 05:32:13 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.49.0: + * TFLint variables and arguments (#2645) + +------------------------------------------------------------------- +Wed Sep 06 05:23:37 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.48.7: + * Refactoring cli related code (#2608) + +------------------------------------------------------------------- +Thu Aug 03 17:44:19 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.48.6: + * Simplified run-all confirmation dialog (#2653) + +------------------------------------------------------------------- +Tue Aug 01 10:03:34 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.48.5: + * Add a "output-module-groups" command (#2130) + * Updated CLI flag wording (#2647) + * Bump tzinfo from 1.2.7 to 1.2.10 in /docs (#2207) + * Bump nokogiri from 1.13.6 to 1.14.3 in /docs (#2526) + +------------------------------------------------------------------- +Thu Jul 20 04:50:04 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.48.4: + * Add CLI flags to set handling state buckets (#2644) + +------------------------------------------------------------------- +Tue Jul 18 09:13:18 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.48.3: + * Added handling of no outputs in render-json execution (#2635) + +------------------------------------------------------------------- +Tue Jul 18 04:49:58 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.48.2: + * fix: include missing param in parsing cache key construction + (#2518) + * [skip ci] Removing former Grunts (#2640) + * Update scripts.html (#2638) + +------------------------------------------------------------------- +Thu Jul 06 07:19:36 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.48.1: + * Updated source version identification (#2630) + * Update documentation to reference Terragrunt Github action + (#2628) + * [skip ci] git-xargs programmatic commit (#2623) + +------------------------------------------------------------------- +Tue Jun 27 04:50:41 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.48.0: + * Add support for Terraform 1.5 (#2616) + * Circleci resource_class update (#2609) + +------------------------------------------------------------------- +Fri Jun 16 05:13:44 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.47.0: + * Go upgrade to 1.20 (#2605) +- BuildRequire go1.20 + +------------------------------------------------------------------- +Mon Jun 12 20:00:20 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.46.3: + * #2595 Fix for fetching reference value with slashes (#2597) + +------------------------------------------------------------------- +Mon Jun 12 19:57:44 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.46.2: + * feat: support git tag in `--terragrunt-source-map` option + (#2586) + +------------------------------------------------------------------- +Fri Jun 02 04:50:38 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.46.1: + * Fixed reading of outputs during destroy (#2589) + +------------------------------------------------------------------- +Fri Jun 02 04:49:13 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.46.0: + * fix: redirecting stdout to stderr in hook commands (#2587) + +------------------------------------------------------------------- +Wed May 31 13:07:18 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.18: + * feat: implement hclfmt diff output (#2570) + +------------------------------------------------------------------- +Wed May 31 04:45:56 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.17: + * fix: checking dependent modules in `destroy` command (#2581) + +------------------------------------------------------------------- +Thu May 25 06:19:28 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.16: + * Add support for Disable field in generate blocks (#2497) + +------------------------------------------------------------------- +Mon May 22 05:45:49 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.15: + * Simplified source code locking/unlocking (#2576) + +------------------------------------------------------------------- +Fri May 19 04:57:29 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.14: + * #2566 Update error message to include module directory (#2574) + +------------------------------------------------------------------- +Wed May 17 17:42:37 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.13: + * feat: add `timecmp` config function (#2571) + +------------------------------------------------------------------- +Wed May 17 17:38:30 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.12: + * Handle provider lock file when fetching dependency outputs + (#2568) + * Update aws-auth.md (#2563) + * Add missing IAM Permissions s3:PutBucketOwnershipControls to + docs this is required now with TG versions starting from + v0.45.4 (#2562) + +------------------------------------------------------------------- +Thu May 11 04:51:07 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.11: + * fix: disable sending a second interrupt signal to `terraform` + (#2559) + +------------------------------------------------------------------- +Tue May 09 05:41:30 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.10: + * fix: avoid double-rendering `terraform init` output (#2558) + +------------------------------------------------------------------- +Fri May 05 10:42:22 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.9: + * Fix parsing output when AWS CSM is enabled (#2554) + * Moved issue template files to ISSUE_TEMPLATE directory (#2555) + * Add issues templates (#2553) + +------------------------------------------------------------------- +Tue May 02 05:32:12 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.8: + * Lazily evaluate the IAM Role (#2507) + +------------------------------------------------------------------- +Tue May 02 05:30:38 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.7: + * Mozilla sops upgrade to v3.7.3 (#2549) + +------------------------------------------------------------------- +Sun Apr 30 07:02:03 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.6: + * JSON output prefix update (#2548) + +------------------------------------------------------------------- +Fri Apr 28 04:26:39 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.5: + * Add explanation for terraform errors (#2547) + +------------------------------------------------------------------- +Thu Apr 20 14:27:09 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.4: + * Update S3 bucket creation to pass ObjectOwnership (#2540) + * ~ aws-auth docs - iam remove object level actions from the + bucket resource (#2533) + +------------------------------------------------------------------- +Tue Apr 18 04:55:31 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.3: + * #2512 Improve reporting errors on modules (#2527) + +------------------------------------------------------------------- +Thu Apr 06 03:25:11 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.2: + * #2515 Add option to disable module output (#2516) + +------------------------------------------------------------------- +Tue Apr 04 06:16:30 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.1: + * Add --terragrunt-include-module-prefix option (#2493) + * [skip ci] Refactor contexts (#2503) + * Update v0.45.0 link title (#2491) + +------------------------------------------------------------------- +Fri Mar 17 19:32:39 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.45.0: + * #2488 Terraform dependencies upgrade (#2489) + * Add automatic lock release (#2487) + * Add comment for sourceChangeLocks variable (#2476) + +------------------------------------------------------------------- +Wed Mar 08 14:37:34 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.44.5: + * #2471 Include in download directory tflint config (#2474) + +------------------------------------------------------------------- +Fri Mar 03 05:39:34 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.44.4: + * chore: Add access_token support for the GCS remote state + backend config (#2463) + +------------------------------------------------------------------- +Fri Mar 03 05:37:20 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.44.3: + * Bump golang.org/x/net from 0.5.0 to 0.7.0 (#2455) + +------------------------------------------------------------------- +Thu Mar 02 07:17:38 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.44.2: + * Bump github.com/hashicorp/go-getter from 1.6.2 to 1.7.0 (#2454) + +------------------------------------------------------------------- +Tue Feb 28 14:35:28 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.44.1: + * #2467 Parallel TFLint execution errors (#2469) + +------------------------------------------------------------------- +Thu Feb 23 10:37:55 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.44.0: + * isRetryable also checks the stdout (#2464) + +------------------------------------------------------------------- +Wed Feb 22 17:26:34 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.43.3: + * #2450 Improved loading of TFLint configuration (#2456) + * #2417 Add handling of intermittent errors in fixture-stack tests (#2439) + +------------------------------------------------------------------- +Sat Feb 04 12:23:12 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.43.2: + * Improved handling of default value for sse_algorithm (#2438) + +------------------------------------------------------------------- +Thu Feb 02 06:50:01 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.43.1: + * fix AES256 encryption validation (#2337) + * Fix typos (#2406) + * [skip ci] Added FUNDING.yml (#2429) + * Flaky TestInputsToTflintVar fix (#2427) + +------------------------------------------------------------------- +Fri Jan 20 09:54:54 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.43.0: + * feat: update tflint to v0.44.1 (#2422) + * Remove GITHUB_OAUTH_TOKEN from tflint + update docs (#2424) + +------------------------------------------------------------------- +Fri Jan 13 10:11:25 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.42.8: + * Updated golang.org/x/crypto dependency (#2412) + +------------------------------------------------------------------- +Fri Jan 06 11:41:03 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.42.7: + * #2377 MockOutputs validation before merge (#2379) + +------------------------------------------------------------------- +Thu Jan 05 14:02:07 UTC 2023 - kastl@b1-systems.de + +- Update to version 0.42.6: + * Update error message (#2404) + +------------------------------------------------------------------- +Fri Dec 16 12:38:27 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.42.5: + * Fix debug log for GITHUB_TOKEN for tflint (#2395) + +------------------------------------------------------------------- +Fri Dec 16 12:35:49 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.42.4: + * Expose a token for tflint (#2387) + * Fix typo (#2383) + * Add tflint as built-in hook (#2362) + +------------------------------------------------------------------- +Fri Dec 02 12:04:24 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.42.3: + * #2347 - add --terragrunt-global-cache support to run_cmd (#2348) + +------------------------------------------------------------------- +Wed Nov 30 13:38:48 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.42.2: + * Improve encryption setting on access log bucket (#2375) + +------------------------------------------------------------------- +Wed Nov 30 13:20:21 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.42.1: + * Feat(#2292) add accesslogging bucket tags property to remote state s3 config block (#2355) + * Update documentation to reference actions for S3 bucket configuration (#2366) + +------------------------------------------------------------------- +Tue Nov 29 14:07:41 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.42.0: + * #1717 Enable security layers for access logging buckets (#2367) + +------------------------------------------------------------------- +Thu Nov 24 17:53:09 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.41.0: + * Go 1.18 upgrade (#2365) + +------------------------------------------------------------------- +Tue Nov 15 09:53:01 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.40.2: + * Bump `golang.org/x/text` and `golang.org/x/net` (#2341) + * #2331 - fix(docs): Fixes azs in the quick start example (#2340) + +------------------------------------------------------------------- +Tue Nov 15 09:49:04 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.40.1: + * fix: protect sops cache from multiple parallel writes (#2352) + +------------------------------------------------------------------- +Tue Nov 15 09:44:02 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.40.0: + * Add support for Terraform 1.3 (#2308) + * Fix installation of goimports (#2339) + * fix: modified single quotes to back quotes. (#2310) + +------------------------------------------------------------------- +Tue Oct 18 05:10:42 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.39.2: + * Navbar we are hiring fix (#2321) + * navbar - update we are hiring (#2313) + * Fix a mistake in markdown (#2303) + * fix typo. (#2307) + +------------------------------------------------------------------- +Thu Oct 06 05:07:43 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.39.1: + * #2222 Terragrunt sub-commands help output (#2297) + * [skip ci] Update CODEOWNERS (#2296) + +------------------------------------------------------------------- +Fri Sep 30 05:12:17 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.39.0: + * #2259 Improve handling of failures in outputs reading (#2288) + * Docs: update to mention run-all commands not xxx-all (#2266) + +------------------------------------------------------------------- +Thu Sep 15 07:52:16 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.12: + * Adds retryable error regex to match rate limit message from CodeCommit (#2276) + +------------------------------------------------------------------- +Thu Sep 15 07:49:43 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.11: + * Uses partition from session when constructing the KMS Key ARN (#2257) + +------------------------------------------------------------------- +Tue Sep 13 12:46:18 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.10: + * Share `Env` attributes with `cfgOptions`. (#2274) + +------------------------------------------------------------------- +Wed Sep 07 11:06:00 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.9: + * Improve partial parsing HCL strings by adding cache (#2204) + +------------------------------------------------------------------- +Wed Sep 07 11:04:41 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.8: + * #2245: Add option to skip state bucket public access blocking (#2246) + * fix(docs): use correct link (#2250) + * Update render json tests to use different directories and avoid parallel execution errors (#2248) + * fix(docs): correct spelling (#2238) + +------------------------------------------------------------------- +Wed Sep 07 10:57:44 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.7: + * Fix bug where terragrunt run-all render-json overwrites all files (#2230) + * Remove commercial-support page and references (#2197) + * Fix typo (#2213) + +------------------------------------------------------------------- +Fri Jul 22 17:39:05 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.6: + * Add metadata to render-json output (#2199) + * Remove unused appveyor (#2194) + +------------------------------------------------------------------- +Sat Jul 16 19:04:18 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.5: + * Improve Terragrunt error logs (#2175) + * Fix bug in render-json with dependency and locals (#2191) + * Addresses dependabot alerts (#2192) + * Bump nokogiri from 1.12.5 to 1.13.6 in /docs (#2115) + * Fix quick-start typo (#2183) + * Fix typo (#2186) + * Set compatibilty version to go 1.17 (#2180) + * Update codeowners (#2162) + +------------------------------------------------------------------- +Tue Jul 05 14:19:25 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.4: + * Use faster hashing approach when handling local module sources (#2168) + +------------------------------------------------------------------- +Fri Jul 01 10:52:34 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.3: + * #2113 Improved parsing of AWS policy response (#2118) + * #2109 Updated reading of AWS response using BoolValue function (#2111) + * Integration tests stability (#2160) + +------------------------------------------------------------------- +Tue Jun 28 14:22:42 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.2: + * #2045 Fixed pattern matching for error hooks (#2101) + +------------------------------------------------------------------- +Wed Jun 22 20:45:14 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.1: + * feat: fetch dependency output from state (#2123) + * Add ability to customize SSE settings for the remote state bucket (#2157) + * Add ability to disable auto-approve (#2156) + +------------------------------------------------------------------- +Wed Jun 22 07:54:16 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.38.0: + * Test against terraform 1.2 (#2147) + +------------------------------------------------------------------- +Wed Jun 22 07:50:00 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.37.4: + * Make include_in_copy work for patterns containing parent folders (#2112) + +------------------------------------------------------------------- +Wed Jun 22 07:44:55 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.37.3: + * feat: improve local source code download behaviour (#2006) + +------------------------------------------------------------------- +Thu Jun 09 17:10:17 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.37.2: + * Bump github.com/hashicorp/go-getter from 1.5.11 to 1.6.1 (#2131) + * Check in Pull Request template (#2124) + +------------------------------------------------------------------- +Sat May 14 08:25:49 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.37.1: + * Update remote state docs to recommend generate first (#2106) + +------------------------------------------------------------------- +Sat May 14 08:20:02 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.37.0: + * fix config remote state s3 and update if needs (#2063) + +------------------------------------------------------------------- +Fri May 13 19:58:52 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.12: + * Allow v0.36 to define disable_bucket_update to make it easier to transition to v0.37 (#2105) + +------------------------------------------------------------------- +Fri May 13 19:40:56 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.11: + * Bump github.com/hashicorp/go-getter from 1.5.7 to 1.5.11 (#2095) + +------------------------------------------------------------------- +Thu May 05 06:37:34 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.10: + * fix bug where strict validation wasn't always respected (#2056) + * fix(docs): missing cli options on the summary (#2088) + +------------------------------------------------------------------- +Sat Apr 30 15:45:50 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.9: + * git_functions: propegate the opts.Env for git commands (#2086) + * Fix get_path_from_repo_root typo (#2035) + +------------------------------------------------------------------- +Thu Apr 28 06:28:01 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.8: + * Bump sops from v3.7.0 to v3.7.2 (#2083) + * Failing tests fixes (#2073) + * Clarify behavior of terragrunt-tfpath override with respect to dependencies (#2077) + +------------------------------------------------------------------- +Sat Apr 16 09:05:37 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.7: + * Additional known transient error handling (#2066) + * Update inputs.md (#2053) + +------------------------------------------------------------------- +Fri Mar 18 10:23:58 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.6: + * fix: use correct slashes for repo root functions (#2042) + +------------------------------------------------------------------- +Wed Mar 16 18:02:37 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.5: + * Enable public access blocking for access logs S3 bucket as well, if configured (#2040) + +------------------------------------------------------------------- +Wed Mar 16 18:01:24 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.4: + * #1971 Added caching of IAM roles parsed from HCL files (#2010) + * Removed empty list item (#2030) + +------------------------------------------------------------------- +Thu Mar 03 09:41:18 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.3: + * Add get_repo_root() built-in (#2027) + +------------------------------------------------------------------- +Thu Mar 03 09:39:19 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.2: + * Add merge strategies for mock outputs with state (#1936) + * Update cli-options.md to mention silent auto-approve on run-all. (#1992) + +------------------------------------------------------------------- +Tue Feb 01 07:05:48 UTC 2022 - kastl@b1-systems.de + +- Update to version 0.36.1: + * Handle relative paths correctly when fetching tfr (#2005) + * CI Build fix (#2001) + * Add 1.1.x to version compatibility table (#1991) + +------------------------------------------------------------------- +Wed Jan 26 07:34:16 UTC 2022 - Johannes Kastl + +- new package terragrunt at version 0.36.0 diff --git a/terragrunt.obsinfo b/terragrunt.obsinfo new file mode 100644 index 0000000..ec1a0d9 --- /dev/null +++ b/terragrunt.obsinfo @@ -0,0 +1,4 @@ +name: terragrunt +version: 0.68.7 +mtime: 1730473452 +commit: 326c3251e74f7ea5156ace251fdcc1d49f1084c3 diff --git a/terragrunt.spec b/terragrunt.spec new file mode 100644 index 0000000..48c48be --- /dev/null +++ b/terragrunt.spec @@ -0,0 +1,56 @@ +# +# spec file for package terragrunt +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%define __arch_install_post export NO_BRP_STRIP_DEBUG=true + +Name: terragrunt +Version: 0.68.7 +Release: 0 +Summary: Thin wrapper for Terraform for working with multiple Terraform modules +License: MIT +URL: https://github.com/gruntwork-io/terragrunt +Source: terragrunt-%{version}.tar.gz +Source1: vendor.tar.gz +Source2: Makefile +Source3: PACKAGING_README.md +BuildRequires: go1.23 + +%description +Terragrunt is a thin wrapper for Terraform that provides extra tools for +keeping your Terraform configurations DRY, working with multiple Terraform +modules, and managing remote state. + +%prep +%autosetup -p1 -a 1 + +%build +go build \ + -mod=vendor \ + -buildmode=pie \ + -ldflags="-X github.com/gruntwork-io/go-commons/version.Version=v%{version}" + +%install +# Install the binary. +install -D -m 0755 %{name} "%{buildroot}/%{_bindir}/%{name}" + +%files +%doc README.md +%license LICENSE.txt +%{_bindir}/%{name} + +%changelog diff --git a/vendor.tar.gz b/vendor.tar.gz new file mode 100644 index 0000000..8724cc6 --- /dev/null +++ b/vendor.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:767e7f5ea08e36b60787934a14ea1c4b6a6c2943de1b33e9962a1f978d50953c +size 20219197