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

fix(deps): update all non-major gomod dependencies #925

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 10, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/alecthomas/kong v1.6.0 -> v1.7.0 age adoption passing confidence
github.com/authzed/authzed-go v1.2.0 -> v1.3.0 age adoption passing confidence
github.com/coreos/go-oidc v2.2.1+incompatible -> v2.3.0+incompatible age adoption passing confidence
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0 age adoption passing confidence
github.com/golang-migrate/migrate/v4 v4.18.1 -> v4.18.2 age adoption passing confidence
github.com/nicksnyder/go-i18n/v2 v2.4.1 -> v2.5.1 age adoption passing confidence
github.com/pashagolub/pgxmock/v4 v4.3.0 -> v4.4.0 age adoption passing confidence
github.com/testcontainers/testcontainers-go v0.34.0 -> v0.35.0 age adoption passing confidence
github.com/testcontainers/testcontainers-go/modules/postgres v0.34.0 -> v0.35.0 age adoption passing confidence
github.com/testcontainers/testcontainers-go/modules/redis v0.34.0 -> v0.35.0 age adoption passing confidence
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 -> v0.59.0 age adoption passing confidence
go.opentelemetry.io/otel v1.33.0 -> v1.34.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 -> v1.34.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 -> v1.34.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/zipkin v1.33.0 -> v1.34.0 age adoption passing confidence
go.opentelemetry.io/otel/sdk v1.33.0 -> v1.34.0 age adoption passing confidence
go.opentelemetry.io/otel/trace v1.33.0 -> v1.34.0 age adoption passing confidence
golang.org/x/net v0.33.0 -> v0.34.0 age adoption passing confidence
google.golang.org/grpc v1.69.2 -> v1.70.0 age adoption passing confidence
google.golang.org/protobuf v1.36.1 -> v1.36.4 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

alecthomas/kong (github.com/alecthomas/kong)

v1.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: alecthomas/kong@v1.6.1...v1.7.0

v1.6.1

Compare Source

What's Changed

Full Changelog: alecthomas/kong@v1.6.0...v1.6.1

authzed/authzed-go (github.com/authzed/authzed-go)

v1.3.0

Compare Source

What's Changed

Full Changelog: authzed/authzed-go@v1.2.1...v1.3.0

v1.2.1

Compare Source

What's Changed

Full Changelog: authzed/authzed-go@v1.2.0...v1.2.1

coreos/go-oidc (github.com/coreos/go-oidc)

v2.3.0+incompatible

Compare Source

go-playground/validator (github.com/go-playground/validator/v10)

v10.24.0: Release 10.24.0

Compare Source

What's Changed

The MSGV(Minimum Supported Go Version) has been bumped to v1.20 to address a security issues in the gaoling net package.

Full Changelog: go-playground/validator@v10.23.0...v10.24.0

golang-migrate/migrate (github.com/golang-migrate/migrate/v4)

v4.18.2

Compare Source

Changelog

  • e145cde Bump github.com/golang-jwt/jwt/v4 from 4.4.2 to 4.5.1
  • e22d012 Don't output sensitive information on error
  • e5a152b Drop support for Azure SQL Edge
  • 12c619e Fix CI (#​1222)
  • bc06922 Update dktest from v0.4.3 to v0.4.4
  • 7651c8a linter fixes
nicksnyder/go-i18n (github.com/nicksnyder/go-i18n/v2)

v2.5.1

Compare Source

What's Changed

Full Changelog: nicksnyder/go-i18n@v2.5.0...v2.5.1

v2.5.0

Compare Source

Highlights

Other changes

New Contributors

Full Changelog: nicksnyder/go-i18n@v2.4.1...v2.5.0

pashagolub/pgxmock (github.com/pashagolub/pgxmock/v4)

v4.4.0

Compare Source

What's Changed

Full Changelog: pashagolub/pgxmock@v4.3.0...v4.4.0

What to do next?

testcontainers/testcontainers-go (github.com/testcontainers/testcontainers-go)

v0.35.0

Compare Source

What's Changed

⚠️ Breaking Changes

The container.Terminate(ctx) method now accepts an extra variadic argument with termination options. The breaking change only affects users assigning this method to a variable, receiving a compile-time error. The rest of the users will simply satisfy the new signature with an empty slice of termination options.

The ShouldPrintBuildLog function of the ContainerRequest has been removed. Instead, a BuildLogWriter function appears, that returns the user-defined io.Writer for writing the image-build logs. In case there is no writer, and the FromDockerfile.PrintBuildLog is set to true, os.Stderr would be used.

Users of the GCloud module and the WithProjectID option must handle the error that this option now returns. This can be get at compile time, as all the functional options for container customisers must return an error.

The types and functions of the PortForwarder type are now private, as they are implementation details of the library, so there is no need for them to be exposed.

Usages of the GenericProviderOptions.DefaultNetwork field must be removed, as this field is now private. The container runtime should provide the default network under the hood.

🔒 Security

🚀 Features

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

v0.34.1

Compare Source

open-telemetry/opentelemetry-go (go.opentelemetry.io/otel)

v1.34.0: /v0.56.0/v0.10.0

Compare Source

Overview
Changed
  • Remove the notices from Logger to make the whole Logs API user-facing in go.opentelemetry.io/otel/log. (#​6167)
Fixed
  • Relax minimum Go version to 1.22.0 in various modules. (#​6073)
  • The Type name logged for the go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc client is corrected from otlphttpgrpc to otlptracegrpc. (#​6143)
  • The Type name logged for the go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlphttpgrpc client is corrected from otlphttphttp to otlptracehttp. (#​6143)
What's Changed

Configuration

📅 Schedule: Branch creation - "* 18-21 * * 5" in timezone Europe/Berlin, 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 added the deps label Jan 10, 2025
@renovate renovate bot requested a review from a team as a code owner January 10, 2025 17:59
Copy link
Contributor Author

renovate bot commented Jan 10, 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):

  • 8 additional dependencies were updated

Details:

Package Change
github.com/envoyproxy/protoc-gen-validate v1.1.0 -> v1.2.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.26.0
github.com/samber/lo v1.47.0 -> v1.49.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/protobuf v1.36.1 -> v1.36.4
File name: libs/common/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):

  • 10 additional dependencies were updated

Details:

Package Change
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.25.1
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
go.opentelemetry.io/proto/otlp v1.4.0 -> v1.5.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
File name: libs/hwauthz/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):

  • 22 additional dependencies were updated

Details:

Package Change
github.com/coreos/go-oidc v2.2.1+incompatible -> v2.3.0+incompatible
github.com/envoyproxy/protoc-gen-validate v1.1.0 -> v1.2.1
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.26.0
github.com/nicksnyder/go-i18n/v2 v2.4.1 -> v2.5.1
github.com/samber/lo v1.47.0 -> v1.49.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 -> v0.59.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/zipkin v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/sdk v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/trace v1.33.0 -> v1.34.0
go.opentelemetry.io/proto/otlp v1.4.0 -> v1.5.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/protobuf v1.36.1 -> v1.36.4
File name: libs/hwdb/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):

  • 7 additional dependencies were updated

Details:

Package Change
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
File name: libs/hwes/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/coreos/go-oidc v2.2.1+incompatible -> v2.3.0+incompatible
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.25.1
github.com/nicksnyder/go-i18n/v2 v2.4.1 -> v2.5.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 -> v0.59.0
go.opentelemetry.io/otel v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/zipkin v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/sdk v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/trace v1.33.0 -> v1.34.0
go.opentelemetry.io/proto/otlp v1.4.0 -> v1.5.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/grpc v1.69.2 -> v1.70.0
File name: libs/hwtesting/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):

  • 23 additional dependencies were updated

Details:

Package Change
github.com/coreos/go-oidc v2.2.1+incompatible -> v2.3.0+incompatible
github.com/envoyproxy/protoc-gen-validate v1.1.0 -> v1.2.1
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.26.0
github.com/nicksnyder/go-i18n/v2 v2.4.1 -> v2.5.1
github.com/samber/lo v1.47.0 -> v1.49.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 -> v0.59.0
go.opentelemetry.io/otel v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/zipkin v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/sdk v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/trace v1.33.0 -> v1.34.0
go.opentelemetry.io/proto/otlp v1.4.0 -> v1.5.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/protobuf v1.36.1 -> v1.36.4
File name: libs/hwutil/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):

  • 3 additional dependencies were updated

Details:

Package Change
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/sys v0.28.0 -> v0.29.0
File name: libs/telemetry/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):

  • 6 additional dependencies were updated

Details:

Package Change
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
File name: services/property-svc/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):

  • 26 additional dependencies were updated

Details:

Package Change
github.com/authzed/authzed-go v1.2.0 -> v1.3.0
github.com/coreos/go-oidc v2.2.1+incompatible -> v2.3.0+incompatible
github.com/envoyproxy/protoc-gen-validate v1.1.0 -> v1.2.1
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.26.0
github.com/nicksnyder/go-i18n/v2 v2.4.1 -> v2.5.1
github.com/samber/lo v1.47.0 -> v1.49.0
github.com/testcontainers/testcontainers-go v0.34.0 -> v0.35.0
github.com/testcontainers/testcontainers-go/modules/postgres v0.34.0 -> v0.35.0
github.com/testcontainers/testcontainers-go/modules/redis v0.34.0 -> v0.35.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 -> v0.59.0
go.opentelemetry.io/otel v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/zipkin v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/sdk v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/trace v1.33.0 -> v1.34.0
go.opentelemetry.io/proto/otlp v1.4.0 -> v1.5.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
File name: services/tasks-svc/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):

  • 24 additional dependencies were updated

Details:

Package Change
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
github.com/authzed/authzed-go v1.2.0 -> v1.3.0
github.com/coreos/go-oidc v2.2.1+incompatible -> v2.3.0+incompatible
github.com/envoyproxy/protoc-gen-validate v1.1.0 -> v1.2.1
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.26.0
github.com/samber/lo v1.47.0 -> v1.49.0
github.com/testcontainers/testcontainers-go v0.34.0 -> v0.35.0
github.com/testcontainers/testcontainers-go/modules/postgres v0.34.0 -> v0.35.0
github.com/testcontainers/testcontainers-go/modules/redis v0.34.0 -> v0.35.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 -> v0.59.0
go.opentelemetry.io/otel v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/zipkin v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/sdk v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/trace v1.33.0 -> v1.34.0
go.opentelemetry.io/proto/otlp v1.4.0 -> v1.5.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
File name: services/updates-svc/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):

  • 28 additional dependencies were updated

Details:

Package Change
github.com/authzed/authzed-go v1.2.0 -> v1.3.0
github.com/coreos/go-oidc v2.2.1+incompatible -> v2.3.0+incompatible
github.com/envoyproxy/protoc-gen-validate v1.1.0 -> v1.2.1
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.26.0
github.com/nicksnyder/go-i18n/v2 v2.4.1 -> v2.5.1
github.com/samber/lo v1.47.0 -> v1.49.0
github.com/testcontainers/testcontainers-go v0.34.0 -> v0.35.0
github.com/testcontainers/testcontainers-go/modules/postgres v0.34.0 -> v0.35.0
github.com/testcontainers/testcontainers-go/modules/redis v0.34.0 -> v0.35.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 -> v0.59.0
go.opentelemetry.io/otel v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/zipkin v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/sdk v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/trace v1.33.0 -> v1.34.0
go.opentelemetry.io/proto/otlp v1.4.0 -> v1.5.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/grpc v1.69.2 -> v1.70.0
google.golang.org/protobuf v1.36.1 -> v1.36.4
File name: services/user-svc/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):

  • 24 additional dependencies were updated

Details:

Package Change
github.com/authzed/authzed-go v1.2.0 -> v1.3.0
github.com/envoyproxy/protoc-gen-validate v1.1.0 -> v1.2.1
github.com/gabriel-vasile/mimetype v1.4.3 -> v1.4.8
github.com/go-playground/validator/v10 v10.23.0 -> v10.24.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.26.0
github.com/samber/lo v1.47.0 -> v1.49.0
github.com/testcontainers/testcontainers-go v0.34.0 -> v0.35.0
github.com/testcontainers/testcontainers-go/modules/postgres v0.34.0 -> v0.35.0
github.com/testcontainers/testcontainers-go/modules/redis v0.34.0 -> v0.35.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 -> v0.59.0
go.opentelemetry.io/otel v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/exporters/zipkin v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/metric v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/sdk v1.33.0 -> v1.34.0
go.opentelemetry.io/otel/trace v1.33.0 -> v1.34.0
go.opentelemetry.io/proto/otlp v1.4.0 -> v1.5.0
golang.org/x/crypto v0.31.0 -> v0.32.0
golang.org/x/net v0.33.0 -> v0.34.0
golang.org/x/sys v0.28.0 -> v0.29.0
google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/genproto/googleapis/rpc v0.0.0-20241209162323-e6fa225c2576 -> v0.0.0-20250115164207-1a7da9e5054f
File name: spicedb/migrations/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):

  • 10 additional dependencies were updated

Details:

Package Change
github.com/envoyproxy/protoc-gen-validate v1.1.0 -> v1.2.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 -> v2.26.0
github.com/samber/lo v1.47.0 -> v1.49.0
golang.org/x/net v0.31.0 -> v0.34.0
golang.org/x/sys v0.27.0 -> v0.29.0
golang.org/x/text v0.20.0 -> v0.21.0
google.golang.org/genproto/googleapis/api v0.0.0-20241118233622-e639e219e697 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 -> v0.0.0-20250115164207-1a7da9e5054f
google.golang.org/grpc v1.68.0 -> v1.70.0
google.golang.org/protobuf v1.35.2 -> v1.36.4

@renovate renovate bot requested review from FoseFx and PaulKalho and removed request for a team January 10, 2025 17:59
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch 4 times, most recently from 4ef7a5c to a6ba0b9 Compare January 19, 2025 08:57
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch 6 times, most recently from 6c13224 to 974e135 Compare January 27, 2025 21:25
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch from 974e135 to 9102a2e Compare January 30, 2025 04:47
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch from 9102a2e to 9ec645f Compare February 2, 2025 21:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants