✨ New Features
This release introduces experimental support for the Terragrunt Content Addressable Store (CAS).
To enable this feature, you must use the cas experiment.
When using the CAS, the catalog
command will store its contents in a CAS to deduplicate repository contents, then construct the resultant repo from the CAS.
You can use Git URLs for the catalog
command normally, and when the cas
experiment is enabled, Terragrunt will leverage the CAS to save you clone time and disk space:
catalog {
urls = [
"git@github.com:acme/modules.git"
]
}
There are more planned integration points for the CAS, but for now only the catalog
command is supported.
You can learn more about the CAS in the feature documentation.
What's Changed
- feat: Adding cas support to catalog by @yhakbar in #3929
- fix: Engine tests improvements by @denis256 in #3995
- fix: Adding integration testing to the
find
command. by @yhakbar in #3997
Full Changelog: v0.75.4...v0.75.5