Skip to content
This repository was archived by the owner on Sep 5, 2025. It is now read-only.

chore(deps): Update go minor and patch - #115

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/go-minor-and-patch
Closed

chore(deps): Update go minor and patch#115
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/go-minor-and-patch

Conversation

@renovate

@renovaterenovateBot commented Jul 23, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

PackageChangeAgeConfidenceTypeUpdate
github.com/dgraph-io/badger/v4v4.7.0 -> v4.8.0ageconfidencerequireminor
github.com/dgraph-io/dgo/v2504a519e5 -> 3d8e767requiredigest
github.com/dgraph-io/ristretto/v2v2.2.0 -> v2.3.0ageconfidencerequireminor
github.com/hypermodeinc/dgraph/v25v25.0.0-preview6 -> v25.0.0-split-vector3ageconfidencerequirepatch
github.com/stretchr/testifyv1.10.0 -> v1.11.1ageconfidencerequireminor
google.golang.org/grpcv1.73.0 -> v1.75.0ageconfidencerequireminor
google.golang.org/protobufv1.36.6 -> v1.36.8ageconfidencerequirepatch

Release Notes

dgraph-io/badger (github.com/dgraph-io/badger/v4)

v4.8.0: Badger v4.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: dgraph-io/badger@v4.7.0...v4.8.0

dgraph-io/ristretto (github.com/dgraph-io/ristretto/v2)

v2.3.0: Ristretto v2.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: dgraph-io/ristretto@v2.2.0...v2.3.0

hypermodeinc/dgraph (github.com/hypermodeinc/dgraph/v25)

v25.0.0-split-vector3

Compare Source

v25.0.0-split-vector2

Compare Source

v25.0.0-split-vector

Compare Source

v25.0.0-shingles5

Compare Source

v25.0.0-shingles4

Compare Source

v25.0.0-shingles3

Compare Source

v25.0.0-shingles2

Compare Source

v25.0.0-shingles

Compare Source

stretchr/testify (github.com/stretchr/testify)

v1.11.1

Compare Source

This release fixes #​1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.

What's Changed

Full Changelog: stretchr/testify@v1.11.0...v1.11.1

v1.11.0

Compare Source

What's Changed

Functional Changes

v1.11.0 Includes a number of performance improvements.

Fixes
Documentation, Build & CI

New Contributors

Full Changelog: stretchr/testify@v1.10.0...v1.11.0

grpc/grpc-go (google.golang.org/grpc)

v1.75.0: Release 1.75.0

Compare Source

Behavior Changes

  • xds: Remove support for GRPC_EXPERIMENTAL_XDS_FALLBACK environment variable. Fallback support can no longer be disabled. (#​8482)
  • stats: Introduce DelayedPickComplete event, a type alias of PickerUpdated. (#​8465)
    • This (combined) event will now be emitted only once per call, when a transport is successfully selected for the attempt.
    • OpenTelemetry metrics will no longer have multiple "Delayed LB pick complete" events in Go, matching other gRPC languages.
    • A future release will delete the PickerUpdated symbol.
  • credentials: Properly apply grpc.WithAuthority as the highest-priority option for setting authority, above the setting in the credentials themselves. (#​8488)
    • Now that this WithAuthority is available, the credentials should not be used to override the authority.
  • round_robin: Randomize the order in which addresses are connected to in order to spread out initial RPC load between clients. (#​8438)
  • server: Return status code INTERNAL when a client sends more than one request in unary and server streaming RPC. (#​8385)
    • This is a behavior change but also a bug fix to bring gRPC-Go in line with the gRPC spec.

New Features

  • dns: Add an environment variable (GRPC_ENABLE_TXT_SERVICE_CONFIG) to provide a way to disable TXT lookups in the DNS resolver (by setting it to false). By default, TXT lookups are enabled, as they were previously. (#​8377)

Bug Fixes

  • xds: Fix regression preventing empty node IDs in xDS bootstrap configuration. (#​8476)
  • xds: Fix possible panic when certain invalid resources are encountered. (#​8412)
  • xdsclient: Fix a rare panic caused by processing a response from a closed server. (#​8389)
  • stats: Fix metric unit formatting by enclosing non-standard units like call and endpoint in curly braces to comply with UCUM and gRPC OpenTelemetry guidelines. (#​8481)
  • xds: Fix possible panic when clusters are removed from the xds configuration. (#​8428)
  • xdsclient: Fix a race causing "resource doesn not exist" when rapidly subscribing and unsubscribing to the same resource. (#​8369)
  • client: When determining the authority, properly percent-encode (if needed, which is unlikely) when the target string omits the hostname and only specifies a port (grpc.NewClient(":<port-number-or-name>")). (#​8488)

v1.74.2: Release 1.74.2

Compare Source

New Features

  • grpc: introduce new DialOptions and ServerOptions (WithStaticStreamWindowSize, WithStaticConnWindowSize, StaticStreamWindowSize, StaticConnWindowSize) that force fixed window sizes for all HTTP/2 connections. By default, gRPC uses dynamic sizing of these windows based upon a BDP estimation algorithm. The existing options (WithInitialWindowSize, etc) also disable BDP estimation, but this behavior will be changed in a following release. (#​8283)

API Changes

  • balancer: add ExitIdle method to Balancer interface. Earlier, implementing this method was optional. (#​8367)

Behavior Changes

  • xds: Remove the GRPC_EXPERIMENTAL_ENABLE_LEAST_REQUEST environment variable that allows disabling the least request balancer with xDS. Least request was made available by default with xDS in v1.72.0. (#​8248)
  • server: allow 0s grpc-timeout header values, which older gRPC-Java versions could send. This restores the behavior of grpc-go before v1.73.0. (#​8439)

Bug Fixes

  • googledirectpath: avoid logging the error message Attempt to set a bootstrap configuration... when creating multiple directpath channels. (#​8419)

Performance Improvements

  • transport: reduce heap allocations by pooling objects and avoiding method-to-closure conversions. (#​8361)
  • transport: reduce heap allocations by re-using mem.Reader objects. (#​8360)

Documentation

  • examples: add examples to demonstrate enabling experimental metrics using the OpenTelemetry plugin. (#​8388)

v1.74.1: Release 1.74.1

Compare Source

Version 1.74.1 retracts release v1.74.0 and itself. Release 1.74.0 was accidentally tagged on the wrong commit and should not be used. Version 1.73.0 should be used until 1.74.2 is released.

v1.74.0: Release 1.74.0

Compare Source

Release 1.74.0 was accidentally tagged on the wrong commit and should not be used. Version 1.73.0 should be used until 1.74.1 is released.

protocolbuffers/protobuf-go (google.golang.org/protobuf)

v1.36.8

Compare Source

Maintenance:

CL/696316: all: set Go language version to Go 1.23
CL/696315: types: regenerate using latest protobuf v32 release

v1.36.7

Compare Source

Maintenance / optimizations:

CL/683955: encoding/protowire: micro-optimize SizeVarint (-20% on Intel)
CL/674055: internal/impl: remove unnecessary atomic access for non-lazy lists
CL/674015: impl: remove unnecessary nil check from presence.Present
CL/673495: types/descriptorpb: regenerate using latest protobuf v31 release
CL/670516: cmd/protoc-gen-go: centralize presence and lazy logic into filedesc
CL/670515: internal: move usePresenceForField to internal/filedesc
CL/670275: internal/impl: clean up usePresenceForField() (no-op)


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 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 becomes conflicted, 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
renovateBot requested a review from a teamJuly 23, 2025 17:25
@renovate
renovateBotforce-pushed the renovate/go-minor-and-patch branch from de592e6 to a5c2258CompareJuly 25, 2025 19:32
@renovate

renovateBot commented Jul 25, 2025

Copy link
Copy Markdown
ContributorAuthor

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

  • 9 additional dependencies were updated

Details:

PackageChange
go.opentelemetry.io/otelv1.36.0 -> v1.37.0
go.opentelemetry.io/otel/metricv1.36.0 -> v1.37.0
go.opentelemetry.io/otel/sdkv1.36.0 -> v1.37.0
go.opentelemetry.io/otel/tracev1.36.0 -> v1.37.0
google.golang.org/genproto/googleapis/apiv0.0.0-20250519155744-55703ea1f237 -> v0.0.0-20250707201910-8d1bb00bc6a7
github.com/go-jose/go-jose/v4v4.1.0 -> v4.1.1
golang.org/x/expv0.0.0-20250606033433-dcc06ee1d476 -> v0.0.0-20250620022241-b7579e27df2b
golang.org/x/sysv0.33.0 -> v0.35.0
google.golang.org/genproto/googleapis/rpcv0.0.0-20250519155744-55703ea1f237 -> v0.0.0-20250707201910-8d1bb00bc6a7

@renovate
renovateBotforce-pushed the renovate/go-minor-and-patch branch from a5c2258 to 67288f4CompareAugust 2, 2025 10:51
@renovate
renovateBotforce-pushed the renovate/go-minor-and-patch branch 2 times, most recently from bacaf49 to ed6d2e5CompareAugust 13, 2025 16:58
@renovate
renovateBotforce-pushed the renovate/go-minor-and-patch branch 6 times, most recently from 0a73edf to 3ccc42cCompareAugust 24, 2025 17:28
@renovate
renovateBotforce-pushed the renovate/go-minor-and-patch branch from 3ccc42c to e94ad1aCompareAugust 31, 2025 10:00
@renovate
renovateBotforce-pushed the renovate/go-minor-and-patch branch from e94ad1a to 03645fdCompareSeptember 3, 2025 10:06
Sign up for freeto subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@ryanfoxtyler