Skip to content
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

chore(deps/tools): bump the go-minor group in /hack/tools with 6 updates #2573

Merged
merged 7 commits into from
Oct 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 25, 2024

Bumps the go-minor group in /hack/tools with 6 updates:

Package From To
github.com/bufbuild/buf 1.26.1 1.42.0
github.com/golangci/golangci-lint 1.60.1 1.61.0
golang.org/x/tools 0.24.0 0.25.0
helm.sh/helm/v3 3.12.3 3.16.1
k8s.io/code-generator 0.29.3 0.31.0
sigs.k8s.io/controller-tools 0.14.0 0.16.3

Updates github.com/bufbuild/buf from 1.26.1 to 1.42.0

Release notes

Sourced from github.com/bufbuild/buf's releases.

v1.42.0

  • Add support for custom lint and breaking change plugins. See our launch blog post for more details!
  • Add buf dep graph --format flag that defaults to dot, and adds the option json, to print the dependency graph in JSON format.
  • Fix bugs in buf format where trailing comments on commas in message literals were not properly propagated to the formatted proto, empty message literals were not properly indented, and compound strings in options added an extra newline before trailing commas.

v1.41.0

  • Add HTTP/3 support for gRPC with buf curl.
  • Fix issue where errors from protoc plugins may be overwritten when executing plugins in parallel.

v1.40.1

  • Fix issue with buf lint where comment ignores in the shape of // buf:lint:ignore <RULE_ID> <extra comment> were not recognized due to the extra comment.

v1.40.0

  • Add concept of a default lint or breaking rule, which is printed out as a property when running buf config ls-{breaking,lint}-rules. Default rules are those rules which are run if no lint or breaking rules are explicitly configured in your buf.yaml.
  • Rename DEFAULT lint rule category to STANDARD. With the concept of default rules being introduced, having a category named DEFAULT is confusing, as while it happens that all the rules in the DEFAULT lint category are also default rules, the name has become overloaded. As with all buf changes, this change is backwards-compatible: the DEFAULT lint category continues to work, and always will. We recommend changing to STANDARD, however.

v1.39.0

  • Fix git input handling of relative HEAD refs without branch names.
  • Add includes key to module configurations in v2 buf.yaml, accepting a list of directories.
    • If includes is specified, a proto file is considered in the module only if it is in one of the directories specified.
    • If both includes and excludes keys are specified for a module, a proto file is considered part of this module if it is contained in any of the include paths and not in any of the exclude paths.
  • Allow multiple module configurations in the same v2 buf.yaml to have the same directory path.

v1.38.0

  • Add --http3 flag to buf curl which forces buf curl to use HTTP/3 as the transport.
  • Fix issue with directory inputs for v2 workspaces where the specified directory was not itself a path to a module, but contained directories with modules, and the modules would not build.
  • Stop creating empty buf.lock files when buf dep update does not find new dependencies to update and there is no existing buf.lock.
  • Update buf push to push the license file or doc file (e.g. README.md, LICENSE) in the same directory as buf.yaml if a module does not have a license file or doc file in the module's directory.
  • Fix constraints of --path flag for lint and breaking rules to avoid resolving all files within a module. This change can result in a performance improvement for large workspaces.

v1.37.0

  • Add STABLE_PACKAGE_NO_IMPORT_UNSTABLE lint rule which disallows files from stable packages to import files from unstable packages.
  • Fix plugin push failures when pushing an image built with containerd image store.

v1.36.0

  • Add --list-services and --list-methods flags to buf curl, which trigger the command to list known services or methods in the RPC schema, instead of invoking an RPC method.
  • Add clean as a top-level option in buf.gen.yaml, matching the buf generate --clean flag. If set to true, this will delete the directories, jar files, or zip files set to out for each plugin.
  • Fix git input handling of annotated tags.

... (truncated)

Changelog

Sourced from github.com/bufbuild/buf's changelog.

[v1.42.0] - 2024-09-18

  • Add support for custom lint and breaking change plugins. See our launch blog post for more details!
  • Add buf dep graph --format flag that defaults to dot, and adds the option json, to print the dependency graph in JSON format.
  • Fix bugs in buf format where trailing comments on commas in message literals were not properly propagated to the formatted proto, empty message literals were not properly indented, and compound strings in options added an extra newline before trailing commas.

[v1.41.0] - 2024-09-11

  • Add HTTP/3 support for gRPC with buf curl.
  • Fix issue where errors from protoc plugins may be overwritten when executing plugins in parallel.

[v1.40.1] - 2024-09-06

  • Fix issue with buf lint where comment ignores in the shape of // buf:lint:ignore <RULE_ID> <extra comment> were not recognized due to the extra comment.

[v1.40.0] - 2024-09-04

  • Add concept of a default lint or breaking rule, which is printed out as a property when running buf config ls-{breaking,lint}-rules. Default rules are those rules which are run if no lint or breaking rules are explicitly configured in your buf.yaml.
  • Rename DEFAULT lint rule category to STANDARD. With the concept of default rules being introduced, having a category named DEFAULT is confusing, as while it happens that all the rules in the DEFAULT lint category are also default rules, the name has become overloaded. As with all buf changes, this change is backwards-compatible: the DEFAULT lint category continues to work, and always will. We recommend changing to STANDARD, however.

[v1.39.0] - 2024-08-27

  • Fix git input handling of relative HEAD refs without branch names.
  • Add includes key to module configurations in v2 buf.yaml, accepting a list of directories.
    • If includes is specified, a proto file is considered in the module only if it is in one of the directories specified.
    • If both includes and excludes keys are specified for a module, a proto file is considered part of this module if it is contained in any of the include paths and not in any of the exclude paths.
  • Allow multiple module configurations in the same v2 buf.yaml to have the same directory path.

[v1.38.0] - 2024-08-22

  • Add --http3 flag to buf curl which forces buf curl to use HTTP/3 as the transport.
  • Fix issue with directory inputs for v2 workspaces where the specified directory was not itself a path to a module, but contained directories with modules, and the modules would not build.
  • Stop creating empty buf.lock files when buf dep update does not find new dependencies to update and there is no existing buf.lock.

... (truncated)

Commits
  • 5244a82 Release v1.42.0 (#3330)
  • 82e9594 Enable plugins by default remove BUF_BETA_PLUGINS_ENABLED (#3326)
  • 43df40a Add --format=json to buf dep graph (#3320)
  • 411778b Update bufcheck.RunnerProvider to use PluginConfig (#3328)
  • 4e2a48f Fix comments on separators and handling message literals and compound strings...
  • d688c1f Remove v1alpha1 Labels and Sync Services (#3329)
  • 26ce1b0 Make upgrade (#3324)
  • 6df73b9 Adjust end line and column expectations in lint and breaking tests (#3319)
  • e8e776e Use pre-release tag for protoreflect/v2 instead of commit-hash pseudo-tag (#3...
  • 72a0a4b Update bufimageutil test to protoprint v2 (#3314)
  • Additional commits viewable in compare view

Updates github.com/golangci/golangci-lint from 1.60.1 to 1.61.0

Release notes

Sourced from github.com/golangci/golangci-lint's releases.

v1.61.0

golangci-lint is a free and open-source project built by volunteers.

If you value it, consider supporting us, the maintainers and linter authors.

We appreciate it! ❤️

For key updates, see the changelog.

Changelog

  • e9a872629d4feda79d2fff23ddc1f410faff163e build(deps): bump github.com/Abirdcfly/dupword from 0.0.14 to 0.1.1 (#4954)
  • 2813c451edd6b75098372dbb269ffed8df3a4ec6 build(deps): bump github.com/Crocmagnon/fatcontext from 0.4.0 to 0.5.2 (#4971)
  • 48251f274a1e09fae524271662a30a47f4ddb242 build(deps): bump github.com/ckaznocha/intrange from 0.1.2 to 0.2.0 (#4996)
  • 726b8153cac6c04238264b189f5b05ec059f9330 build(deps): bump github.com/daixiang0/gci from 0.13.4 to 0.13.5 (#4975)
  • 2fcfe26fdb368ae0930bac909a0573277a6d2226 build(deps): bump github.com/go-viper/mapstructure/v2 from 2.0.0 to 2.1.0 (#4910)
  • 5fa1b681e4518b09be4ebdbe635e044cf729b8a1 build(deps): bump github.com/pelletier/go-toml/v2 from 2.2.2 to 2.2.3 (#4955)
  • a6fc686d733f339619b02de65ef4c782848eaff0 build(deps): bump github.com/quasilyte/go-ruleguard to 0fe6f58b47b1 (#4949)
  • 57fa4dad326cd24b71fccd3fb9b8fc8a2788c994 build(deps): bump github.com/ryancurrah/gomodguard from 1.3.3 to 1.3.5 (#4992)
  • 6e5dc28f52b76181f5c4f5c7d37dab20e09f59d1 build(deps): bump github.com/securego/gosec/v2 from 2.20.1-0.20240826145712-bcec04e78483 to 2.21.0 (#4981)
  • dd069d5578f3fb9eb298e5d397697c368a0e85f7 build(deps): bump github.com/securego/gosec/v2 from 2.21.0 to 2.21.1 (#4982)
  • a1d6c560de1a193a0c68ffed68cd5928ef39e884 build(deps): bump github.com/securego/gosec/v2 from 2.21.1 to 2.21.2 (#4997)
  • 98b685cc0d3dcc956eb30bd7557c4c2ecf369f54 build(deps): bump github.com/securego/gosec/v2 from ab3f6c1c83a0 to bcec04e78483 (#4960)
  • bfc52476dd7b0b5111bcc17f7e2c103cfc0a15e0 build(deps): bump github.com/tetafro/godot from 1.4.16 to 1.4.17 (#4993)
  • 04c19e6f4f8b04dae083c2923457bc911303d177 build(deps): bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 in /scripts/gen_github_action_config in the all group (#4977)
  • e905c7a3e260abe5b984e532925dfa30ffe60a5b build(deps): bump peter-evans/create-pull-request from 6 to 7 in the all group (#4978)
  • 2881c7178b62e75ac33df7747c40fabc75c62e2b build(deps): bump the all group across 4 directories with 8 updates (#4979)
  • 0275389a64bd88fd37eb5f46993a8523ce4bf2f0 feat: add junit-xml-extended format (#4918)
  • a6bd868cf0c575d7a7e6d87007cd510394c30d86 feat: exclude Swagger Codegen files (#4967)
  • 54d089d1064eb700aafade61cdb00e452fdbf5da fix: improve runtime version parsing (#4961)
  • bf4a66a07d618628f6a26609404cb5c608e99ff8 gosec: disable G407 (#4983)
  • 3797ed90c38b8471c54f003ab9ac72492c1143ec nolintlint: remove empty line in unused directive replacement (#4973)

v1.60.3

golangci-lint is a free and open-source project built by volunteers.

If you value it, consider supporting us, the maintainers and linter authors.

We appreciate it! ❤️

For key updates, see the changelog.

Changelog

  • c2e095c022a97360f7fff5d49fbc11f273be929a build(deps): bump github.com/securego/gosec/v2 from 81cda2f91fbe to ab3f6c1c83a0 (#4943)
  • f0c190436343e51e6b4dc98a368cf7bae0e5f33a feat: check that Go version use to build is greater or equals to the Go version of the project (#4938)

v1.60.2

golangci-lint is a free and open-source project built by volunteers.

If you value it, consider supporting us, the maintainers and linter authors.

... (truncated)

Changelog

Sourced from github.com/golangci/golangci-lint's changelog.

v1.61.0

  1. Enhancements
    • Add junit-xml-extended format
    • Exclude Swagger Codegen files by default
  2. Updated linters
    • dupword: from 0.0.14 to 0.1.1
    • fatcontext: from 0.4.0 to 0.5.2
    • gci: from 0.13.4 to 0.13.5 (new option no-lex-order)
    • go-ruleguard: from 0.4.2 to 0fe6f58b47b1 (fix panic with custom linters)
    • godot: from 1.4.16 to 1.4.17
    • gomodguard: from 1.3.3 to 1.3.5
    • gosec: disable temporarily G407
    • gosec: from ab3f6c1c83a0 to 2.21.2 (partially fix G115)
    • intrange: from 0.1.2 to 0.2.0
    • nolintlint: remove the empty line in the directive replacement
  3. Misc.
    • Improve runtime version parsing
  4. Documentation
    • Add additional info about typecheck

v1.60.3

  1. Updated linters
    • gosec: from 81cda2f91fbe to ab3f6c1c83a0 (fix G115 false positives)
  2. Misc.
    • Check that the Go version use to build is greater or equals to the Go version of the project

v1.60.2

  1. Updated linters
  • gofmt: update to HEAD (go1.22)
  • gofumpt: from 0.6.0 to 0.7.0
  • gosec: fix G602 analyzer
  • gosec: from 5f0084eb01a9 to 81cda2f91fbe (adds G115, G405, G406, G506, G507)
  • staticcheck: from 0.5.0 to 0.5.1
  • staticcheck: propagate Go version
  • wrapcheck: from 2.8.3 to 2.9.0
  • ⚠️ exportloopref: deprecation
Commits
  • a1d6c56 build(deps): bump github.com/securego/gosec/v2 from 2.21.1 to 2.21.2 (#4997)
  • 48251f2 build(deps): bump github.com/ckaznocha/intrange from 0.1.2 to 0.2.0 (#4996)
  • bfc5247 build(deps): bump github.com/tetafro/godot from 1.4.16 to 1.4.17 (#4993)
  • 57fa4da build(deps): bump github.com/ryancurrah/gomodguard from 1.3.3 to 1.3.5 (#4992)
  • d302a30 dev: fix nancy
  • 24e6645 docs: add additionnal info about typecheck (#4985)
  • bf4a66a gosec: disable G407 (#4983)
  • dd069d5 build(deps): bump github.com/securego/gosec/v2 from 2.21.0 to 2.21.1 (#4982)
  • 2813c45 build(deps): bump github.com/Crocmagnon/fatcontext from 0.4.0 to 0.5.2 (#4971)
  • e9a8726 build(deps): bump github.com/Abirdcfly/dupword from 0.0.14 to 0.1.1 (#4954)
  • Additional commits viewable in compare view

Updates golang.org/x/tools from 0.24.0 to 0.25.0

Commits
  • 7398f36 all: fix some symbols error in comment
  • f111c72 go/callgraph/rta: skip test on js platform
  • 9f9b7e3 gopls/internal/settings: add missing deep cloning in Options.Clone
  • ce7eed4 doc/generate: minor cleanup
  • 075ae7d go/callgraph/vta: add basic tests for range-over-func
  • 2c7aaab go/ssa: skip failing test
  • 1b5663f go/callgraph/vta: perform minor cleanups
  • 0a49883 gopls/go.mod: update the go directive to 1.23.1
  • ad366a8 go.mod: update golang.org/x dependencies
  • 4fb36d1 go/callgraph/rta: add rta analysis test case for multiple go packages
  • Additional commits viewable in compare view

Updates helm.sh/helm/v3 from 3.12.3 to 3.16.1

Release notes

Sourced from helm.sh/helm/v3's releases.

Helm 3.16.1

Helm v3.16.1 is a patch release. Users are encouraged to upgrade for the best experience. Users are encouraged to upgrade for the best experience.

This release fixes a regression that is in 3.16.0.

The community keeps growing, and we'd love to see you there!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Installation and Upgrading

Download Helm v3.16.1. The common platform binaries are here:

This release was signed with 672C 657B E06B 4B30 969C 4A57 4614 49C2 5E36 B98E and can be found at @​mattfarina keybase account. Please use the attached signatures for verifying this release using gpg.

The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with bash.

What's Next

  • 3.16.2 is the next patch release and will be on October 09, 2024
  • 3.17.0 is the next feature release and will be on January 15, 2025

Changelog

  • bumping version to 1.22.7 5a5449dc42be07001fd5771d56429132984ab3ab (Robert Sirchia)
  • Merge pull request #13327 from mattfarina/revert-11726 2cbf7fc005885cb46b60ebfcd03ff09890e43be1 (Joe Julian)

Helm v3.16.0 is a feature release. Users are encouraged to upgrade for the best experience.

The community keeps growing, and we'd love to see you there!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs

... (truncated)

Commits
  • 5a5449d bumping version to 1.22.7
  • 2cbf7fc Merge pull request #13327 from mattfarina/revert-11726
  • 0d439e1 bump version to v3.16.0
  • 1ac6fce Merge pull request #13290 from helm/dependabot/go_modules/github.com/rubenv/s...
  • a585fdb Merge pull request #13291 from helm/dependabot/go_modules/github.com/cyphar/f...
  • 0d12150 Bump github.com/cyphar/filepath-securejoin from 0.2.5 to 0.3.1
  • b1f9f0c Bump github.com/rubenv/sql-migrate from 1.6.1 to 1.7.0
  • d66d435 Merge pull request #13276 from helm/dependabot/go_modules/github.com/evanphx/...
  • c1ed2e2 Merge pull request #13286 from mattfarina/bump-sprig
  • 2dc73d8 Merge pull request #13281 from giuliocalzolari/timestamp
  • Additional commits viewable in compare view

Updates k8s.io/code-generator from 0.29.3 to 0.31.0

Commits
  • 9253cf7 Update dependencies to v0.31.0 tag
  • f74ea3c informers: add comment that Start does not block
  • 80c52b8 Call non-blocking informerFactory.Start synchronously to avoid races
  • e64302e Merge pull request #126353 from liggitt/fix-vendor
  • d9fab2a revendor dependencies
  • ec3cc88 Merge pull request #125571 from liggitt/filter-auth-02-sar
  • b4e74fb generate
  • 41a074a Merge pull request #126073 from a7i/fake-apply-scale-subresource
  • e788e07 Merge pull request #126018 from aroradaman/bump-k8s-utils
  • 100ab85 fix: fake clientset ApplyScale subresource from 'status' to 'scale'
  • Additional commits viewable in compare view

Updates sigs.k8s.io/controller-tools from 0.14.0 to 0.16.3

Release notes

Sourced from sigs.k8s.io/controller-tools's releases.

v0.16.3

Published binaries on previous v0.16.x releases were reporting an incorrect version.

What's Changed

Dependencies

New Contributors

Full Changelog: kubernetes-sigs/controller-tools@v0.16.2...v0.16.3

v0.16.2

What's Changed

Full Changelog: kubernetes-sigs/controller-tools@v0.16.1...v0.16.2

v0.16.1

What's Changed

Full Changelog: kubernetes-sigs/controller-tools@v0.16.0...v0.16.1

v0.16.0

What's Changed

... (truncated)

Commits
  • c69110a Merge pull request #1002 from davidxia/webhook-name
  • 287a105 ✨ Allow customizing generated webhook configuration's name
  • 715d27e 🐛 Allow CLI binaries to set a version (#1049)
  • 6c6bad6 Merge pull request #1052 from kubernetes-sigs/dependabot/github_actions/all-g...
  • c3c40c9 🌱 Bump peter-evans/create-pull-request
  • ed70d11 Merge pull request #1048 from kubernetes-sigs/dependabot/github_actions/all-g...
  • 46379c6 Merge pull request #1047 from kubernetes-sigs/dependabot/go_modules/all-go-mo...
  • 5bb1851 🌱 Bump tj-actions/changed-files in the all-github-actions group
  • ac2cd89 🌱 Bump github.com/onsi/gomega
  • 11f0724 Merge pull request #1045 from chrischdi/pr-rbac-fix-dedup
  • 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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot requested a review from a team as a code owner September 25, 2024 21:48
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Sep 25, 2024
Copy link

netlify bot commented Sep 25, 2024

Deploy Preview for docs-kargo-akuity-io ready!

Name Link
🔨 Latest commit 0b0d239
🔍 Latest deploy log https://app.netlify.com/sites/docs-kargo-akuity-io/deploys/66fc5a7216c2ac00085e426d
😎 Deploy Preview https://deploy-preview-2573.kargo.akuity.io
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@krancour krancour added this to the v0.9.0 milestone Sep 26, 2024
Copy link

codecov bot commented Sep 26, 2024

Codecov Report

Attention: Patch coverage is 37.50000% with 5 lines in your changes missing coverage. Please review.

Project coverage is 50.97%. Comparing base (806fa9f) to head (0b0d239).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
internal/api/list_images_v1alpha1.go 0.00% 4 Missing ⚠️
internal/api/option/runtime.go 0.00% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #2573      +/-   ##
==========================================
- Coverage   50.98%   50.97%   -0.01%     
==========================================
  Files         282      282              
  Lines       21039    21039              
==========================================
- Hits        10726    10724       -2     
- Misses       9641     9643       +2     
  Partials      672      672              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@hiddeco hiddeco force-pushed the dependabot/go_modules/hack/tools/go-minor-ec3a83d674 branch 2 times, most recently from 99c61ed to 0ff6a09 Compare September 27, 2024 19:37
@krancour krancour modified the milestones: v0.9.0, v0.10.0 Sep 30, 2024
@hiddeco hiddeco force-pushed the dependabot/go_modules/hack/tools/go-minor-ec3a83d674 branch from 0ff6a09 to 32c9cf1 Compare September 30, 2024 08:34
@hiddeco
Copy link
Contributor

hiddeco commented Sep 30, 2024

@krancour did you deliberately move this to v0.10.0 because of potential risks, or for some other reason? As it theoretically looks like it is good to go to me.

@krancour
Copy link
Member

krancour commented Oct 1, 2024

@hiddeco it was only because I didn't want to have to deal with backporting small dependency updates. If you don't mind doing that, please feel free to move it to the v0.9.0 milestone.

dependabot bot and others added 7 commits October 1, 2024 22:19
Bumps the go-minor group in /hack/tools with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/bufbuild/buf](https://github.com/bufbuild/buf) | `1.26.1` | `1.42.0` |
| [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint) | `1.60.1` | `1.61.0` |
| [golang.org/x/tools](https://github.com/golang/tools) | `0.24.0` | `0.25.0` |
| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.12.3` | `3.16.1` |
| [k8s.io/code-generator](https://github.com/kubernetes/code-generator) | `0.29.3` | `0.31.0` |
| [sigs.k8s.io/controller-tools](https://github.com/kubernetes-sigs/controller-tools) | `0.14.0` | `0.16.3` |


Updates `github.com/bufbuild/buf` from 1.26.1 to 1.42.0
- [Release notes](https://github.com/bufbuild/buf/releases)
- [Changelog](https://github.com/bufbuild/buf/blob/main/CHANGELOG.md)
- [Commits](bufbuild/buf@v1.26.1...v1.42.0)

Updates `github.com/golangci/golangci-lint` from 1.60.1 to 1.61.0
- [Release notes](https://github.com/golangci/golangci-lint/releases)
- [Changelog](https://github.com/golangci/golangci-lint/blob/master/CHANGELOG.md)
- [Commits](golangci/golangci-lint@v1.60.1...v1.61.0)

Updates `golang.org/x/tools` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/golang/tools/releases)
- [Commits](golang/tools@v0.24.0...v0.25.0)

Updates `helm.sh/helm/v3` from 3.12.3 to 3.16.1
- [Release notes](https://github.com/helm/helm/releases)
- [Commits](helm/helm@v3.12.3...v3.16.1)

Updates `k8s.io/code-generator` from 0.29.3 to 0.31.0
- [Commits](kubernetes/code-generator@v0.29.3...v0.31.0)

Updates `sigs.k8s.io/controller-tools` from 0.14.0 to 0.16.3
- [Release notes](https://github.com/kubernetes-sigs/controller-tools/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-tools/blob/main/envtest-releases.yaml)
- [Commits](kubernetes-sigs/controller-tools@v0.14.0...v0.16.3)

---
updated-dependencies:
- dependency-name: github.com/bufbuild/buf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor
- dependency-name: github.com/golangci/golangci-lint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor
- dependency-name: golang.org/x/tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor
- dependency-name: helm.sh/helm/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor
- dependency-name: k8s.io/code-generator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor
- dependency-name: sigs.k8s.io/controller-tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Hidde Beydals <[email protected]>
Signed-off-by: Hidde Beydals <[email protected]>
Signed-off-by: Hidde Beydals <[email protected]>
Signed-off-by: Hidde Beydals <[email protected]>
@hiddeco hiddeco force-pushed the dependabot/go_modules/hack/tools/go-minor-ec3a83d674 branch from 32c9cf1 to 0b0d239 Compare October 1, 2024 20:24
@hiddeco hiddeco modified the milestones: v1.0.0, v0.9.0 Oct 1, 2024
@hiddeco hiddeco enabled auto-merge October 1, 2024 20:24
@hiddeco hiddeco added this pull request to the merge queue Oct 1, 2024
Merged via the queue into main with commit 519542c Oct 1, 2024
17 of 19 checks passed
@hiddeco hiddeco deleted the dependabot/go_modules/hack/tools/go-minor-ec3a83d674 branch October 1, 2024 20:47
github-actions bot pushed a commit that referenced this pull request Oct 1, 2024
…tes (#2573)

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Hidde Beydals <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Hidde Beydals <[email protected]>
(cherry picked from commit 519542c)
@akuitybot
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport/release-0.9 dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants