Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Sep 2, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/hashicorp/terraform-plugin-docs v0.22.0 -> v0.24.0 age adoption passing confidence
github.com/hashicorp/terraform-plugin-framework v1.15.1 -> v1.16.1 age adoption passing confidence
github.com/hashicorp/terraform-plugin-framework-timeouts v0.5.0 -> v0.7.0 age adoption passing confidence
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0 -> v0.19.0 age adoption passing confidence
github.com/hashicorp/terraform-plugin-go v0.28.0 -> v0.29.0 age adoption passing confidence
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0 -> v2.38.1 age adoption passing confidence
github.com/siderolabs/crypto v0.6.3 -> v0.6.4 age adoption passing confidence
github.com/siderolabs/image-factory v0.8.3 -> v0.8.4 age adoption passing confidence
github.com/siderolabs/talos v1.11.0 -> v1.11.3 age adoption passing confidence
github.com/siderolabs/talos/pkg/machinery v1.11.0 -> v1.11.3 age adoption passing confidence
golang.org/x/mod v0.27.0 -> v0.29.0 age adoption passing confidence
google.golang.org/grpc v1.75.0 -> v1.76.0 age adoption passing confidence
google.golang.org/grpc v1.66.3 -> v1.76.0 age adoption passing confidence
k8s.io/client-go v0.34.0 -> v0.34.1 age adoption passing confidence

Release Notes

hashicorp/terraform-plugin-docs (github.com/hashicorp/terraform-plugin-docs)

v0.24.0

Compare Source

FEATURES:

  • generate: Support multiple configuration example files in default templates (#​508)
  • generate/migrate/validate: Add support for list resources (#​528)

v0.23.0

Compare Source

FEATURES:

  • generate: Add support for actions (#​505)
  • migrate: Add support for actions (#​505)
  • validate: Add support for actions (#​505)
hashicorp/terraform-plugin-framework (github.com/hashicorp/terraform-plugin-framework)

v1.16.1

Compare Source

BUG FIXES:

  • all: Prevent identity change validation from raising an error when prior identity is empty (all attributes are null) (#​1229)
  • all: Added an additional validation check to ensure the resource identity object is not null. (#​1193)

v1.16.0

Compare Source

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#​1217)
  • Support for the new action{} block is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#​1181)
  • action: This release contains a new interface (action.Action) and packages for implementing action types, available in Terraform 1.14+. An action in Terraform can be defined by providers to model side-effects that practitioners can reference in their configurations via the lifecycle.action_trigger block. (#​1181)
  • List support is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#​1150)
  • list: This release contains a new interface (list.ListResource) and packages for implementing list resource types, available in Terraform 1.14+. A list resource in Terraform can be defined by providers to list remote resources within a given scope. (#​1150)

FEATURES:

  • action: New package for implementing actions. (#​1181)
  • action/schema: New package for implementing action schemas. (#​1183)
  • types: Exported a previously internal function, TerraformTypeToFrameworkType, which converts tftypes.Type to a known framework type. (#​1200)
  • list: New package for implementing list resources. (#​1150)
  • all: Update Framework to handle new ListResource RPCs. (#​1157)

ENHANCEMENTS:

  • provider: Added ProviderWithActions interface for implementing actions. (#​1181)
  • provider: Added ActionData to ConfigureResponse, to pass provider-defined data to action.Action implementations. (#​1185)
  • provider: Added ListResourceData to ConfigureResponse, to pass provider-defined data to list.ListResource implementations. (#​1202)
  • tfsdk: Allow SetAtPath to be called with a tftypes.Value. (#​1198)
  • tfsdk: Allow SetAttribute to be called with a tftypes.Value. (#​1205)
  • list: Add the ListResourceWithRawV5Schemas and ListResourceWithRawV6Schemas interfaces to support list implementation on non-framework resources. (#​1198)
hashicorp/terraform-plugin-framework-timeouts (github.com/hashicorp/terraform-plugin-framework-timeouts)

v0.7.0

Compare Source

FEATURES:

  • action/timeouts: Adds functions and types for action timeouts (#​205)

v0.6.0

Compare Source

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#​201)

FEATURES:

  • list/timeouts: Adds functions and types for list resource timeouts. (#​197)
hashicorp/terraform-plugin-framework-validators (github.com/hashicorp/terraform-plugin-framework-validators)

v0.19.0

Compare Source

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#​307)

FEATURES:

  • actionvalidator: Introduce new package with declarative validators for action configurations (#​302)
  • listresourcevalidator: Introduce new package with declarative validators for list resource configurations (#​298)
hashicorp/terraform-plugin-go (github.com/hashicorp/terraform-plugin-go)

v0.29.0

Compare Source

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#​556)
  • tfprotov5+tfprotov6: An upcoming release will require the ActionServer implementation as part of ProviderServer. (#​534)

FEATURES:

  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new action type. (#​534)
  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new list type (#​525)

ENHANCEMENTS:

  • tftypes: tftypes.Value.IsFullyNull() allows SDKs to determine when a value is null or consists of only null elements and attributes. (#​541)
hashicorp/terraform-plugin-sdk (github.com/hashicorp/terraform-plugin-sdk/v2)

v2.38.1

Compare Source

BUG FIXES:

  • all: Prevent identity change validation from raising an error when prior identity is empty (all attributes are null) (#​1527)

v2.38.0

Compare Source

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#​1518)
  • helper/schema: Update the provider server to handle the ListResource RPCs by returning an error since they are not supported by SDKv2. (#​1521)
  • helper/schema: Update the provider server to handle Action RPCs by returning an error since they are not supported by SDKv2. (#​1522)

ENHANCEMENTS:

  • helper/schema: Added new helper methods for converting Resource and Identity schemas to protocol representations. (#​1504)
  • helper/schema: Added an additional validation check to ensure the resource identity object is not null. (#​1513)
  • helper/schema: Added the TfTypeIdentityState() and TfTypeResourceState() methods to ResourceData which return the identity and state values as a tftypes.Value. (#​1508)
siderolabs/crypto (github.com/siderolabs/crypto)

v0.6.4

Compare Source

crypto 0.6.4 (2025-09-29)

Welcome to the v0.6.4 release of crypto!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/crypto/issues.

Contributors
  • Andrey Smirnov
  • Andrey Smirnov
  • Andrey Smirnov
  • Alexey Palazhchenko
  • Dmitriy Matrenichev
  • Andrew Rynhard
  • Artem Chernyshev
  • Noel Georgi
  • Serge Logvinov
  • Utku Ozdemir
Changes
41 commits

  • 4154a77 feat: implement dynamic certificate reloader
  • dae07fa chore: update to Go 1.25
  • 62a079b fix: update TLS config, add tests for TLS interactions
  • c2b4e26 fix: remove code duplication and fix Ed25511 CA generation
  • 2a07632 fix: enforce FIPS-140-3 compliance
  • 17107ae fix: add generic CSR generator and OpenSSL interop
  • 53659fc refactor: split into files
  • 0d45dee chore: bump deps
  • 58b2f92 chore: use HTTP/2 ALPN by default
  • c240482 feat: provide dynamic client CA matching
  • 2f4f911 feat: add PEMEncodedCertificate wrapper
  • 1c94bb3 chore: bump dependencies
  • 8f77da3 feat: add a method to load PEM key from file
  • c03ff58 feat: add a way to represent redacted x509 private keys
  • c3225ee feat: allow CSR template subject field to be overridden
  • 8570669 chore: rename to siderolabs/crypto
  • e9df1b8 feat: add support for generating keys from RSA-SHA256 CAs
  • 510b0d2 chore: add json tags
  • 6fa2d93 fix: deepcopy nil fields as nil
  • 9a63cba fix: add back support for generating ECDSA keys with P-256 and SHA512
  • 893bc66 fix: use SHA256 for ECDSA-P256
  • deec8d4 chore: implement DeepCopy methods for PEMEncoded* types
  • d3cb772 feat: make possible to change KeyUsage
  • 6bc5bb5 chore: remove unused argument
  • cd18ef6 feat: add support for several organizations
  • 97c888b chore: add options to CSR
  • 7776057 chore: fix typos
  • 80df078 chore: remove named result parameters
  • 15bdd28 chore: minor updates
  • 4f80b97 fix: verify CSR signature before issuing a certificate
  • 39584f1 feat: support for key/certificate types RSA, Ed25519, ECDSA
  • cf75519 fix: function NewKeyPair should create certificate with proper subject
  • 751c95a feat: add 'PEMEncodedKey' which allows to transport keys in YAML
  • 562c3b6 feat: add support for public RSA key in RSAKey
  • bda0e9c feat: enable more conversions between encoded and raw versions
  • e0dd56a feat: add NotBefore option for x509 cert creation
  • 12a4897 feat: add support for SPKI fingerprint generation and matching
  • d0c3eef fix: implement NewKeyPair
  • 196679e feat: move pkg/grpc/tls from github.com/talos-systems/talos as ./tls
  • 1ff6242 chore: initial version as imported from talos-systems/talos
  • 835063e chore: initial commit

Changes since v0.6.3
2 commits

  • 4154a77 feat: implement dynamic certificate reloader
  • dae07fa chore: update to Go 1.25

Dependency Changes

This release has no dependency changes

siderolabs/image-factory (github.com/siderolabs/image-factory)

v0.8.4

Compare Source

image-factory 0.8.4 (2025-09-10)

Welcome to the v0.8.4 release of image-factory!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/image-factory/issues.

Contributors
  • Andrey Smirnov
  • Noel Georgi
  • Oguz Kilcan
  • Dmitrii Sharshakov
  • Alp Celik
  • Amarachi Iheanacho
  • Andrew Longwill
  • Guillaume LEGRAIN
  • Markus Freitag
  • Mateusz Urbanek
  • Olivier Doucet
  • Orzelius
  • Sammy ETUR
Changes
3 commits

  • a3a7661 release(v0.8.4): prepare release
  • 075aa3f fix: update Talos to 1.11.1
  • 02723cd fix: translation ID

Changes from siderolabs/go-debug
1 commit

  • e21721b chore: add support for Go 1.25

Changes from siderolabs/pkgs
18 commits

  • 1a25681 feat: enable ublk support
  • 95f0be4 fix: enable memcg v1
  • e1c333c feat: update Linux to 6.12.45
  • 2ac857a feat: update pcre2 to 10.46
  • f31e192 fix: bump NVIDIA production to 570.172.08
  • e68ff4a feat: update Linux to 6.12.43
  • 42cdb43 chore: update kernel config to support max SMP CPUs
  • 3bb9cc9 fix: backport CVE kernel patches to 6.12
  • c87dc6c feat: enable Infiniband IRDMA support
  • 2598d53 fix: re-enable CPUSETS_V1 cgroups controller
  • 6a8bca7 feat: update backportable dependencies
  • a150a75 feat: update Go to 1.24.6
  • a94734c feat: update containerd to 2.1.4
  • 662c5a4 feat: enable F71808E watchdog driver
  • 48afc2a fix: enable ISCSI IBFT
  • ddb7b5e feat: update Linux to 6.12.40
  • 5616981 feat: enable bootloader control on amd64
  • 4a840bc chore: allow more than one commit for a PR

Changes from siderolabs/talos
64 commits

  • 8e85c8362 release(v1.11.1): prepare release
  • ff8644cd2 fix: correctly handle status-code 204
  • 7d5fe2d0f feat: update Linux kernel (memcg_v1, ublk)
  • 9e310a9dd fix: enable support for VMWare arm64
  • f7620f028 feat: update CoreDNS to 1.12.3
  • 01bf2f6f9 feat: add SOCKS5 proxy support to dynamic proxy dialer
  • 8a578bc4a feat: update Linux to 6.12.45
  • d9d89a3a8 release(v1.11.0): prepare release
  • 364b48690 feat: update pkgs/tools for pcre2 10.46
  • be70ea03f feat: update pkgs for NVIDIA prod 570.172.08
  • a5f80b4fe fix: bring back linux/armv7 build and update xz
  • 751dae432 fix: drop linux/armv7 build
  • 8cbd75320 fix: update xz module (security)
  • 803ed1ef9 feat: update Kubernetes to 1.34.0
  • a80898da9 feat: update Linux to 6.12.43
  • 30c14aa71 feat: update Kubernetes default to v1.34.0-rc.2
  • ed7d8cbac docs: link to kubernetes linux swap tuning
  • 1ee82120e docs: apply fixes for what is new
  • 36102eae1 release(v1.11.0-rc.0): prepare release
  • 0f22913d9 fix: image cache lockup on a missing volume
  • 46cf25c7c feat: update Linux to 6.12.41
  • 62f6c97fe fix: provide mitigation CVE-1999-0524
  • 350319063 fix: actually use SIDEROV1_KEYS_DIR env var if it's provided
  • 430a27dc2 fix: kubernetes upgrade options for kubelet
  • e3a9097c4 fix: set secs field in DHCPv4 packets
  • babddd0e4 fix: dial with proxy
  • 23efda4db feat: use key provider with fallback option for auth type SideroV1
  • e2a5a9b3f chore: re-enable vulncheck
  • f5d700a0c release(v1.11.0-beta.2): prepare release
  • 6186d1821 chore: disable vulncheck temporarily
  • e4a2a8d9c feat: update default Kubernetes to v1.34.0-rc.1
  • 4c4236d7e feat: update Go to 1.24.6
  • a01a390f6 chore: add deadcode elimination linter
  • 49fad0ede feat: add a pause function to dashboard
  • 21e8e9dc9 refactor: replace containerd/containerd/v2 module for proper DCE
  • bbd01b6b7 refactor: fix deadcode elimination with godbus
  • e8d9c81cc refactor: stop using text/template in machined code paths
  • 85589662a fix: unmarshal encryption STATE from META
  • f10a626d2 docs: add what is new notes for 1.11
  • 5a15ce88b release(v1.11.0-beta.1): prepare release
  • 614ca2e22 fix: one more attempt to fix volume mount race on restart
  • 4b86dfe6f feat: implement encryption locking to STATE
  • 8ae76c320 feat: implement talos.config.early command line arg
  • 19f8c605e docs: remove talos API flags from mgmt commands
  • fa1d6fef8 feat: bootedentry resource
  • 7dee810d4 fix: live reload of TLS client config for discovery client
  • a5dc22466 fix: enforce minimum size on user volumes if not set explicitly
  • 7836e924d feat: update containerd to 2.1.4
  • 5012550ec feat: add F71808E watchdog driver
  • 10ddc4cdd fix: grype scan
  • d108e0a08 fix(ci): use a random suffix for ami names
  • 504225546 fix: issues with reading GPT
  • bdaf08dd4 feat: update PCI DB module to v0.3.2
  • 667dcebec test: wait for service account test job longer
  • ae176a4b7 feat: update etcd to 3.6.4
  • 201b6801f fix: issue with volume remount on service restart
  • 2a911402b chore: tag aws snapshots created via ci with the image name
  • d8bd84b56 docs: add SBOM documentation
  • 7eec61993 feat: unify disk encryption configuration
  • 4ff2bf9e0 feat: update etcd to v3.5.22
  • 31a67d379 fix: do not download artifacts for cron Grype scan
  • c6b6e0bb3 docs: rewrite the getting started and prod docs for v1.10 and v1.11
  • ca1c656e6 chore(ci): add more nvidia test matrix
  • 7a2e0f068 feat: sync pkgs, update Linux to 6.12.40

Dependency Changes
  • github.com/prometheus/client_golang v1.22.0 -> v1.23.2
  • github.com/siderolabs/go-blockdevice/v2 v2.0.18 -> v2.0.19
  • github.com/siderolabs/go-debug v0.5.0 -> v0.6.0
  • github.com/siderolabs/pkgs v1.11.0 -> v1.11.0-18-g1a25681
  • github.com/siderolabs/talos v1.11.0-beta.0 -> v1.11.1
  • github.com/siderolabs/talos/pkg/machinery v1.11.0-beta.0 -> v1.11.1
  • github.com/stretchr/testify v1.10.0 -> v1.11.1
  • github.com/u-root/u-root v0.14.0 -> v0.15.0
  • github.com/ulikunitz/xz v0.5.12 -> v0.5.15
  • golang.org/x/net v0.42.0 -> v0.44.0
  • golang.org/x/sync v0.16.0 -> v0.17.0
  • golang.org/x/sys v0.34.0 -> v0.36.0
  • golang.org/x/text v0.27.0 -> v0.29.0

Previous release can be found at v0.8.3

siderolabs/talos (github.com/siderolabs/talos)

v1.11.3

Compare Source

Talos 1.11.3 (2025-10-15)

Welcome to the v1.11.3 release of Talos!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/talos/issues.

Component Updates

runc: 1.3.2
Kubernetes: 1.34.1
Linux: 6.12.52
linux-firmware: 2025101
CoreDNS: 1.12.4
etcd: 3.6.5
Flannel: 0.27.4

Talos is built with Go 1.24.9.

Contributors
  • Noel Georgi
  • Andrey Smirnov
  • Chris Sanders
  • Grzegorz Rozniecki
Changes
11 commits

Changes from siderolabs/pkgs
5 commits

Changes from siderolabs/tools
2 commits

Dependency Changes
  • github.com/siderolabs/pkgs v1.11.0-21-gf95c679 -> v1.11.0-26-gc316374
  • github.com/siderolabs/talos/pkg/machinery v1.11.2 -> v1.11.3
  • github.com/siderolabs/tools v1.11.0-2-g8556c73 -> v1.11.0-4-g05ee846

Previous release can be found at v1.11.2

Images

ghcr.io/siderolabs/flannel:v0.27.4
registry.k8s.io/coredns/coredns:v1.12.4
gcr.io/etcd-development/etcd:v3.6.5
registry.k8s.io/kube-apiserver:v1.34.1
registry.k8s.io/kube-controller-manager:v1.34.1
registry.k8s.io/kube-scheduler:v1.34.1
registry.k8s.io/kube-proxy:v1.34.1
ghcr.io/siderolabs/kubelet:v1.34.1
ghcr.io/siderolabs/installer:v1.11.3
registry.k8s.io/pause:3.10

v1.11.2

Compare Source

Talos 1.11.2 (2025-09-25)

Welcome to the v1.11.2 release of Talos!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/talos/issues.

Component Updates

runc: 1.3.1
Kubernetes: 1.34.1
Linux: 6.12.48
linux-firmware: 2025091

Talos is built with Go 1.24.6.

Contributors
  • Andrey Smirnov
  • Mateusz Urbanek
  • Noel Georgi
  • Dmitrii Sharshakov
  • Oguz Kilcan
  • Serge Logvinov
Changes
17 commits

Changes from siderolabs/pkgs
3 commits

Dependency Changes
  • github.com/siderolabs/pkgs v1.11.0-18-g1a25681 -> v1.11.0-21-gf95c679
  • github.com/siderolabs/talos/pkg/machinery v1.11.1 -> v1.11.2
  • k8s.io/api v0.34.0 -> v0.34.1
  • k8s.io/apiextensions-apiserver v0.34.0 -> v0.34.1
  • k8s.io/apiserver v0.34.0 -> v0.34.1
  • k8s.io/client-go v0.34.0 -> v0.34.1
  • k8s.io/component-base v0.34.0 -> v0.34.1
  • k8s.io/kube-scheduler v0.34.0 -> v0.34.1
  • k8s.io/kubectl v0.34.0 -> v0.34.1
  • k8s.io/kubelet v0.34.0 -> v0.34.1
  • k8s.io/pod-security-admission v0.34.0 -> v0.34.1

Previous release can be found at v1.11.1

Images

ghcr.io/siderolabs/flannel:v0.27.2
registry.k8s.io/coredns/coredns:v1.12.3
gcr.io/etcd-development/etcd:v3.6.4
registry.k8s.io/kube-apiserver:v1.34.1
registry.k8s.io/kube-controller-manager:v1.34.1
registry.k8s.io/kube-scheduler:v1.34.1
registry.k8s.io/kube-proxy:v1.34.1
ghcr.io/siderolabs/kubelet:v1.34.1
ghcr.io/siderolabs/installer:v1.11.2
registry.k8s.io/pause:3.10

v1.11.1

Compare Source

Talos 1.11.1 (2025-09-08)

Welcome to the v1.11.1 release of Talos!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/talos/issues.

Component Updates

Linux: 6.12.45
CoreDNS: 1.12.3

Talos is built with Go 1.24.6.

Contributors
  • Andrey Smirnov
  • Markus Freitag
  • Olivier Doucet
  • Sammy ETUR
Changes
7 commits


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 chore: update go packages chore: update go packages - autoclosed Sep 2, 2024
@renovate renovate bot closed this Sep 2, 2024
@renovate renovate bot deleted the renovate/go-packages branch September 2, 2024 12:01
@renovate renovate bot changed the title chore: update go packages - autoclosed chore: update go packages Sep 3, 2024
@renovate renovate bot restored the renovate/go-packages branch September 3, 2024 14:51
@renovate renovate bot reopened this Sep 3, 2024
@renovate renovate bot force-pushed the renovate/go-packages branch 2 times, most recently from c5c7266 to 3347170 Compare September 9, 2024 17:51
@renovate renovate bot changed the title chore: update go packages chore: update go packages - autoclosed Sep 10, 2024
@renovate renovate bot closed this Sep 10, 2024
@renovate renovate bot deleted the renovate/go-packages branch September 10, 2024 12:25
@renovate renovate bot changed the title chore: update go packages - autoclosed chore: update go packages Sep 11, 2024
@renovate renovate bot restored the renovate/go-packages branch September 11, 2024 20:28
@renovate renovate bot reopened this Sep 11, 2024
@renovate renovate bot force-pushed the renovate/go-packages branch 3 times, most recently from 09acd75 to 560b07a Compare September 19, 2024 05:13
@renovate renovate bot force-pushed the renovate/go-packages branch 2 times, most recently from 7bdd756 to fbbc13c Compare September 24, 2024 11:08
@renovate renovate bot force-pushed the renovate/go-packages branch from fbbc13c to 9197642 Compare October 2, 2024 02:47
@renovate renovate bot force-pushed the renovate/go-packages branch 2 times, most recently from 043bc34 to 69b36b5 Compare October 12, 2024 05:59
@renovate renovate bot force-pushed the renovate/go-packages branch from 69b36b5 to 0a77774 Compare October 17, 2024 09:18
@renovate renovate bot changed the title chore: update go packages chore: update module google.golang.org/grpc to v1.67.1 Oct 17, 2024
@renovate renovate bot changed the title chore: update module google.golang.org/grpc to v1.67.1 chore: update go packages Oct 18, 2024
@renovate renovate bot force-pushed the renovate/go-packages branch 3 times, most recently from 9dee5af to 5450cdd Compare October 18, 2024 12:44
@renovate renovate bot changed the title chore: update go packages chore: update module google.golang.org/grpc to v1.67.1 Oct 21, 2024
@renovate renovate bot force-pushed the renovate/go-packages branch from 5450cdd to 818baca Compare October 21, 2024 15:40
@renovate renovate bot force-pushed the renovate/go-packages branch 3 times, most recently from 46ada69 to 445f52d Compare August 7, 2025 11:41
@renovate renovate bot changed the title chore: update go packages chore: update module google.golang.org/grpc to v1.74.2 Aug 7, 2025
@renovate renovate bot force-pushed the renovate/go-packages branch from 445f52d to 686d5e5 Compare August 8, 2025 04:03
@renovate renovate bot changed the title chore: update module google.golang.org/grpc to v1.74.2 chore: update go packages Aug 8, 2025
@renovate renovate bot force-pushed the renovate/go-packages branch 3 times, most recently from 6e2926b to 2828360 Compare August 15, 2025 07:49
@renovate renovate bot force-pushed the renovate/go-packages branch 2 times, most recently from 424b479 to 0175f24 Compare August 23, 2025 00:07
@renovate renovate bot force-pushed the renovate/go-packages branch 2 times, most recently from fe9a3f9 to 75f7dda Compare September 1, 2025 14:24
@renovate renovate bot changed the title chore: update go packages chore: update module google.golang.org/grpc to v1.75.0 Sep 1, 2025
@renovate renovate bot force-pushed the renovate/go-packages branch from 75f7dda to ca362f5 Compare September 9, 2025 07:53
@renovate renovate bot changed the title chore: update module google.golang.org/grpc to v1.75.0 chore: update go packages Sep 9, 2025
@renovate
Copy link
Author

renovate bot commented Sep 9, 2025

ℹ 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):

  • 21 additional dependencies were updated

Details:

Package Change
github.com/bmatcuk/doublestar/v4 v4.8.1 -> v4.9.1
github.com/hashicorp/go-plugin v1.6.3 -> v1.7.0
github.com/hashicorp/hcl/v2 v2.23.0 -> v2.24.0
github.com/hashicorp/terraform-exec v0.23.0 -> v0.24.0
github.com/hashicorp/terraform-json v0.25.0 -> v0.27.2
github.com/hashicorp/terraform-registry-address v0.2.5 -> v0.4.0
github.com/hashicorp/yamux v0.1.1 -> v0.1.2
github.com/jhump/protoreflect v1.16.0 -> v1.17.0
github.com/zclconf/go-cty v1.16.3 -> v1.17.0
golang.org/x/crypto v0.40.0 -> v0.42.0
golang.org/x/net v0.42.0 -> v0.44.0
golang.org/x/sync v0.16.0 -> v0.17.0
golang.org/x/sys v0.34.0 -> v0.36.0
golang.org/x/term v0.33.0 -> v0.35.0
golang.org/x/text v0.27.0 -> v0.30.0
golang.org/x/tools v0.35.0 -> v0.37.0
google.golang.org/genproto/googleapis/api v0.0.0-20250715232539-7130f93afb79 -> v0.0.0-20250804133106-a7a43d27e69b
google.golang.org/genproto/googleapis/rpc v0.0.0-20250715232539-7130f93afb79 -> v0.0.0-20250818200422-3122310a409c
google.golang.org/protobuf v1.36.6 -> v1.36.9
k8s.io/api v0.34.0 -> v0.34.1
k8s.io/apimachinery v0.34.0 -> v0.34.1

@renovate renovate bot force-pushed the renovate/go-packages branch from ca362f5 to a2986fd Compare September 10, 2025 23:50
@renovate renovate bot force-pushed the renovate/go-packages branch 2 times, most recently from d6097f8 to ed39eab Compare September 22, 2025 16:11
@renovate renovate bot force-pushed the renovate/go-packages branch 4 times, most recently from 78fb106 to 8c2d078 Compare October 2, 2025 07:54
@renovate renovate bot force-pushed the renovate/go-packages branch 2 times, most recently from 8367010 to 63a8686 Compare October 8, 2025 23:51
@renovate renovate bot force-pushed the renovate/go-packages branch 2 times, most recently from 694edc9 to e0efd20 Compare October 16, 2025 03:55
@renovate renovate bot force-pushed the renovate/go-packages branch from e0efd20 to 9fd0ce0 Compare October 25, 2025 07:25
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