✨ New Features
find
supports dag
sorting
The find
command now supports the ability to sort results by their relative positions in the Directed Acyclic Graph (DAG).
To use the find
command, you must enable the cli-redesign
experiment.
The find
command now also supports discovering dependencies of units with the new --dependencies
flag.
In addition, external dependencies (dependencies outside the working directory where find
was run), can be discovered using the --external
flag.
More information can be found in the find
docs.
The stack run
command now supports all run
flags
The stack run
command now supports all the same flags run
supports, including --queue-include-dir
.
To use stack
commands, you must enable the stacks
experiment.
As an example of what's supported now:
terragrunt --experiment stacks stack run apply --queue-strict-include --queue-include-dir=./.terragrunt-stack/app1 --non-interactive
More information can be found in the stack run
docs.
What's Changed
- feat: Support all
run
cli flags in the Stack command by @denis256 in #4005 - feat: Adding DAG support to find by @yhakbar in #4001
- fix: Upgrading
golangci-lint
by @yhakbar in #3987 - fix: Reducing noise for skipped dependency inputs by @yhakbar in #4007
Full Changelog: v0.75.6...v0.75.7