chore: bump github.com/zclconf/go-cty from 1.14.1 to 1.18.0
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(3 months ago)
(3 months ago)
(3 months ago)
stale dependencies go
Bumps github.com/zclconf/go-cty from 1.14.1 to 1.18.0.
Release notes
Sourced from github.com/zclconf/go-cty's releases.
v1.17.0
ctynow requires Go 1.23 or later.
cty.Value.Elementsoffers a moderniter.Seq2-based equivalent ofcty.Value.ElementIterator.
cty.DeepValuesoffers a moderniter.Seq2-based equivalent ofcty.Walk.
cty.Value.WrangleMarksDeepallows 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.Transformorcty.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.ValueMarksOfTypeandcty.ValueMarksOfTypeDeepmake 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.HasMarkDeepprovides a "deep" version of the existingcty.Value.HasMark, searching throughout a possibly-nested structure for any values that have the given mark.
cty.Value.UnmarkDeepandcty.Value.UnmarkDeepWithPathsare 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.MarkWithPathsnow 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.0
convert: When converting between two different capsule types, will now try to use the "conversion from" implementation from the target type if the source type doesn't have a suitable "conversion to" implementation. (#194)convert: When converting to a map whose element type is an object type with optional attributes, will no longer construct a broken result when a final map is empty. (#198)
Changelog
Sourced from github.com/zclconf/go-cty's changelog.
1.18.0 (February 23, 2026)
ctynow requires Go 1.25 or later.
cty.Value.Equalsnow has a special case where if a null value is compared with a non-null value then only top-level marks from the non-null value will transfer to the boolean result.This is a limited introduction of the idea that only the parts of a nested data structure that were actually relevant to the comparison should transfer to the result. The more general form of that idea might follow in a later release, but that would require some more severe refactoring of this method's implementation that would be far riskier and so this is a pragmatic compromise to support just the relatively-common case of comparing with null in callers like HCL where an equality test is the canonical way to test a value for "null-ness".
cty.IndexStep.Applynow works for traversing through a set.Although
cty.Value.Indexdoes not allow looking up a set element due to set elements not having indices, we often usecty.Pathto describe a specific location in a nested structure and have a convention of handling traversal through a set as acty.IndexStepwhose "key" is the set element's value.To make that work a little better with code that uses
cty.Path.Applyon such paths,cty.IndexStepnow has a special case where if the given value is a set then it checks whether the index step's key is a member of the set and returns that value if so. If unknown values mean that it's not decidable whether there is a matching element then the result is an unknown value of the set's element type, so that traversal can continue and presumably eventually return an unknown value of the appropriate leaf type.1.17.0 (September 5, 2025)
ctynow requires Go 1.23 or later.
cty.Value.Elementsoffers a moderniter.Seq2-based equivalent ofcty.Value.ElementIterator.
cty.DeepValuesoffers a moderniter.Seq2-based equivalent ofcty.Walk.
cty.Value.WrangleMarksDeepallows 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.Transformorcty.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.ValueMarksOfTypeandcty.ValueMarksOfTypeDeepmake 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.HasMarkDeepprovides a "deep" version of the existingcty.Value.HasMark, searching throughout a possibly-nested structure for any values that have the given mark.
cty.Value.UnmarkDeepandcty.Value.UnmarkDeepWithPathsare 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.MarkWithPathsnow 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.1.16.4 (August 20, 2025)
cty.UnknownAsNullnow accepts marked values and preserves the given marks in its result. Previously it had no direct support for marks and so would either panic or return incorrect results when given marked values.1.16.3 (May 16, 2025)
convert: Now generates more specific error messages in various cases of type conversion failure, giving additional information about the type that was given as compared to the type that was wanted by the caller.1.16.2 (January 21, 2025)
json:ImpliedTypenow returns an error if a JSON object contains two properties of the same name. As a compatibility concession it allows duplicates whose values have the same implied type, since it was unintentionally possible to combineImpliedTypeandUnmarshalsuccessfully in that case before, but this is not an endorsement of using duplicate property names since that makes the input ambiguous in any case. (#199)function/stdlib:ElementFuncno longer crashes when asked for a negative index into a tuple. This fixes a miss in the negative index support added back in v1.15.0. (#200)1.16.1 (January 13, 2025)
cty:Value.HasElementnow treats unknown set elements consistently with how much of the rest ofctytreats them.function/stdlib:FormatFuncandFormatListFuncnow handle unknown and null values of unknown type as arguments, rather than letting the function system's short-circuit behavior take care of it. This allowscty.DynamicValandcty.NullVal(cty.DynamicPseudoType)to be treated consistently with other values, returning results consistent with the documented behavior, rather than forcing the function to immediately returncty.DynamicVal.1.16.0 (January 3, 2025)
... (truncated)
Commits
e0c742bv1.18.0 release21d455dUpdate LICENSE to reflect the current situationa6629d6cty: IndexStep.Apply now works for traversing through a setd586d11cty: Value.Equals only keeps shallow marks when comparing to null2cc7315go.mod: Require Go 1.25 or laterda4c600CHANGELOG: Prepare for v1.17.0 releaseb13ddd4cty: Use WrangleMarksDeep for UnmarkDeep and UnmarkDeepWithPaths4453ac2cty: Use DeepValues instead of Walk for deep marks inspectionsf833b10Bulk replace interface{} -> anyd4bb9d4cty: Various new mark-inspecting helpers- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Package Dependencies
Technical Details
| ID: | 14567093 |
| UUID: | 4011108176 |
| Node ID: | PR_kwDOLmBl1M7HUrx9 |
| Host: | GitHub |
| Repository: | Txim0520/https-github.com-coder-coder |