Skip to content

Bump the all-minor-patch group across 1 directory with 7 updates - #172

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/all-minor-patch-ef8a090803
Open

Bump the all-minor-patch group across 1 directory with 7 updates#172
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/all-minor-patch-ef8a090803

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-minor-patch group with 4 updates in the / directory: github.com/container-storage-interface/spec, github.com/kubernetes-csi/csi-test/v5, github.com/sirupsen/logrus and google.golang.org/grpc.

Updates github.com/container-storage-interface/spec from 1.12.0 to 1.13.0

Release notes

Sourced from github.com/container-storage-interface/spec's releases.

v1.13.0

Breaking changes/Deprecations:

  • None

Additions:

Clarifications/Corrections/Fixes:

  • #587 - Add note about possibly lower available capacity on MountVolume volumes by @​nixpanic
  • #563 - describe ABORTED as error message for CreateVolumeGroupSnapshot by @​nixpanic
  • #605 - Fix RESOURCE_EXHAUSTED error code from 13 to 8 by @​nixpanic

Dependencies:

  • #602/#607 - Bump golang from 1.23 to 1.25

New Contributors

Full Changelog: container-storage-interface/spec@v1.12.0...v1.13.0

v1.13.0-rc1

No release notes provided.

Commits
  • b516e92 Merge pull request #607 from container-storage-interface/dependabot/go_module...
  • 3c04186 Bump golang.org/x/net from 0.48.0 to 0.55.0
  • ad56747 Merge pull request #606 from mdzraf/SnapTopologyPOC
  • 5334f34 Introducing Snapshot Topology
  • cd9e7ad Merge pull request #604 from gnufied/implement-volume-health
  • 8e06851 Add documentation about reserved fields
  • 6f80119 Update wording for DATA_LOSS and capabilities
  • 72e2e56 Update the CSI spec to address the review comments
  • 0c33790 Add volume health proposal
  • e74e0e8 Fix RESOURCE_EXHAUSTED error code from 13 to 8 (#605)
  • Additional commits viewable in compare view

Updates github.com/kubernetes-csi/csi-test/v5 from 5.4.0 to 5.6.0

Release notes

Sourced from github.com/kubernetes-csi/csi-test/v5's releases.

v5.6.0

Supported CSI spec versions

1.13.0

Full Changelog

https://github.com/kubernetes-csi/csi-test/blob/v5.6.0/CHANGELOG/CHANGELOG-5.6.md

v5.5.0

Supported CSI spec versions

1.12.0

Full Changelog

https://github.com/kubernetes-csi/csi-test/blob/v5.5.0/CHANGELOG/CHANGELOG-5.5.md

Commits
  • 95f23ec Merge pull request #624 from xing-yang/changelog_5.6
  • a166c1a Add changelog for v5.6.0
  • f80c1ba Merge pull request #623 from kubernetes-csi/dependabot/go_modules/google.gola...
  • 2931d1c Bump google.golang.org/grpc from 1.82.0 to 1.83.1
  • cc77609 Merge pull request #622 from kubernetes-csi/dependabot/go_modules/github.com/...
  • e6900de Merge pull request #621 from kubernetes-csi/dependabot/go_modules/google.gola...
  • 52db054 Merge pull request #620 from dlanov/fix-configurable-list-volumes-token
  • 6185bcc Bump github.com/onsi/ginkgo/v2 from 2.32.0 to 2.32.1
  • 2521ef9 Bump google.golang.org/protobuf from 1.36.11 to 1.36.12
  • 3711c87 Make invalid ListVolumes token configurable
  • Additional commits viewable in compare view

Updates github.com/sirupsen/logrus from 1.9.4 to 1.10.2

Release notes

Sourced from github.com/sirupsen/logrus's releases.

v1.10.2

Logrus v1.10.2

This is a small maintenance release that updates github.com/stretchr/testify to v1.12.1, removing the legacy gopkg.in/yaml.v3 dependency from Logrus' dependency graph. There are no functional changes in this release.

Dependency Changes

  • update github.com/stretchr/testify to v1.12.1

Full Changelog: sirupsen/logrus@v1.10.1...v1.10.2

v1.10.1

Logrus v1.10.1

This patch release fixes two issues in field formatting and handling:

  • Fix a regression introduced in v1.10.0 where TextFormatter could panic when formatting nil or panicking error and fmt.Stringer values.
  • Allow function-backed values implementing error to be used with WithError, WithField, and WithFields.

Dependency Changes

  • update github.com/stretchr/testify to v1.12.0

Full Changelog: sirupsen/logrus@v1.10.0...v1.10.1

v1.10.0

Logrus v1.10.0

This release focuses on substantial performance improvements, concurrency correctness, and better interoperability with modern Go logging APIs.

🚀 Performance

Major improvements across TextFormatter, entry handling, and common logger paths:

  • ~17% lower geomean runtime across the benchmark suite
  • ~27% higher geomean formatter throughput
  • Common enabled logging paths are ~30–44% faster
  • WithError is ~40% faster
  • Chained fields are ~46% faster
  • TextFormatter paths are up to ~40% faster
  • Allocation counts are reduced by ~25–74% across measured TextFormatter cases, with the largest reductions in colored output

The improvements also show up in complete logger paths:

  • Logger + TextFormatter is ~31% faster, with ~24% fewer allocations
  • Logger + JSONFormatter is ~21% faster, with ~10% fewer allocations

... (truncated)

Changelog

Sourced from github.com/sirupsen/logrus's changelog.

1.10.2

Changed:

  • Update github.com/stretchr/testify to v1.12.1, removing the legacy gopkg.in/yaml.v3 dependency.

1.10.1

Fixes:

  • Fix a regression introduced in v1.10.0 where TextFormatter could panic when formatting nil or panicking error and fmt.Stringer values.
  • Allow function-backed implementations of error as field values.

1.10.0

Fixes:

  • Fix reentrant logging deadlocks in formatter paths.
  • Fix race conditions in formatter and entry handling.
  • Fix generic Log, Logf, Logln, and LogFn methods unexpectedly panicking when called with PanicLevel. Use the corresponding Panic methods when panic behavior is desired.
  • Improve concurrency safety around formatter and hook access.

Features:

  • Add slog hook for forwarding Logrus entries to log/slog.
  • Add slog.Handler for forwarding log/slog records to a Logrus logger, including levels, fields, groups, context, time, and optional caller reporting. The hook and handler can also be combined to help migrate between Logrus and log/slog.
  • Add minimal, composable logging interfaces for each log level. This enables consumers to depend on narrower interfaces, making it easier to substitute or adapt logging implementations.
  • Allow Entry.Caller to be set explicitly and preserve it across derived entries, enabling custom caller detection without Logrus overwriting caller information when ReportCaller is enabled.

Changed:

  • Raise minimum supported Go version to 1.23.
  • TextFormatter now renders []byte values as raw/quoted strings instead of slice-of-ints.
  • TextFormatter now uses distinct dimmed colors for debug and trace output.
  • TextFormatter now automatically enables colors on Windows terminals with ANSI support, matching the behavior on other platforms.
  • Entry.HasCaller is now deprecated in favor of checking Entry.Caller directly.
  • Deprecated MutexWrap, which was unintentionally exposed as public API. It remains available as an alias for compatibility but should not be used

... (truncated)

Commits
  • 6d6a132 Merge pull request #1586 from thaJeztah/prepare_v1.10.2
  • 4f94653 update changelog for v1.10.2
  • 87434bb Merge pull request #1585 from thaJeztah/bump_testify
  • e7d2120 chore(deps): bump github.com/stretchr/testify v1.12.1
  • 8b673a9 Merge pull request #1583 from thaJeztah/release_1.10.1
  • 0b920ad Merge pull request #1584 from thaJeztah/more_coverage
  • 5e20694 TextFormatter: cover nil pointer method receivers
  • 8312732 update changelog for v1.10.1
  • e987a40 Merge pull request #1582 from thaJeztah/panic_handler
  • 17d574b TextFormatter: recover panics from Error and String methods
  • Additional commits viewable in compare view

Updates github.com/stretchr/testify from 1.11.1 to 1.12.1

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.12.1

This is the first release which has the minimum dependencies practical in testify v1. The last remaining dependencies are github.com/stretchr/objx which itself has no dependencies, and go.yaml.in/yaml/v3. Removing objx would require v2, it cannot be vendored. Removing YAML would require vendoring the yaml library, which would do more harm than good. It's better to become aware of vulnerabilities in the official yaml package than to attempt to maintain our own.

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.12.0...v1.12.1

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.12.0...v1.12.1

v1.12.0

What's Changed

Functional Changes

Fixes

Documentation, Build & CI

... (truncated)

Commits
  • 959dbda Merge pull request #1935 from harryzcy/yaml-update
  • 9bb7176 Update go.yaml.in/yaml/v3 to v3.0.5
  • 001eb79 Merge pull request #1905 from Kentzo/patch-1
  • ad40f38 Merge pull request #1906 from stretchr/dependabot/github_actions/actions/chec...
  • 3bae017 build(deps): bump actions/checkout from 6.0.2 to 6.0.3
  • f8c01f3 mock: Mock.Return does not exist anymore
  • 12f8b56 Merge pull request #1563 from stretchr/make-AssertionFunc-types-aliases
  • a11649e assert: make *AssertionFunc type just aliases
  • dc20f41 Merge pull request #1890 from stretchr/dolmen/codegen-modernize
  • 098f8d7 _codegen: use strings.Builder
  • Additional commits viewable in compare view

Updates golang.org/x/sys from 0.45.0 to 0.46.0

Commits

Updates google.golang.org/grpc from 1.83.1 to 1.83.2

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.83.2

Security

  • server: Reject requests missing both :authority and Host headers with HTTP 400 and status Internal. (grpc/grpc-go#9365)
Commits

Updates google.golang.org/protobuf from 1.36.11 to 1.36.12

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Aug 24, 2026
Bumps the all-minor-patch group with 4 updates in the / directory: [github.com/container-storage-interface/spec](https://github.com/container-storage-interface/spec), [github.com/kubernetes-csi/csi-test/v5](https://github.com/kubernetes-csi/csi-test), [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus) and [google.golang.org/grpc](https://github.com/grpc/grpc-go).


Updates `github.com/container-storage-interface/spec` from 1.12.0 to 1.13.0
- [Release notes](https://github.com/container-storage-interface/spec/releases)
- [Commits](container-storage-interface/spec@v1.12.0...v1.13.0)

Updates `github.com/kubernetes-csi/csi-test/v5` from 5.4.0 to 5.6.0
- [Release notes](https://github.com/kubernetes-csi/csi-test/releases)
- [Commits](kubernetes-csi/csi-test@v5.4.0...v5.6.0)

Updates `github.com/sirupsen/logrus` from 1.9.4 to 1.10.2
- [Release notes](https://github.com/sirupsen/logrus/releases)
- [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md)
- [Commits](sirupsen/logrus@v1.9.4...v1.10.2)

Updates `github.com/stretchr/testify` from 1.11.1 to 1.12.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.11.1...v1.12.1)

Updates `golang.org/x/sys` from 0.45.0 to 0.46.0
- [Commits](golang/sys@v0.45.0...v0.46.0)

Updates `google.golang.org/grpc` from 1.83.1 to 1.83.2
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.83.1...v1.83.2)

Updates `google.golang.org/protobuf` from 1.36.11 to 1.36.12

---
updated-dependencies:
- dependency-name: github.com/container-storage-interface/spec
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: github.com/kubernetes-csi/csi-test/v5
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: github.com/sirupsen/logrus
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: golang.org/x/sys
  dependency-version: 0.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: google.golang.org/grpc
  dependency-version: 1.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-minor-patch
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/all-minor-patch-ef8a090803 branch from 16b23db to 4d874de Compare September 2, 2026 15:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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.

0 participants