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 #800

Merged
merged 2 commits into from
Sep 11, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 30, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/authzed/authzed-go v0.10.1 -> v0.15.0 age adoption passing confidence require minor
github.com/dapr/dapr v1.14.1 -> v1.14.2 age adoption passing confidence require patch
github.com/go-playground/validator/v10 v10.22.0 -> v10.22.1 age adoption passing confidence require patch
github.com/jackc/pgx/v5 v5.6.0 -> v5.7.1 age adoption passing confidence require minor
github.com/ory/client-go v1.14.3 -> v1.14.5 age adoption passing confidence require patch
github.com/pashagolub/pgxmock/v4 v4.2.0 -> v4.3.0 age adoption passing confidence require minor
go (source) 1.23.0 -> 1.23.1 age adoption passing confidence toolchain patch
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 -> v0.54.0 age adoption passing confidence require minor
go.opentelemetry.io/otel v1.28.0 -> v1.30.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 -> v1.30.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 -> v1.30.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/zipkin v1.28.0 -> v1.30.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk v1.28.0 -> v1.30.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0 age adoption passing confidence require minor
golang.org/x/net v0.28.0 -> v0.29.0 age adoption passing confidence require minor
golang.org/x/oauth2 v0.22.0 -> v0.23.0 age adoption passing confidence require minor
golang.org/x/text v0.17.0 -> v0.18.0 age adoption passing confidence require minor
google.golang.org/grpc v1.65.0 -> v1.66.0 age adoption passing confidence require minor

Release Notes

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

v0.15.0

Compare Source

What's Changed

Full Changelog: authzed/authzed-go@v0.14.0...v0.15.0

v0.14.0

Compare Source

What's Changed

Full Changelog: authzed/authzed-go@v0.13.0...v0.14.0

v0.13.0

Compare Source

What's Changed

Full Changelog: authzed/authzed-go@v0.12.0...v0.13.0

v0.12.0

Compare Source

What's Changed

Full Changelog: authzed/authzed-go@v0.11.1...v0.12.0

v0.11.1

Compare Source

What's Changed

Full Changelog: authzed/authzed-go@v0.11.0...v0.11.1

v0.11.0

Compare Source

What's Changed

New Contributors

Full Changelog: authzed/authzed-go@v0.10.1...v0.11.0

dapr/dapr (github.com/dapr/dapr)

v1.14.2: Dapr Runtime v1.14.2

Compare Source

Dapr 1.14.2
Fix Memory Leak when running Workflows
Problem

When using workflows, daprd would increase in memory consumption indefinitely, eventually causing daprd to crash from a Out Of Memory Kill (OOM Kill),

Impact

Daprd would consume extra resources from the host, and periodically become unavailable and disrupt running tasks.

Root cause

The actor runtime in Daprd was not releasing memory of workflow actors, and the associated workflow state (history, inbox, etc.).

Solution

The actor runtime now correctly releases the workflow state once that workflow has reached a terminal state.

Fix nil map error on Placement Service state restore from an older version
Problem

When a Placement Service instance using on disk logs was upgraded to 1.14 in some cases we would get a nil map error and the instance would not start.

Impact

Dapr Placement Service instance would not start.

Root cause

Restoring the old format would override the state saved in Raft with a struct that wasn't properly initialised.

Solution

Initialize the struct properly when restoring the old format.

Fix non-URL encoded Kafka headers causing event delivery to fail over HTTP
Problem

When Kafka headers are present that are not URL encoded, the event delivery to the app will fail with a retriable error.

Impact

Messages cannot be delivered to the app.

Root cause

Lack of URL encoding on header values from Kafka.

Solution

Add URL encoding to Kafka headers.

Fix AWS Secret Manager and Parameter Store initialization
Problem

If users had IAM policies in place that only allowed access to specific secrets, the initialization of the AWS secret manager and parameter store components would fail.

Impact

Components could not be initialized.

Root cause

There was a redundant check in initialization that tried to read a random secret which caused the init to fail if a policy was present to only allow reading specific secrets.

Solution

The redundant check was removed.

Fix Kafka Avro validation for null values
Problem

When publishing a message containing a null byte array with Kafka and Avro validation enabled, the message would be rejected when it shouldn't be.

Impact

A message could not be sent.

Root cause

There was a missing validation logic for null byte arrays that would allow the message to continue processing.

Solution

The missing validation logic was added.

Fix Kafka edge case of lost messages upon process termination
Problem

In certain cases, Dapr would drop a Kafka message when it should have been retried if the daprd process is abruptly terminated.

Impact

A message would not be retried upon failure.

Root cause

Message processing logic moved on to process the next message instead of exiting when the session context was done.

Solution

The code was changed to handle session context exiting prior to processing the next message.

Fix Outbox not sending messages to the user topic
Problem

If outbox was being used and a publisher didn't have an app channel open or the subscriber didn't have access to the transactional state store, then outbox messages would not be published.

Impact

Outbox messages could not be sent.

Root cause

Faulty logic that required Dapr to have an app channel in order to subscribe to the internal topics.

Solution

Enable Dapr to subscribe to internal topics without needing an app channel.

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

v10.22.1: Release 10.22.1

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.22.0...v10.22.1

jackc/pgx (github.com/jackc/pgx/v5)

v5.7.1

Compare Source

v5.7.0

Compare Source

ory/client-go (github.com/ory/client-go)

v1.14.5

Compare Source

v1.14.4

Compare Source

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

v4.3.0

Compare Source

What's Changed

New Contributors

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

golang/go (go)

v1.23.1

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

v1.30.0

Compare Source

v1.29.0: /v0.51.0/v0.5.0

Compare Source

Overview

This release is the last to support Go 1.21. The next release will require at least Go 1.22.

Added
  • Add MacOS ARM64 platform to the compatibility testing suite. (#​5577)
  • Add InstrumentationScope field to SpanStub in go.opentelemetry.io/otel/sdk/trace/tracetest, as a replacement for the deprecated InstrumentationLibrary. (#​5627)
  • Make the initial release of go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc. This new module contains an OTLP exporter that transmits log telemetry using gRPC. This module is unstable and breaking changes may be introduced. See our versioning policy for more information about these stability guarantees. (#​5629)
  • Add Walk function to TraceState in go.opentelemetry.io/otel/trace to iterate all the key-value pairs. (#​5651)
  • Bridge the trace state in go.opentelemetry.io/otel/bridge/opencensus. (#​5651)
  • Zero value of SimpleProcessor in go.opentelemetry.io/otel/sdk/log no longer panics. (#​5665)
  • The FilterProcessor interface type is added in go.opentelemetry.io/otel/sdk/log/internal/x. This is an optional and experimental interface that log Processors can implement to instruct the Logger if a Record will be processed or not. It replaces the existing Enabled method that is removed from the Processor interface itself. It does not fall within the scope of the OpenTelemetry Go versioning and stability policy and it may be changed in backwards incompatible ways or removed in feature releases. (#​5692)
  • Support Go 1.23. (#​5720)
Changed
  • NewMemberRaw, NewKeyProperty and NewKeyValuePropertyRaw in go.opentelemetry.io/otel/baggage allow UTF-8 string in key. (#​5132)
  • Processor.OnEmit in go.opentelemetry.io/otel/sdk/log now accepts a pointer to Record instead of a value so that the record modifications done in a processor are propagated to subsequent registered processors. (#​5636)
  • SimpleProcessor.Enabled in go.opentelemetry.io/otel/sdk/log now returns false if the exporter is nil. (#​5665)
  • Update the concurrency requirements of Exporter in go.opentelemetry.io/otel/sdk/log. (#​5666)
  • SimpleProcessor in go.opentelemetry.io/otel/sdk/log synchronizes OnEmit calls. (#​5666)
  • The Processor interface in go.opentelemetry.io/otel/sdk/log no longer includes the Enabled method. See the FilterProcessor interface type added in go.opentelemetry.io/otel/sdk/log/internal/x to continue providing this functionality. (#​5692)
  • The SimpleProcessor type in go.opentelemetry.io/otel/sdk/log is no longer comparable. (#​5693)
  • The BatchProcessor type in go.opentelemetry.io/otel/sdk/log is no longer comparable. (#​5693)
Fixed
  • Correct comments for the priority of the WithEndpoint and WithEndpointURL options and their corresponding environment variables in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​5584)
  • Pass the underlying error rather than a generic retry-able failure in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp, go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp and go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​5541)
  • Correct the Tracer, Meter, and Logger names used in go.opentelemetry.io/otel/example/dice. (#​5612)
  • Correct the Tracer names used in go.opentelemetry.io/otel/example/namedtracer. (#​5612)
  • Correct the Tracer name used in go.opentelemetry.io/otel/example/opencensus. (#​5612)
  • Correct the Tracer and Meter names used in go.opentelemetry.io/otel/example/otel-collector. (#​5612)
  • Correct the Tracer names used in go.opentelemetry.io/otel/example/passthrough. (#​5612)
  • Correct the Meter name used in go.opentelemetry.io/otel/example/prometheus. (#​5612)
  • Correct the Tracer names used in go.opentelemetry.io/otel/example/zipkin. (#​5612)
  • Correct comments for the priority of the WithEndpoint and WithEndpointURL options and their corresponding environment variables in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#​5641)
  • Correct comments for the priority of the WithEndpoint and WithEndpointURL options and their corresponding environment variables in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#​5650)
  • Stop percent encoding header environment variables in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc, go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp, go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp (#​5705)
  • Remove invalid environment variable header keys in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc, go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp, go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp (#​5705)
Removed
  • The Enabled method of the SimpleProcessor in go.opentelemetry.io/otel/sdk/log is removed. (#​5692)
  • The Enabled method of the BatchProcessor in go.opentelemetry.io/otel/sdk/log is removed. (#​5692)
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 requested a review from a team as a code owner August 30, 2024 18:55
@renovate renovate bot added the deps label Aug 30, 2024
@renovate renovate bot requested review from FoseFx and PaulKalho and removed request for a team August 30, 2024 18:55
Copy link
Contributor Author

renovate bot commented Aug 30, 2024

ℹ Artifact update notice

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

  • 8 additional dependencies were updated

Details:

Package Change
github.com/BurntSushi/toml v1.4.0 -> v1.4.1-0.20240526193622-a339e1f7089c
github.com/envoyproxy/protoc-gen-validate v1.0.4 -> v1.1.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.22.0
github.com/jzelinskie/stringz v0.0.2 -> v0.0.3
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240814211410-ddb44dafa142
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240814211410-ddb44dafa142
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):

  • 9 additional dependencies were updated

Details:

Package Change
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.22.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/net v0.28.0 -> v0.29.0
golang.org/x/sys v0.23.0 -> v0.25.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
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
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/sys v0.23.0 -> v0.25.0
golang.org/x/text v0.17.0 -> v0.18.0
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):

  • 21 additional dependencies were updated

Details:

Package Change
github.com/dapr/dapr v1.14.1 -> v1.14.2
github.com/go-playground/validator/v10 v10.22.0 -> v10.22.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.22.0
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 -> v0.0.0-20240606120523-5a60cdf6a761
github.com/jackc/puddle/v2 v2.2.1 -> v2.2.2
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 -> v0.54.0
go.opentelemetry.io/otel v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/zipkin v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/sdk v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/net v0.28.0 -> v0.29.0
golang.org/x/oauth2 v0.22.0 -> v0.23.0
golang.org/x/sys v0.23.0 -> v0.25.0
golang.org/x/text v0.17.0 -> v0.18.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
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
github.com/BurntSushi/toml v1.4.0 -> v1.4.1-0.20240526193622-a339e1f7089c
github.com/authzed/authzed-go v0.10.1 -> v0.15.0
github.com/dapr/dapr v1.14.1 -> v1.14.2
github.com/envoyproxy/protoc-gen-validate v1.0.4 -> v1.1.0
github.com/go-playground/validator/v10 v10.22.0 -> v10.22.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.22.0
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 -> v0.0.0-20240606120523-5a60cdf6a761
github.com/jackc/puddle/v2 v2.2.1 -> v2.2.2
github.com/jzelinskie/stringz v0.0.2 -> v0.0.3
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 -> v0.54.0
go.opentelemetry.io/otel v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/zipkin v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/sdk v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/net v0.28.0 -> v0.29.0
golang.org/x/oauth2 v0.22.0 -> v0.23.0
golang.org/x/sys v0.23.0 -> v0.25.0
golang.org/x/text v0.17.0 -> v0.18.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
File name: services/task-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):

  • 21 additional dependencies were updated

Details:

Package Change
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
github.com/dapr/dapr v1.14.1 -> v1.14.2
github.com/go-playground/validator/v10 v10.22.0 -> v10.22.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.22.0
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 -> v0.0.0-20240606120523-5a60cdf6a761
github.com/jackc/puddle/v2 v2.2.1 -> v2.2.2
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 -> v0.54.0
go.opentelemetry.io/otel v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/zipkin v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/sdk v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/net v0.28.0 -> v0.29.0
golang.org/x/oauth2 v0.22.0 -> v0.23.0
golang.org/x/sys v0.23.0 -> v0.25.0
golang.org/x/text v0.17.0 -> v0.18.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
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):

  • 21 additional dependencies were updated

Details:

Package Change
github.com/dapr/dapr v1.14.1 -> v1.14.2
github.com/go-playground/validator/v10 v10.22.0 -> v10.22.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.22.0
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 -> v0.0.0-20240606120523-5a60cdf6a761
github.com/jackc/puddle/v2 v2.2.1 -> v2.2.2
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 -> v0.54.0
go.opentelemetry.io/otel v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/zipkin v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/sdk v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/net v0.28.0 -> v0.29.0
golang.org/x/oauth2 v0.22.0 -> v0.23.0
golang.org/x/sys v0.23.0 -> v0.25.0
golang.org/x/text v0.17.0 -> v0.18.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
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):

  • 19 additional dependencies were updated

Details:

Package Change
github.com/dapr/dapr v1.14.1 -> v1.14.2
github.com/go-playground/validator/v10 v10.22.0 -> v10.22.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.22.0
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 -> v0.0.0-20240606120523-5a60cdf6a761
github.com/jackc/puddle/v2 v2.2.1 -> v2.2.2
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 -> v0.54.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/zipkin v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/sdk v1.28.0 -> v1.30.0
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/net v0.28.0 -> v0.29.0
golang.org/x/oauth2 v0.22.0 -> v0.23.0
golang.org/x/sys v0.23.0 -> v0.25.0
golang.org/x/text v0.17.0 -> v0.18.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
File name: services/ory-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):

  • 19 additional dependencies were updated

Details:

Package Change
github.com/dapr/dapr v1.14.1 -> v1.14.2
github.com/go-playground/validator/v10 v10.22.0 -> v10.22.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 -> v2.22.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.53.0 -> v0.54.0
go.opentelemetry.io/otel v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/exporters/zipkin v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/sdk v1.28.0 -> v1.30.0
go.opentelemetry.io/otel/trace v1.28.0 -> v1.30.0
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/net v0.28.0 -> v0.29.0
golang.org/x/oauth2 v0.22.0 -> v0.23.0
golang.org/x/sys v0.23.0 -> v0.25.0
golang.org/x/text v0.17.0 -> v0.18.0
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 -> v0.0.0-20240903143218-8af14fe29dc1
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):

  • 1 additional dependency was updated

Details:

Package Change
go.opentelemetry.io/otel/metric v1.28.0 -> v1.30.0
File name: libs/hwlocale/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):

  • 4 additional dependencies were updated

Details:

Package Change
github.com/go-playground/validator/v10 v10.22.0 -> v10.22.1
golang.org/x/crypto v0.26.0 -> v0.27.0
golang.org/x/net v0.28.0 -> v0.29.0
golang.org/x/sys v0.23.0 -> v0.25.0
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):

  • 1 additional dependency was updated

Details:

Package Change
github.com/planetscale/vtprotobuf v0.6.0 -> v0.6.1-0.20240319094008-0393e58bdf10

@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch 13 times, most recently from a2743eb to 2b2477a Compare September 10, 2024 17:37
@renovate renovate bot force-pushed the renovate/all-non-major-gomod-dependencies branch from 2b2477a to 9329f76 Compare September 10, 2024 22:21
Copy link
Contributor Author

renovate bot commented Sep 11, 2024

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.

@FoseFx FoseFx merged commit 9958bfb into main Sep 11, 2024
42 checks passed
@FoseFx FoseFx deleted the renovate/all-non-major-gomod-dependencies branch September 11, 2024 11:46
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.

1 participant