Skip to content

chore(deps): Update go minor and patch #9366

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

Merged
merged 5 commits into from
Apr 4, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 2, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/dgraph-io/dgo/v240 v240.1.1-0.20250324210355-12f8ff79cd3d -> v240.2.0 age adoption passing confidence
github.com/spf13/viper v1.20.0 -> v1.20.1 age adoption passing confidence
go.etcd.io/etcd/raft/v3 v3.5.20 -> v3.5.21 age adoption passing confidence
golang.org/x/net v0.37.0 -> v0.38.0 age adoption passing confidence
google.golang.org/grpc v1.71.0 -> v1.71.1 age adoption passing confidence

Release Notes

dgraph-io/dgo (github.com/dgraph-io/dgo/v240)

v240.2.0: dgo v240.2.0

Compare Source

This version adds a new function Open that takes a connection string as an argument for creating a Dgraph Client.

What's Changed

Full Changelog: hypermodeinc/dgo@v240.1.0...v240.2.0

spf13/viper (github.com/spf13/viper)

v1.20.1

Compare Source

What's Changed

Bug Fixes 🐛

Full Changelog: spf13/viper@v1.20.0...v1.20.1

etcd-io/etcd (go.etcd.io/etcd/raft/v3)

v3.5.21

Compare Source

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.5.21

##### choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}

rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test

curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version

##### start a local etcd server
/tmp/etcd-download-test/etcd

##### write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo
macOS (Darwin)
ETCD_VER=v3.5.21

##### choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}

rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test

curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64

/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
Docker

etcd uses gcr.io/etcd-development/etcd as a primary container registry, and quay.io/coreos/etcd as secondary.

ETCD_VER=v3.5.21

rm -rf /tmp/etcd-data.tmp && mkdir -p /tmp/etcd-data.tmp && \
  docker rmi gcr.io/etcd-development/etcd:${ETCD_VER} || true && \
  docker run \
  -p 2379:2379 \
  -p 2380:2380 \
  --mount type=bind,source=/tmp/etcd-data.tmp,destination=/etcd-data \
  --name etcd-gcr-${ETCD_VER} \
  gcr.io/etcd-development/etcd:${ETCD_VER} \
  /usr/local/bin/etcd \
  --name s1 \
  --data-dir /etcd-data \
  --listen-client-urls http://0.0.0.0:2379 \
  --advertise-client-urls http://0.0.0.0:2379 \
  --listen-peer-urls http://0.0.0.0:2380 \
  --initial-advertise-peer-urls http://0.0.0.0:2380 \
  --initial-cluster s1=http://0.0.0.0:2380 \
  --initial-cluster-token tkn \
  --initial-cluster-state new \
  --log-level info \
  --logger zap \
  --log-outputs stderr

docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcd --version
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl version
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdutl version
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl endpoint health
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl put foo bar
docker exec etcd-gcr-${ETCD_VER} /usr/local/bin/etcdctl get foo
grpc/grpc-go (google.golang.org/grpc)

v1.71.1: Release 1.71.1

Compare Source

Bug Fixes

  • grpc: fix a bug causing an extra Read from the compressor if a compressed message is the same size as the limit. This could result in a panic with the built-in gzip compressor (#​8178)
  • xds: restore the behavior of reading the bootstrap config before creating the first xDS client instead of at package init time (#​8164)
  • stats/opentelemetry: use TextMapPropagator and TracerProvider from TraceOptions instead of OpenTelemetry globals (#​8166)
  • client: fix races when an http proxy is configured that could lead to deadlocks or panics (#​8195)
  • client: fix bug causing RPC failures with message "no children to pick from" when using a custom resolver that calls the deprecated NewAddress API (#​8149)
  • wrr: fix slow processing of address updates that could result in problems including RPC failures for servers with a large number of backends (#​8179)

Configuration

📅 Schedule: Branch creation - "on Wednesday" (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.

Copy link
Contributor Author

renovate bot commented Apr 2, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
go: -d flag is deprecated. -d=true is a no-op
go: downloading github.com/stretchr/testify v1.10.0
go: downloading google.golang.org/protobuf v1.36.6
go: downloading github.com/golang-jwt/jwt/v5 v5.2.2
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/spf13/cobra v1.9.1
go: downloading github.com/dgraph-io/dgo/v240 v240.2.0
go: downloading github.com/dgraph-io/simdjson-go v0.3.0
go: downloading github.com/twpayne/go-geom v1.6.0
go: downloading github.com/golang/glog v1.2.4
go: downloading github.com/dgraph-io/ristretto/v2 v2.1.0
go: downloading github.com/dgryski/go-groupvarint v0.0.0-20230630160417-2bfb7969fb3c
go: downloading github.com/dustin/go-humanize v1.0.1
go: downloading github.com/Masterminds/semver/v3 v3.3.1
go: downloading github.com/spf13/pflag v1.0.6
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/dgraph-io/badger/v4 v4.6.0
go: downloading github.com/golang/snappy v1.0.0
go: downloading go.etcd.io/etcd/raft/v3 v3.5.21
go: downloading go.opencensus.io v0.24.0
go: downloading google.golang.org/grpc v1.71.1
go: downloading github.com/spf13/viper v1.20.1
go: downloading github.com/dgraph-io/gqlparser/v2 v2.2.2
go: downloading golang.org/x/net v0.38.0
go: downloading github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da
go: downloading github.com/klauspost/compress v1.18.0
go: downloading github.com/paulmach/go.geojson v1.5.0
go: downloading github.com/go-sql-driver/mysql v1.9.1
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/docker/docker v28.0.4+incompatible
go: downloading github.com/docker/go-connections v0.5.0
go: downloading golang.org/x/mod v0.24.0
go: downloading github.com/hashicorp/vault/api v1.16.0
go: downloading github.com/gorilla/websocket v1.5.3
go: downloading github.com/minio/minio-go/v6 v6.0.57
go: downloading github.com/dgraph-io/graphql-transport-ws v0.0.0-20210511143556-2cef522f1f15
go: downloading github.com/go-jose/go-jose/v4 v4.0.5
go: downloading github.com/google/go-cmp v0.7.0
go: downloading github.com/spf13/cast v1.7.1
go: downloading github.com/dgraph-io/gqlgen v0.13.2
go: downloading golang.org/x/tools v0.31.0
go: downloading github.com/blevesearch/bleve/v2 v2.4.4
go: downloading golang.org/x/crypto v0.36.0
go: downloading golang.org/x/text v0.23.0
go: downloading github.com/viterin/vek v0.4.2
go: downloading golang.org/x/exp v0.0.0-20250305212735-054e65f0b394
go: downloading github.com/golang/geo v0.0.0-20230421003525-6adc56603217
go: downloading github.com/IBM/sarama v1.45.1
go: downloading github.com/google/codesearch v1.2.0
go: downloading github.com/xdg/scram v1.0.5
go: downloading golang.org/x/sync v0.12.0
go: downloading contrib.go.opencensus.io/exporter/jaeger v0.2.1
go: downloading contrib.go.opencensus.io/exporter/prometheus v0.4.2
go: downloading github.com/DataDog/opencensus-go-exporter-datadog v0.0.0-20220622145613-731d59e8b567
go: downloading github.com/HdrHistogram/hdrhistogram-go v1.1.2
go: downloading github.com/pkg/profile v1.7.0
go: downloading github.com/prometheus/client_golang v1.21.1
go: downloading github.com/soheilhy/cmux v0.1.5
go: downloading go.uber.org/zap v1.27.0
go: downloading golang.org/x/sys v0.31.0
go: downloading golang.org/x/term v0.30.0
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading github.com/klauspost/cpuid/v2 v2.2.9
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/gogo/protobuf v1.3.2
go: downloading github.com/golang/protobuf v1.5.4
go: downloading github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8
go: downloading github.com/fsnotify/fsnotify v1.8.0
go: downloading github.com/go-viper/mapstructure/v2 v2.2.1
go: downloading github.com/sagikazarmark/locafero v0.7.0
go: downloading github.com/spf13/afero v1.12.0
go: downloading go.opentelemetry.io/otel v1.34.0
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20250127172529-29210b9bc287
go: downloading filippo.io/edwards25519 v1.1.0
go: downloading github.com/docker/go-units v0.5.0
go: downloading github.com/moby/docker-image-spec v1.3.1
go: downloading github.com/opencontainers/image-spec v1.1.0
go: downloading github.com/distribution/reference v0.6.0
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0
go: downloading go.opentelemetry.io/otel/trace v1.34.0
go: downloading github.com/cenkalti/backoff/v4 v4.3.0
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/hashicorp/go-cleanhttp v0.5.2
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading github.com/hashicorp/go-retryablehttp v0.7.7
go: downloading github.com/hashicorp/go-rootcerts v1.0.2
go: downloading github.com/hashicorp/go-secure-stdlib/parseutil v0.1.9
go: downloading github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
go: downloading github.com/hashicorp/hcl v1.0.1-vault-7
go: downloading github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c
go: downloading golang.org/x/time v0.9.0
go: downloading github.com/json-iterator/go v1.1.12
go: downloading github.com/minio/md5-simd v1.1.2
go: downloading github.com/minio/sha256-simd v1.0.1
go: downloading github.com/agnivade/levenshtein v1.2.1
go: downloading github.com/blevesearch/bleve_index_api v1.2.1
go: downloading github.com/blevesearch/snowballstem v0.9.0
go: downloading github.com/blevesearch/go-porterstemmer v1.0.3
go: downloading github.com/blevesearch/segment v0.9.1
go: downloading github.com/blevesearch/upsidedown_store_api v1.0.2
go: downloading github.com/chewxy/math32 v1.11.1
go: downloading github.com/eapache/go-resiliency v1.7.0
go: downloading github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3
go: downloading github.com/eapache/queue v1.1.0
go: downloading github.com/jcmturner/gofork v1.7.6
go: downloading github.com/jcmturner/gokrb5/v8 v8.4.4
go: downloading github.com/pierrec/lz4/v4 v4.1.22
go: downloading github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/xdg/stringprep v1.0.3
go: downloading github.com/uber/jaeger-client-go v2.28.0+incompatible
go: downloading google.golang.org/api v0.219.0
go: downloading github.com/prometheus/statsd_exporter v0.28.0
go: downloading github.com/DataDog/datadog-go v4.8.3+incompatible
go: downloading github.com/tinylib/msgp v1.2.5
go: downloading gopkg.in/DataDog/dd-trace-go.v1 v1.71.0
go: downloading github.com/felixge/fgprof v0.9.5
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/prometheus/client_model v0.6.1
go: downloading github.com/prometheus/common v0.62.0
go: downloading github.com/prometheus/procfs v0.15.1
go: downloading go.uber.org/multierr v1.11.0
go: downloading github.com/sourcegraph/conc v0.3.0
go: downloading github.com/subosito/gotenv v1.6.0
go: downloading github.com/pelletier/go-toml/v2 v2.2.3
go: downloading github.com/google/flatbuffers v25.2.10+incompatible
go: downloading github.com/go-logr/logr v1.4.2
go: downloading go.opentelemetry.io/otel/metric v1.34.0
go: downloading github.com/Microsoft/go-winio v0.6.2
go: downloading github.com/felixge/httpsnoop v1.0.4
go: downloading github.com/hashicorp/go-sockaddr v1.0.7
go: downloading github.com/ryanuber/go-glob v1.0.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading github.com/bits-and-blooms/bitset v1.20.0
go: downloading github.com/viterin/partial v1.1.0
go: downloading github.com/jcmturner/dnsutils/v2 v2.0.0
go: downloading github.com/hashicorp/go-uuid v1.0.3
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c
go: downloading github.com/google/pprof v0.0.0-20250128161936-077ca0a936bf
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading go.opentelemetry.io/auto/sdk v1.1.0
go: downloading github.com/blevesearch/geo v0.1.20
go: downloading github.com/jcmturner/rpc/v2 v2.0.3
go: downloading github.com/jcmturner/aescts/v2 v2.0.0
go: downloading github.com/dgraph-io/dgo v1.0.0
go: github.com/hypermodeinc/dgraph/v24/dgraph/cmd/alpha imports
	github.com/dgraph-io/dgo/v240/protos/api.v25: cannot find module providing package github.com/dgraph-io/dgo/v240/protos/api.v25

@renovate renovate bot requested a review from a team as a code owner April 2, 2025 02:46
mangalaman93
mangalaman93 previously approved these changes Apr 2, 2025
@mangalaman93 mangalaman93 enabled auto-merge (squash) April 2, 2025 11:44
Copy link
Contributor Author

renovate bot commented Apr 2, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@github-actions github-actions bot added area/testing Testing related issues go Pull requests that update Go code labels Apr 2, 2025
Copy link

trunk-io bot commented Apr 2, 2025

Static BadgeStatic BadgeStatic BadgeStatic Badge

View Full Report ↗︎Docs

@mangalaman93 mangalaman93 force-pushed the renovate/go-minor-and-patch branch from 57ef451 to 33e51e6 Compare April 4, 2025 04:39
harshil-goel
harshil-goel previously approved these changes Apr 4, 2025
@mangalaman93 mangalaman93 force-pushed the renovate/go-minor-and-patch branch from 33e51e6 to f10c82d Compare April 4, 2025 05:16
@github-actions github-actions bot added the area/integrations Related to integrations with other projects. label Apr 4, 2025
@renovate renovate bot force-pushed the renovate/go-minor-and-patch branch from f10c82d to 4262582 Compare April 4, 2025 05:18
@mangalaman93 mangalaman93 force-pushed the renovate/go-minor-and-patch branch from 4262582 to cd52a55 Compare April 4, 2025 05:22
@mangalaman93 mangalaman93 merged commit 54f787c into main Apr 4, 2025
14 checks passed
@mangalaman93 mangalaman93 deleted the renovate/go-minor-and-patch branch April 4, 2025 13:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/integrations Related to integrations with other projects. area/testing Testing related issues go Pull requests that update Go code
Development

Successfully merging this pull request may close these issues.

2 participants