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 golang #2835

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

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Dec 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
cloud.google.com/go/alloydbconn v1.13.1 -> v1.13.2 age adoption passing confidence
cloud.google.com/go/compute/metadata v0.5.2 -> v0.6.0 age adoption passing confidence
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.57.0 -> v0.58.0 age adoption passing confidence
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 -> v0.58.0 age adoption passing confidence
go.opentelemetry.io/otel v1.32.0 -> v1.33.0 age adoption passing confidence
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.32.0 -> v1.33.0 age adoption passing confidence
go.opentelemetry.io/otel/sdk v1.32.0 -> v1.33.0 age adoption passing confidence
google.golang.org/grpc v1.69.0 -> v1.69.2 age adoption passing confidence
google.golang.org/protobuf v1.35.2 -> v1.36.0 age adoption passing confidence

Warning

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


Release Notes

googlecloudplatform/alloydb-go-connector (cloud.google.com/go/alloydbconn)

v1.13.2

Compare Source

Bug Fixes
googleapis/google-cloud-go (cloud.google.com/go/compute/metadata)

v0.6.0

  • Beta release of BigQuery, DataStore, Logging and Storage. See the
    blog post.

  • bigquery:

    • struct support. Read a row directly into a struct with
      RowIterator.Next, and upload a row directly from a struct with Uploader.Put.
      You can also use field tags. See the [package documentation][cloud-bigquery-ref]
      for details.

    • The ValueList type was removed. It is no longer necessary. Instead of

    var v ValueList
    ... it.Next(&v) ..

    use

    var v []Value
    ... it.Next(&v) ...
    • Previously, repeatedly calling RowIterator.Next on the same []Value or
      ValueList would append to the slice. Now each call resets the size to zero first.

    • Schema inference will infer the SQL type BYTES for a struct field of
      type []byte. Previously it inferred STRING.

    • The types uint, uint64 and uintptr are no longer supported in schema
      inference. BigQuery's integer type is INT64, and those types may hold values
      that are not correctly represented in a 64-bit signed integer.

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

v1.33.0: /v0.55.0/v0.9.0/v0.0.12

Compare Source

Overview
Added
  • Add Reset method to SpanRecorder in go.opentelemetry.io/otel/sdk/trace/tracetest. (#​5994)
  • Add EnabledInstrument interface in go.opentelemetry.io/otel/sdk/metric/internal/x. This is an experimental interface that is implemented by synchronous instruments provided by go.opentelemetry.io/otel/sdk/metric. Users can use it to avoid performing computationally expensive operations when recording measurements. 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. (#​6016)
Changed
  • The default global API now supports full auto-instrumentation from the go.opentelemetry.io/auto package. See that package for more information. (#​5920)
  • Propagate non-retryable error messages to client in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#​5929)
  • Propagate non-retryable error messages to client in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​5929)
  • Propagate non-retryable error messages to client in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#​5929)
  • Performance improvements for attribute value AsStringSlice, AsFloat64Slice, AsInt64Slice, AsBoolSlice. (#​6011)
  • Change EnabledParameters to have a Severity field instead of a getter and setter in go.opentelemetry.io/otel/log. (#​6009)
Fixed
  • Fix inconsistent request body closing in go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#​5954)
  • Fix inconsistent request body closing in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​5954)
  • Fix inconsistent request body closing in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#​5954)
  • Fix invalid exemplar keys in go.opentelemetry.io/otel/exporters/prometheus. (#​5995)
  • Fix attribute value truncation in go.opentelemetry.io/otel/sdk/trace. (#​5997)
  • Fix attribute value truncation in go.opentelemetry.io/otel/sdk/log. (#​6032)
What's Changed
New Contributors

Full Changelog: open-telemetry/opentelemetry-go@v1.32.0...v1.33.0

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

v1.69.2: Release 1.69.2

Compare Source

Bug Fixes

  • stats/experimental: add type aliases for symbols (Metrics/etc) that were moved to the stats package (#​7929).
  • client: set user-agent string to the correct version.
protocolbuffers/protobuf-go (google.golang.org/protobuf)

v1.36.0

Compare Source

Full Changelog: protocolbuffers/protobuf-go@v1.35.2...v1.36.0

User-visible changes:

CL/635139: src/google/protobuf: document UnmarshalJSON / API level behavior
CL/635138: reflect/protoreflect: use [] syntax to reference method
CL/635137: proto: add reference to size semantics with lazy decoding to comment
CL/634818: compiler/protogen: allow overriding API level from --go_opt
CL/634817: cmd/protoc-gen-go: generate _protoopaque variant for hybrid
CL/634816: all: regenerate.bash for Opaque API
CL/634815: all: Release the Opaque API
CL/634015: types/descriptorpb: regenerate using latest protobuf v29.1 release
CL/632735: internal/impl: skip synthetic oneofs in messageInfo
CL/627876: all: start v1.35.2-devel


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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-bot renovate-bot requested review from yoshi-approver and a team as code owners December 23, 2024 01:16
@forking-renovate forking-renovate bot added dependencies Pull requests that update a dependency file lang: go Issues specific to Go. labels Dec 23, 2024
Copy link

ℹ Artifact update notice

File name: src/checkoutservice/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):

  • 12 additional dependencies were updated

Details:

Package Change
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 -> v2.24.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.32.0 -> v1.33.0
go.opentelemetry.io/otel/metric v1.32.0 -> v1.33.0
go.opentelemetry.io/otel/trace v1.32.0 -> v1.33.0
go.opentelemetry.io/proto/otlp v1.3.1 -> v1.4.0
golang.org/x/crypto v0.29.0 -> v0.30.0
golang.org/x/net v0.31.0 -> v0.32.0
golang.org/x/sync v0.9.0 -> v0.10.0
golang.org/x/sys v0.27.0 -> v0.28.0
golang.org/x/text v0.20.0 -> v0.21.0
google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f -> v0.0.0-20241209162323-e6fa225c2576
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 -> v0.0.0-20241209162323-e6fa225c2576
File name: src/frontend/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):

  • 12 additional dependencies were updated

Details:

Package Change
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 -> v2.24.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.32.0 -> v1.33.0
go.opentelemetry.io/otel/metric v1.32.0 -> v1.33.0
go.opentelemetry.io/otel/trace v1.32.0 -> v1.33.0
go.opentelemetry.io/proto/otlp v1.3.1 -> v1.4.0
golang.org/x/crypto v0.29.0 -> v0.30.0
golang.org/x/net v0.31.0 -> v0.32.0
golang.org/x/sync v0.9.0 -> v0.10.0
golang.org/x/sys v0.27.0 -> v0.28.0
golang.org/x/text v0.20.0 -> v0.21.0
google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f -> v0.0.0-20241209162323-e6fa225c2576
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 -> v0.0.0-20241209162323-e6fa225c2576
File name: src/productcatalogservice/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):

  • 11 additional dependencies were updated

Details:

Package Change
cloud.google.com/go/alloydb v1.13.0 -> v1.14.0
cloud.google.com/go/auth v0.11.0 -> v0.12.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 -> v2.24.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.32.0 -> v1.33.0
go.opentelemetry.io/otel/metric v1.32.0 -> v1.33.0
go.opentelemetry.io/otel/trace v1.32.0 -> v1.33.0
go.opentelemetry.io/proto/otlp v1.3.1 -> v1.4.0
golang.org/x/net v0.31.0 -> v0.32.0
google.golang.org/api v0.210.0 -> v0.211.0
google.golang.org/genproto/googleapis/api v0.0.0-20241113202542-65e8d215514f -> v0.0.0-20241209162323-e6fa225c2576
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 -> v0.0.0-20241209162323-e6fa225c2576

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 lang: go Issues specific to Go.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant