Skip to content

Update module github.com/zclconf/go-cty to v1.18.1 - autoclosed#107

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-zclconf-go-cty-1.x
Closed

Update module github.com/zclconf/go-cty to v1.18.1 - autoclosed#107
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-zclconf-go-cty-1.x

Conversation

@renovate

@renovate renovate Bot commented Nov 27, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
github.com/zclconf/go-cty v1.16.3v1.18.1 age confidence

Release Notes

zclconf/go-cty (github.com/zclconf/go-cty)

v1.18.1

Compare Source

v1.18.0

Compare Source

v1.17.0

Compare Source

cty now requires Go 1.23 or later.

  • cty.Value.Elements offers a modern iter.Seq2-based equivalent of cty.Value.ElementIterator.

  • cty.DeepValues offers a modern iter.Seq2-based equivalent of cty.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 or cty.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 and cty.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 existing cty.Value.HasMark, searching throughout a possibly-nested structure for any values that have the given mark.

  • cty.Value.UnmarkDeep and cty.Value.UnmarkDeepWithPaths are now implemented in terms of cty.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-length PathValueMarks, in which case it just returns the value it was given with no modifications.

v1.16.4

Compare Source


Configuration

📅 Schedule: (UTC)

  • 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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.15.1 Update module github.com/zclconf/go-cty to v1.16.0 Jan 3, 2025
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch from b1e4528 to d22368a Compare January 3, 2025 22:33
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.16.0 Update module github.com/zclconf/go-cty to v1.16.1 Jan 14, 2025
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch from d22368a to 5351ab1 Compare January 14, 2025 01:22
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.16.1 Update module github.com/zclconf/go-cty to v1.16.2 Jan 21, 2025
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch from 5351ab1 to 39ed59f Compare January 21, 2025 21:27
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.16.2 Update module github.com/zclconf/go-cty to v1.16.3 May 16, 2025
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch from 39ed59f to 4ade93d Compare May 16, 2025 23:51
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch from 4ade93d to 052c790 Compare August 21, 2025 02:15
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.16.3 Update module github.com/zclconf/go-cty to v1.16.4 Aug 21, 2025
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch from 052c790 to 6c5e253 Compare September 6, 2025 23:05
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.16.4 Update module github.com/zclconf/go-cty to v1.17.0 Sep 6, 2025
@renovate

renovate Bot commented Sep 6, 2025

Copy link
Copy Markdown
Contributor Author

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.20 -> 1.23

@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.17.0 Update module github.com/zclconf/go-cty to v1.17.0 - autoclosed Oct 31, 2025
@renovate renovate Bot closed this Oct 31, 2025
@renovate renovate Bot deleted the renovate/github.com-zclconf-go-cty-1.x branch October 31, 2025 21:15
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.17.0 - autoclosed Update module github.com/zclconf/go-cty to v1.17.0 Nov 1, 2025
@renovate renovate Bot reopened this Nov 1, 2025
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch 2 times, most recently from 6c5e253 to e52bfcd Compare November 1, 2025 01:39
@renovate

renovate Bot commented Dec 15, 2025

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.23.0 -> 1.25

@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.17.0 Update module github.com/zclconf/go-cty to v1.18.0 Feb 24, 2026
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch from e52bfcd to bf23300 Compare February 24, 2026 01:14
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.18.0 Update module github.com/zclconf/go-cty to v1.18.0 - autoclosed Feb 26, 2026
@renovate renovate Bot closed this Feb 26, 2026
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.18.0 - autoclosed Update module github.com/zclconf/go-cty to v1.18.0 Feb 26, 2026
@renovate renovate Bot reopened this Feb 26, 2026
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch 2 times, most recently from bf23300 to 9ec23e5 Compare February 26, 2026 18:39
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch from 9ec23e5 to a770064 Compare April 17, 2026 02:15
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.18.0 Update module github.com/zclconf/go-cty to v1.18.1 Apr 17, 2026
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.18.1 Update module github.com/zclconf/go-cty to v1.18.1 - autoclosed May 4, 2026
@renovate renovate Bot closed this May 4, 2026
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.18.1 - autoclosed Update module github.com/zclconf/go-cty to v1.18.1 May 4, 2026
@renovate renovate Bot reopened this May 4, 2026
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch 2 times, most recently from a770064 to 150de4a Compare May 4, 2026 06:37
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.18.1 Update module github.com/zclconf/go-cty to v1.18.1 - autoclosed May 10, 2026
@renovate renovate Bot closed this May 10, 2026
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.18.1 - autoclosed Update module github.com/zclconf/go-cty to v1.18.1 May 10, 2026
@renovate renovate Bot reopened this May 10, 2026
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch 2 times, most recently from 150de4a to 5190e60 Compare May 10, 2026 04:47
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch 7 times, most recently from a60432d to 6465a0c Compare June 5, 2026 05:00
@renovate renovate Bot force-pushed the renovate/github.com-zclconf-go-cty-1.x branch from 6465a0c to c59adfc Compare June 5, 2026 05:01
@renovate renovate Bot changed the title Update module github.com/zclconf/go-cty to v1.18.1 Update module github.com/zclconf/go-cty to v1.18.1 - autoclosed Jun 5, 2026
@renovate renovate Bot closed this Jun 5, 2026
@spilliams

Copy link
Copy Markdown
Owner

Merged by #119

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant