Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency gruntwork-io/terragrunt to v0.73.5 #81

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

mend-for-github-com[bot]
Copy link
Contributor

@mend-for-github-com mend-for-github-com bot commented Nov 21, 2024

This PR contains the following updates:

Package Update Change
gruntwork-io/terragrunt minor 0.47.0 -> 0.73.5

Release Notes

gruntwork-io/terragrunt (gruntwork-io/terragrunt)

v0.73.5

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.73.4...v0.73.5

v0.73.4

Compare Source

What's Changed

  • build(deps): bump github.com/charmbracelet/bubbletea to v1.3.3
  • build(deps): bump golang.org/x/mod to v0.23.0

Full Changelog: gruntwork-io/terragrunt@v0.73.3...v0.73.4

v0.73.3

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.73.2...v0.73.3

v0.73.2

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.73.1...v0.73.2

v0.73.1

Compare Source

✨ New Features

Stack clean command

Added a new clean sub-command to the terragrunt stack command, enabling users to remove generated stack files.

stacks-clean

To try it out, make sure you enable the stacks experiment.

Read the docs to learn more.

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.73.0...v0.73.1

v0.73.0

Compare Source

🛠️ Breaking Changes

Removal of terragrunt- prefix in flags

All Terragrunt CLI flags no longer start with the terragrunt- prefix. This will not immediately break workflows, but will start to emit warnings for users.

We will announce removal of support for flags without the terragrunt- prefix well in advance, and it will be done in a future minor release before v1.0.

You can opt in to making this a breaking change today via usage of the terragrunt-prefix-flags strict control.

Rename of TERRAGRUNT_ prefixed environment variables

All Terragrunt environment variables are no longer prefixed with TERRAGRUNT_, but are now instead prefixed with TG_. This will not immediately break workflows, but will start to emit warnings for users.

We do not currently have plans to remove support for environment variables with the TERRAGRUNT_ prefix, and are aiming to support them after the release of v1.0, as we know this can be a more difficult configuration to change.

You can opt in to making this a breaking change today via usage of the terragrunt-prefix-env-vars strict control.

Removal of support for the Terragrunt default command

Prior to this release, Terragrunt would forward all commands that were not defined in the Terragrunt CLI directly to OpenTofu/Terraform. With the introduction of the new run command, this behavior is no longer necessary, nor desirable. In addition to supporting the new run command, Terragrunt now also supports explicit OpenTofu shortcuts. You can learn more about both below.

We will announce removal of support for the default command of Terragrunt well in advance, and it will be done in a future minor release before v1.0.

You can opt in to making this a breaking change today via usage of the default-command strict control.

✨ New Features

All of the features released in this release require usage of the cli-redesign experiment.

New run command

This command replaces what used to be the responsibility of the default command in Terragrunt. Going forward, when users want to explicitly have Terragrunt run an OpenTofu/Terraform command on their behalf, they'll use the run command.

In a future release, this command will also gain the two following flags to replace the functionality of the run-all and graph commands:

  • --all: Replaces the run-all command.
  • --graph: Replaces the graph command.

You can learn more about the run command here

OpenTofu shortcuts

In addition to an explicit run command for running any OpenTofu/Terraform command, there have been shortcuts introduced to the Terragrunt CLI to make sure it's just as easy to run the commands you're used to, like terragrunt plan and terragrunt apply.

You can learn more about OpenTofu shortcuts here

New exec command

This command provides tooling to explicitly execute an arbitrary command using Terragrunt (even if it's not related to OpenTofu/Terraform). It users additional control over exactly what Terragrunt does when it's executing a command, and gives them additional flexibility they wouldn't have otherwise.

You can learn more about the exec command here

New info strict command

The new info strict command gives users a quick way to determine which strict controls are available in the Terragrunt CLI using the terminal.

We'll be making updates in the near future to update the UI/UX of the command, but we've released an early version for preview via the cli-redesign experiment flag.

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.72.9...v0.73.0

Demonstration

demo

v0.72.9

Compare Source

✨ New Features

Stack output command

The terragrunt stack command now includes a new output sub-command, enabling users to retrieve and interact with outputs from multiple units within a Terragrunt stack.

To try it out, make sure you enable the stacks experiment.

Read the docs to learn more.

Example usage:

stack-output

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.72.8...v0.72.9

v0.72.8

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.72.6...v0.72.8

v0.72.6

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.72.5...v0.72.6

v0.72.5

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.72.4...v0.72.5

v0.72.4

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.72.3...v0.72.4

v0.72.3

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.72.2...v0.72.3

v0.72.2

Compare Source

✨ New Features

Stack run command

The terragrunt stack command now supports a new run sub-command.

The run command automatically generates a Terragrunt stack using the terragrunt.stack.hcl file found in the current directory, then runs all the units within it in a fashion very similar to the run-all command.

To try it out, make sure you enable the stacks experiment.

Read the docs to learn more.

Example usage:

tg-stack-run-example

Native OpenTofu State Encryption

Terragrunt now has native support for OpenTofu state encryption configurations.

In addition to the existing backend and config attributes on the remote_state configuration block, Terragrunt now supports an encryption attribute that configures OpenTofu backend state encryption automatically, with type validation for a native experience using state encryption.

The currently supported key providers are:

  • pbkdf2
  • aws_kms
  • gcp_kms

To integrate this new feature into your projects read the docs.

Special thanks for @​norman-zon for taking on the work of integrating this into Terragrunt and collaborating with us on resolution!

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.72.1...v0.72.2

v0.72.1

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.72.0...v0.72.1

v0.72.0

Compare Source

Description

OpenTofu 1.9 support: We are now testing Terragrunt against OpenTofu 1.9, and is confirmed to be working.

NOTE: Although this release is marked as backward incompatible, it is functionally compatible as nothing has been changed in Terragrunt internals. The minor version release is useful to mark the change in the OpenTofu version that is being tested.

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.71.5...v0.72.0

v0.71.5

Compare Source

🔧 Fixes

Fixed bug that prevented OpenTofu/Terraform stdout from being streamed in real time.

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.71.4...v0.71.5

v0.71.4

Compare Source

✨ New Features

The terraform configuration block now accepts an exclude_from_copy attribute that does the opposite of the include_in_copy attribute.

For more information, read the docs.

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.71.3...v0.71.4

v0.71.3

Compare Source

✨ New Features

The terragrunt stack generate command, now available behind the --experiment stacks flag generates a .terragrunt-stack directory by dynamically generating Terragrunt units from the configurations defined in a terragrunt.stack.hcl file.

To learn more, read the docs.

Example usage:

tg-stack-experiment-demo

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.71.2...v0.71.3

v0.71.2

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.71.1...v0.71.2

v0.71.1

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.71.0...v0.71.1

v0.71.0

Compare Source

🔧 Fixes

Terragrunt stdout and stderr streams have been adjusted to more closely align with what users expect when using a tool orchestrating OpenTofu/Terraform.

For more information, read the following docs.

🛠️ Breaking Changes

While a bugfix, if you were relying on the incorrect behavior Terragrunt used, redirecting OpenTofu/Terraform stdout to stderr, you will experience a breaking change in this release.

To avoid having this be a breaking release, you can either use Terragrunt stdout instead of stderr for inspecting OpenTofu/Terraform stdout, or you can use stream redirection to reproduce the buggy behavior.

terragrunt plan 1>&2

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.70.4...v0.71.0

v0.70.4

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.70.3...v0.70.4

v0.70.3

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.70.2...v0.70.3

v0.70.2

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.70.1...v0.70.2

v0.70.1

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.70.0...v0.70.1

v0.70.0

Compare Source

✨ New Features

  • Terragrunt now supports a native Experiment Mode to try out the latest features in Terragrunt before they're fully stable. Over time, we'll be moving some opt-in functionality to this system, and we'll be introducing new features behind it to give users granularity in their use of experimental functionality in Terragrunt.

    As part of this new system, we'll also be documenting our experiments in much more detail so that you know exactly what they do, and what is required for them to reach full stability.

  • The catalog and scaffold commands now support configurability in the root configuration include used for their scaffolding.

    This allows users to use a root Terragrunt configuration named anything they like, and scaffold new units conveniently, pulling those configurations in with a simple CLI flag.

🛠️ Breaking Changes

The recent work introduced in #​3562 to support symlinks has been downgraded to an experiment. We merged in this feature believing it had enough testing to be supported at launch, but quite a bit of unexpected regression occurred as a consequence.

If you are still using this functionality, use the --experiment symlinks flag to re-enable it in your environments. For more information, you can read the documentation on Controlling Experiment Mode.

⚠️ Deprecations

This release also deprecates one of the longest lasting patterns of Terragrunt usage, the root terragrunt.hcl file.

To reiterate the note in the migration guide, this is not going to be a breaking change for a very long time, but we want to start encouraging users to adopt new patterns.

The practice of using terragrunt.hcl as the root of Terragrunt configurations has been harmful to new Terragrunt users and experienced users alike, and we want to have Terragrunt start communicating better practices.

You will have ample warning before this functionality is no longer supported.

📖 Documentation Updates

The Features section of the docs has been revamped significantly to improve the ability to understand and use Terragrunt features at a glance. Much more will be done in the near future to improve the experience of using Terragrunt documentation, and your feedback is always actively solicited!

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.69.13...v0.70.0

v0.69.13

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.69.12...v0.69.13

v0.69.12

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.69.11...v0.69.12

v0.69.11

Compare Source

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.69.10...v0.69.11

v0.69.10

Compare Source

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.69.9...v0.69.10

v0.69.9

Compare Source

Updated CLI args, config attributes and blocks

  • engine

What's Changed

  • chore: enhanced engine extraction - switched to using the internal library for archive extraction, resulting in resolving CVEs
  • build(dep): bump github.com/creack/pty from 1.1.17 to 1.1.24
  • build(dep): bump github.com/charmbracelet/bubbles from 0.16.1 to 0.20.0

Full Changelog: gruntwork-io/terragrunt@v0.69.8...v0.69.9

v0.69.8

Compare Source

Updated CLI args, config attributes and blocks

  • errors

What's Changed

  • feat: Enhanced support for handling negative error patterns in the error block.
  • fix: Resolved broken links in the documentation.
  • chore: Updated documentation to clarify the priority of error evaluation within the error block.

Full Changelog: gruntwork-io/terragrunt@v0.69.7...v0.69.8

v0.69.7

Compare Source

New built-in function

What's Changed

Full Changelog: gruntwork-io/terragrunt@v0.69.6...v0.69.7

v0.69.6

Compare Source

Updated CLI args, config attributes and blocks

  • errors

New Feature: errors configuration block

This release introduces an improved configuration block for managing errors, enhancing the flexibility of retry and ignore mechanisms. These new features provide fine-grained control over error handling, ensuring a smoother and more robust execution flow.

Example
errors {

### Retry block for transient errors
    retry "retry_network" {
        retryable_errors = [".*Error: network timeout.*"]
        max_attempts = 3
        sleep_interval_sec = 5
    }

### Ignore block for non-critical errors
    ignore "ignore_warnings" {
        ignorable_errors = [
            ".*Warning: non-critical issue.*"
        ]
        message = "Ignoring non-critical warnings"
    }
}
Demo

Ignore error:

ignore-error

Retry error:

retry-on-error

What's Changed

  • Added errors block

Related links

Full Changelog: gruntwork-io/terragrunt@v0.69.5...v0.69.6

v0.69.5

Compare Source

Updated CLI args, config attributes and blocks

New Flags
  • --terragrunt-hclfmt-exclude-dir: Exclude directories from HCL formatting when using the hclfmt command. For more, see the docs.

What's Changed

New Contributors

Full Changelog: gruntwork-io/terragrunt@v0.69.3...v0.69.5

v0.69.3

Compare Source

What's Changed

  • Fixing an issue when error_hook processing only takes stderr into account and ignores stdout TF output.
  • Displaying stack trace only at log level trace, e.g. --terragrunt-log-level trace.

Full Changelog: gruntwork-io/terragrunt@v0.69.2...v0.69.3

v0.69.2

Compare Source

Updated CLI args, config attributes and blocks

Breaking Changes

  • OpenTofu/Terraform stdout and stderr is wrapped in JSON by default with --terragurnt-log-format json flag. In other words, the previous behavior with the --terragrunt-json-log --terragrunt-tf-logs-to-json flags is now equivalent to --terragrunt-log-format json and the previous behavior with the --terragrunt-json-log is now equivalent to --terragrunt-log-format json --terragrunt-forward-tf-stdout.
  • Renaming log keys in --terragurnt-log-format json and --terragurnt-log-format key-value formats:
    • tfpath -> tf-path
    • workingDir -> working-dir
    • executedCommandArgs -> tf-command-args

What's Changed


Configuration

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

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

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

disabled

@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 0563211 to 3ad3bf4 Compare November 23, 2024 00:04
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.0 Update dependency gruntwork-io/terragrunt to v0.69.1 Nov 23, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch 2 times, most recently from 7d59a31 to e39058d Compare November 28, 2024 05:19
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.1 Update dependency gruntwork-io/terragrunt to v0.69.2 Nov 28, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from e39058d to df5c1f0 Compare November 29, 2024 05:42
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.2 Update dependency gruntwork-io/terragrunt to v0.69.3 Nov 29, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch 2 times, most recently from 046cef4 to 41835c7 Compare December 4, 2024 04:48
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.3 Update dependency gruntwork-io/terragrunt to v0.69.6 Dec 4, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 41835c7 to e81eb73 Compare December 4, 2024 18:03
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.6 Update dependency gruntwork-io/terragrunt to v0.69.7 Dec 4, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from e81eb73 to cda7b18 Compare December 6, 2024 04:31
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.7 Update dependency gruntwork-io/terragrunt to v0.69.8 Dec 6, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from cda7b18 to e17b4cc Compare December 7, 2024 05:31
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.8 Update dependency gruntwork-io/terragrunt to v0.69.9 Dec 7, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from e17b4cc to 61e5f79 Compare December 11, 2024 15:55
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.9 Update dependency gruntwork-io/terragrunt to v0.69.10 Dec 11, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 61e5f79 to 263fb66 Compare December 13, 2024 05:17
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.10 Update dependency gruntwork-io/terragrunt to v0.69.12 Dec 13, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 263fb66 to 62dc6ac Compare December 13, 2024 18:31
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.12 Update dependency gruntwork-io/terragrunt to v0.69.13 Dec 13, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch 6 times, most recently from b84c49c to 0b58176 Compare December 19, 2024 04:31
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.69.13 Update dependency gruntwork-io/terragrunt to v0.70.4 Dec 19, 2024
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 0b58176 to 784ae29 Compare December 21, 2024 06:50
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.71.1 Update dependency gruntwork-io/terragrunt to v0.71.2 Jan 8, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 995329e to 8fdd7b1 Compare January 10, 2025 07:26
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.71.2 Update dependency gruntwork-io/terragrunt to v0.71.5 Jan 10, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 8fdd7b1 to 4d48cb5 Compare January 11, 2025 08:07
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.71.5 Update dependency gruntwork-io/terragrunt to v0.72.0 Jan 11, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 4d48cb5 to 58bf3ec Compare January 16, 2025 07:11
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.72.0 Update dependency gruntwork-io/terragrunt to v0.72.1 Jan 16, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 58bf3ec to 2a7a36a Compare January 17, 2025 07:43
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.72.1 Update dependency gruntwork-io/terragrunt to v0.72.2 Jan 17, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 2a7a36a to 6d1c58e Compare January 22, 2025 05:44
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.72.2 Update dependency gruntwork-io/terragrunt to v0.72.3 Jan 22, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 6d1c58e to 0a9a04c Compare January 24, 2025 08:18
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.72.3 Update dependency gruntwork-io/terragrunt to v0.72.4 Jan 24, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 0a9a04c to c3bfe6a Compare January 28, 2025 05:31
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.72.4 Update dependency gruntwork-io/terragrunt to v0.72.5 Jan 28, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from c3bfe6a to c41ec14 Compare February 1, 2025 06:00
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.72.5 Update dependency gruntwork-io/terragrunt to v0.72.6 Feb 1, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from c41ec14 to ef54025 Compare February 7, 2025 18:00
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.72.6 Update dependency gruntwork-io/terragrunt to v0.72.8 Feb 7, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from ef54025 to 8a77414 Compare February 9, 2025 08:58
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.72.8 Update dependency gruntwork-io/terragrunt to v0.72.9 Feb 9, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 8a77414 to f489972 Compare February 11, 2025 04:14
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.72.9 Update dependency gruntwork-io/terragrunt to v0.73.0 Feb 11, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from f489972 to 17a1720 Compare February 13, 2025 07:56
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.73.0 Update dependency gruntwork-io/terragrunt to v0.73.1 Feb 13, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 17a1720 to 67f7b83 Compare February 14, 2025 08:49
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.73.1 Update dependency gruntwork-io/terragrunt to v0.73.2 Feb 14, 2025
@mend-for-github-com mend-for-github-com bot force-pushed the whitesource-remediate/gruntwork-io-terragrunt-0.x branch from 67f7b83 to 879dc60 Compare February 15, 2025 10:12
@mend-for-github-com mend-for-github-com bot changed the title Update dependency gruntwork-io/terragrunt to v0.73.2 Update dependency gruntwork-io/terragrunt to v0.73.5 Feb 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants