fix(deps): update all non-major gomod dependencies #96
+52
−49
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.4.1
->v0.5.0
v5.16.2
->v5.16.3
v4.1.2
->v4.1.3
v0.23.0
->v0.24.0
v0.26.0
->v0.27.2
v1.2.0
->v1.4.0
v0.4.0
->v0.5.0
v1.3.1
->v1.3.2
v1.10.0
->v1.11.1
v1.16.3
->v1.17.0
v0.41.0
->v0.43.0
v0.43.0
->v0.46.0
v0.35.0
->v0.37.0
v0.28.0
->v0.30.0
v0.12.0
->v0.14.0
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
cyphar/filepath-securejoin (github.com/cyphar/filepath-securejoin)
v0.5.0
Compare Source
This is our first release of
github.com/cyphar/filepath-securejoin
,containing a full implementation with a coverage of 93.5% (the only missing
cases are the error cases, which are hard to mocktest at the moment).
go-git/go-git (github.com/go-git/go-git/v5)
v5.16.3
Compare Source
What's Changed
Full Changelog: go-git/go-git@v5.16.2...v5.16.3
go-jose/go-jose (github.com/go-jose/go-jose/v4)
v4.1.3
Compare Source
This release drops Go 1.23 support as that Go release is no longer supported. With that, we can drop
x/crypto
and no longer have any external dependencies in go-jose outside of the standard library!This release fixes a bug where a critical b64 header was ignored if in an unprotected header. It is now rejected instead of ignored.
What's Changed
Full Changelog: go-jose/go-jose@v4.1.2...v4.1.3
hashicorp/terraform-exec (github.com/hashicorp/terraform-exec)
v0.24.0
Compare Source
ENHANCEMENTS:
QueryJSON
and introduce new way for consuming Terraform's structured logging (#539)INTERNAL:
v0.23.1
Compare Source
BUG FIXES:
SetEnableLegacyPipeClosing(true)
to avoid hanging on cancellation.INTERNAL:
hashicorp/terraform-json (github.com/hashicorp/terraform-json)
v0.27.2
Compare Source
NOTES / BUG FIXES
UnmarshalLogMessage
to usejson.Number
(instead of defaultfloat64
) (#178)0.27.1
consumers.v0.27.1
Compare Source
What's Changed
ENHANCEMENTS
json.RawMessage
withany
for list log messages by @dbanck in #177Full Changelog: hashicorp/terraform-json@v0.27.0...v0.27.1
v0.27.0
Compare Source
What's Changed
ENHANCEMENTS
UnmarshalLogMessage()
by @radeksimko in #167INTERNAL
New Contributors
Full Changelog: hashicorp/terraform-json@v0.26.0...v0.27.0
kevinburke/ssh_config (github.com/kevinburke/ssh_config)
v1.4.0
Compare Source
pjbgf/sha1cd (github.com/pjbgf/sha1cd)
v0.5.0
Compare Source
What's Changed
20a022e
to14fd8a5
by @dependabot[bot] in #194Full Changelog: pjbgf/sha1cd@v0.4.0...v0.5.0
skeema/knownhosts (github.com/skeema/knownhosts)
v1.3.2
Compare Source
stretchr/testify (github.com/stretchr/testify)
v1.11.1
Compare Source
This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (
String() string
) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()
) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.What's Changed
Full Changelog: stretchr/testify@v1.11.0...v1.11.1
v1.11.0
Compare Source
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
Fixes
Documentation, Build & CI
New Contributors
Full Changelog: stretchr/testify@v1.10.0...v1.11.0
zclconf/go-cty (github.com/zclconf/go-cty)
v1.17.0
Compare Source
cty
now requires Go 1.23 or later.cty.Value.Elements
offers a moderniter.Seq2
-based equivalent ofcty.Value.ElementIterator
.cty.DeepValues
offers a moderniter.Seq2
-based equivalent ofcty.Walk
.cty.Value.WrangleMarksDeep
allows inspecting and modifying individual marks throughout a possibly-nested data structure.Having now got some experience using marks more extensively in some callers, it's become clear that it's often necessary for different subsystems to be able to collaborate using independent marks without upsetting each other's assumptions. Today that tends to be achieved using hand-written transforms either with
cty.Transform
orcty.Value.UnmarkDeepWithPaths
/cty.Value.MarkWithPaths
, both of which can be pretty expensive even in the common case where there are no marks present at all.This new function allows inspecting and transforming marks with far less overhead, by creating new values only for parts of a structure that actually need to change and by reusing (rather than recreating) the "payloads" of the values being modified when we know that only the marks have changed.
cty.ValueMarksOfType
andcty.ValueMarksOfTypeDeep
make it easier to use type-based rather than value-based mark schemes, where different values of a common type are used to track a specific kind of relationship with multiple external values.cty.Value.HasMarkDeep
provides a "deep" version of the existingcty.Value.HasMark
, searching throughout a possibly-nested structure for any values that have the given mark.cty.Value.UnmarkDeep
andcty.Value.UnmarkDeepWithPaths
are now implemented in terms ofcty.Value.WrangleMarksDeep
, so they benefit from its reduced overhead. In particular they avoid reconstructing a data structure that contains no marked values at all.cty.Value.MarkWithPaths
now has a fast path when it's given a zero-lengthPathValueMarks
, in which case it just returns the value it was given with no modifications.v1.16.4
Compare Source
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 becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
To execute skipped test pipelines write comment
/ok-to-test
.This PR has been generated by MintMaker (powered by Renovate Bot).