-
Notifications
You must be signed in to change notification settings - Fork 0
fix(deps): update github (patch) #79
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
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/patch-github
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cbb458f to
2d15790
Compare
2d15790 to
7f88722
Compare
7f88722 to
5b8c835
Compare
5b8c835 to
6267686
Compare
4d382f3 to
158d6d2
Compare
ed82f44 to
b183682
Compare
cfacfeb to
f3c4ed2
Compare
aeeae8c to
52a55d6
Compare
cd90a4f to
f41d3ed
Compare
0da0b19 to
dd164c3
Compare
dd164c3 to
93bc0c5
Compare
93bc0c5 to
0b5aa81
Compare
88fc91b to
4344813
Compare
e275491 to
92bdd3c
Compare
Contributor
Author
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
e1a61b9 to
8cfcac1
Compare
affdd3e to
b892d54
Compare
b892d54 to
9ee2a9a
Compare
9ee2a9a to
93a727a
Compare
93a727a to
6441680
Compare
Contributor
Author
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.77.5→v0.77.22v6.5.4→v6.5.9v1.16.2→v1.16.4Release Notes
gruntwork-io/terragrunt (github.com/gruntwork-io/terragrunt)
v0.77.22Compare Source
🧪 Experiments Completed
The
cli-redesignexperiment is now completeThe cli-redesign experiment is now complete.
If you were previously using the flag
--experiment cli-redesignto opt in to experimental functionality, you no longer have to do so. Note that if you are, you will simply get a warning that it is no longer necessary.What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.77.21...v0.77.22
v0.77.21Compare Source
✨ New Features
Introduction of
hclcommandsAs part of the CLI Redesign experiment, the
hclcommands have been introduced.The
hclcommands allow users to directly interact with HCL content independent of the underlying functionality they support.The functionality of the
hclcommands replace existing functionality that is soon to be deprecated:hclfmt-->hcl fmthclvalidate-->hcl validatevalidate-inputs-->hcl validate --inputsvalidate-inputs --strict-validate-->hcl validate --inputs --strictWhat's Changed
hclcommands docs by @levkohimins in #4180hclcommands by @levkohimins in #4169New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.77.20...v0.77.21
v0.77.20Compare Source
What's Changed
build-no-proxy.ymlworkflow by @yhakbar in #4171lint.ymlandstrict-lint.ymlworkflows for GitHub Actions by @yhakbar in #4172Full Changelog: gruntwork-io/terragrunt@v0.77.19...v0.77.20
v0.77.19Compare Source
✨ New Features
OpenTelemetry traces are now integrated into
findandlistcommandsfind telemetry:

list telemetry:

What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.77.18...v0.77.19
v0.77.18Compare Source
✨ New Features
Support for HCL formatting with the
rendercommandAs part of the CLI Redesign experiment, the
rendercommand now supports HCL formatting for rendered configurations, which is the default output format.Using the
rendercommand with HCL formatting allows users to get a quick, minimal evaluation of Terragrunt unit configurations with as much pre-processing done as possible.For example, the following
terragrunt.hclfile:Renders to the following HCL:
$ terragrunt render locals { aws_region = "us-east-1" } inputs = { aws_region = "us-east-1" }Using the
rendercommand with HCL formatting offers a way to resolve complex HCL function evaluation, include merging or string interpolation, etc. to achieve equivalent Terragrunt HCL configurations that are easier to reason about.What's Changed
renderwith HCL formatting by @yhakbar in #4164Full Changelog: gruntwork-io/terragrunt@v0.77.17...v0.77.18
v0.77.17Compare Source
✨ New Features
Introduction of the
rendercommandAs part of the CLI Redesign experiment, the
rendercommand has been introduced.The
rendercommand allows users to easily render Terragrunt unit configurations with reduced complexity, making it easier to understand configurations at a glance.For example, the following
terragrunt.hclfile:Renders to the following JSON:
$ terragrunt render --format json { "locals": { "aws_region": "us-east-1" }, "inputs": { "aws_region": "us-east-1" } // NOTE: other attributes are omitted for brevity }The introduction of the
rendercommand is part of the eventual deprecation of the existingrender-jsoncommand, which will be deprecated by the end of the CLI Redesign. Therendercommand is a higher level command, that offers the ability to write to stdout, in addition to writing to files, and will support HCL configurations in addition to JSON (coming soon).To learn more about the
rendercommand, read the official documentation here.What's Changed
rendercommand by @yhakbar in #4145backend migrateby @yhakbar in #4140Full Changelog: gruntwork-io/terragrunt@v0.77.16...v0.77.17
v0.77.16Compare Source
✨ New Features
Introduction of the
backend migratecommandAs part of the CLI Redesign experiment, the
backend migratecommand has been introduced.The
backend migratecommand allows you to simply migrate state between different units (or renames of units) without manually running OpenTofu/Terraform state migration commands.To learn more about the
backend migratecommand, read the official docs.What's Changed
stackvalues by @denis256 in #4163TF_CLI_CONFIG_FILEenvironment variable from being overwritten, except duringinitandproviderscommands by @levkohimins in #4155Full Changelog: gruntwork-io/terragrunt@v0.77.15...v0.77.16
v0.77.15Compare Source
✨ New Features
Introduction of the
dag graphcommandAs part of the CLI Redesign experiment, the
dag graphcommand has been introduced.What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.77.14...v0.77.15
v0.77.14Compare Source
✨ New Features
Support for
--excludeand--queue-construct-asinfindandlistThe
findandlistcommands have been updated to leverage new capabilities involving greater understanding of the Terragrunt run queue.Users can now leverage the
--queue-construct-as(or just--as) flag in thefindandlistcommands to discover configurations as if a particular Terragrunt command was being run (e.g.plan,destroy).For example:
The
findandlistcommands will now construct the Terragrunt run queue as if a particular command was being run, potentially altering the position of elements in the run queue, based on their dependencies (dependencies before dependents for plans, applies, etc. and dependents before dependencies for destroys).In addition, users can leverage the
--excludeflag on thefindcommand to get information on theexcludeblock included in results. Theexcludeblock is also factored in to discovery results when the--queue-construct-asflag is passed, allowing users to dry-run behavior of theexcludeblock before performing any Terragrunt runs.What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.77.13...v0.77.14
v0.77.13Compare Source
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.77.12...v0.77.13
v0.77.12Compare Source
✨ New Features
Introduced
no_validationattribute forstackandunit, allowing users to bypass Terragrunt's validation checks when deploying infrastructure. This is particularly useful in scenarios where you need to deploy infrastructure that doesn't strictly adhere to Terragrunt's validation rules, such as during emergency deployments or when working with legacy infrastructure patterns.What's Changed
no_validationattribute forstackandunitby @denis256 in #4149RFC: #3313
Full Changelog: gruntwork-io/terragrunt@v0.77.11...v0.77.12
v0.77.11Compare Source
✨ New Features
Introduction of the
info printcommandAs part of the CLI Redesign experiment, the
info printcommand has been introduced.What's Changed
info printcommand to output Terragrunt context as a structured JSON object by @denis256 in #4122Full Changelog: gruntwork-io/terragrunt@v0.77.10...v0.77.11
v0.77.10Compare Source
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.77.9...v0.77.10
v0.77.9Compare Source
🐛 Bug fixes
Fetching Outputs from Nested Stacks
Resolved an issue that prevented the correct retrieval of outputs from nested stacks.
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.77.8...v0.77.9
v0.77.8Compare Source
📖 Documentation Updates
A new performance guide has been added to Terragrunt documentation to offer guidance on how performance can be improved when using Terragrunt or contributing to the Terragrunt codebase.
This documentation will evolve over time, as more optional optimizations become available, or are no longer necessary, as they become default behavior.
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.77.7...v0.77.8
v0.77.7Compare Source
✨ New Features
Users can now configure a custom default template for
scaffoldandcatalogcommands in theircatalogconfiguration blocks like so:For more information, read the documentation in the catalog feature.
Special thanks to @tgeijg for contributing this feature!
What's Changed
New Contributors
Full Changelog: gruntwork-io/terragrunt@v0.77.6...v0.77.7
v0.77.6Compare Source
What's Changed
Full Changelog: gruntwork-io/terragrunt@v0.77.5...v0.77.6
jedib0t/go-pretty (github.com/jedib0t/go-pretty/v6)
v6.5.9Compare Source
What's Changed
New Contributors
Full Changelog: jedib0t/go-pretty@v6.5.8...v6.5.9
v6.5.8Compare Source
What's Changed
Full Changelog: jedib0t/go-pretty@v6.5.7...v6.5.8
v6.5.7Compare Source
What's Changed
Full Changelog: jedib0t/go-pretty@v6.5.6...v6.5.7
v6.5.6Compare Source
What's Changed
Full Changelog: jedib0t/go-pretty@v6.5.5...v6.5.6
v6.5.5Compare Source
What's Changed
New Contributors
Full Changelog: jedib0t/go-pretty@v6.5.4...v6.5.5
zclconf/go-cty (github.com/zclconf/go-cty)
v1.16.4Compare Source
v1.16.3Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.