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

chore: Update all non-major dependencies #113

Merged
merged 1 commit into from
Dec 31, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 31, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
github.com/PuerkitoBio/goquery v1.10.0 -> v1.10.1 age adoption passing confidence require patch
github.com/blevesearch/bleve/v2 v2.4.3 -> v2.4.4 age adoption passing confidence require patch
github.com/bufbuild/protovalidate-go v0.7.3 -> v0.8.0 age adoption passing confidence require minor v0.8.2 (+1)
github.com/go-co-op/gocron/v2 v2.12.4 -> v2.14.0 age adoption passing confidence require minor
github.com/go-kratos/kratos/contrib/log/zap/v2 v2.0.0-20241105072421-f8b97f675b32 -> v2.0.0-20241219093211-5087366d2f90 age adoption passing confidence require patch
github.com/go-kratos/kratos/contrib/registry/consul/v2 v2.0.0-20241105072421-f8b97f675b32 -> v2.0.0-20241219093211-5087366d2f90 age adoption passing confidence require patch
github.com/go-kratos/kratos/v2 v2.8.2 -> v2.8.3 age adoption passing confidence require patch
github.com/hashicorp/consul/api v1.30.0 -> v1.31.0 age adoption passing confidence require minor
github.com/minio/minio-go/v7 v7.0.81 -> v7.0.82 age adoption passing confidence require patch
go.opentelemetry.io/otel v1.32.0 -> v1.33.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.8.0 -> v0.9.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.8.0 -> v0.9.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.32.0 -> v1.33.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.32.0 -> v1.33.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.32.0 -> v1.33.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.32.0 -> v1.33.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.32.0 -> v1.33.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/log v0.8.0 -> v0.9.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk v1.32.0 -> v1.33.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk/log v0.8.0 -> v0.9.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk/metric v1.32.0 -> v1.33.0 age adoption passing confidence require minor
golang.org/x/exp 1829a12 -> b2144cd age adoption passing confidence require digest
google.golang.org/grpc v1.69.0 -> v1.69.2 age adoption passing confidence require patch
google.golang.org/protobuf v1.35.2 -> v1.36.1 age adoption passing confidence require minor

Release Notes

PuerkitoBio/goquery (github.com/PuerkitoBio/goquery)

v1.10.1

Compare Source

Update go.mod dependencies.

blevesearch/bleve (github.com/blevesearch/bleve/v2)

v2.4.4

Compare Source

Bug Fixes

Vector search continues to require same version of faiss dynamic library (as with v2.4.3) to be built from blevesearch/faiss@b747c55a which is a modified version of v1.8.0

Milestone
bufbuild/protovalidate-go (github.com/bufbuild/protovalidate-go)

v0.8.0

Compare Source

Breaking Change: The protovalidate.ValidationError type is no longer a protobuf buf.validate.Violations message alias, but a struct containing a slice of protovalidate.Violation instances. In most cases, accessing the Proto member of the violation is all that needs to be done:

     for _, violation := range err.Violations {
-        fmt.Println(violation.GetMessage())
+        fmt.Println(violation.Proto.GetMessage())
     }

protovalidate.ValidationError still has a ToProto() method that returns the protobuf buf.validate.Violations message equivalent.


The new protovalidate.Violation structure contains additional in-memory information about the violation which cannot be serialized to the wire:

  • FieldValue: A protoreflect.Value containing the value of the field failing validation, if there is a field corresponding to the violation.
  • FieldDescriptor: A protoreflect.FieldDescriptor corresponding to the field failing validation.
  • RuleValue: A protoreflect.Value containing the value of the rule failing validation, if there is a rule corresponding to the violation.
  • RuleDescriptor: A protoreflect.FieldDescriptor corresponding to the rule failing validation.

Take, for example, the following protobuf message schema:

message User {
    string email = 1 [(buf.validate.field).string.email = true];
}

If you try to validate the struct pb.User{Email: "invalid"}, the FieldValue will be "invalid" and the RuleValue will be true.

Some violations do not correspond directly to a field, such as a message constraint failure; in these cases, the FieldValue will be an invalid value and the FieldDescriptor will be nil.

What's Changed

Full Changelog: bufbuild/protovalidate-go@v0.7.3...v0.8.0

go-co-op/gocron (github.com/go-co-op/gocron/v2)

v2.14.0

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v2.13.0...v2.14.0

v2.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.12.4...v2.13.0

go-kratos/kratos (github.com/go-kratos/kratos/v2)

v2.8.3

Compare Source

New Features
  • feat(log): add Logger() method for Helper (#​3443)
Bug Fixes
  • fix(registry): add timeout validation (#​3492)
  • fix k8s headless service miss namespace (#​3407)
  • fix: Return inner Logger from GetLogger for log.WithContext reuse (#​3455)
  • fix: various typos (#​3454)
Others
  • build(deps): bump golang.org/x/net in /contrib/opensergo (#​3434)
  • build(deps): bump actions/setup-go from 5.0.2 to 5.1.0 (#​3450)
New Contributors

Full Changelog: go-kratos/kratos@v2.8.2...v2.8.3

minio/minio-go (github.com/minio/minio-go/v7)

v7.0.82: Bugfix Release

Compare Source

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.81...v7.0.82

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.1

Compare Source

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

Bug fixes:
CL/638495: internal/impl: revert IsSynthetic() check to fix panic

Maintenance:
CL/637475: internal/errors: delete compatibility code for Go before 1.13

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 * *" in timezone Asia/Singapore, 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 renovate bot added the renovate label Dec 31, 2024
Copy link
Contributor Author

renovate bot commented Dec 31, 2024

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

  • 12 additional dependencies were updated

Details:

Package Change
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.35.2-20240920164238-5a7b106cbb87.1 -> v1.35.2-20241127180247-a33202765966.1
github.com/andybalholm/cascadia v1.3.2 -> v1.3.3
github.com/blevesearch/go-faiss v1.0.23 -> v1.0.24
github.com/blevesearch/zapx/v16 v16.1.8 -> v16.1.9-0.20241217210638-a0519e7caf3b
github.com/google/cel-go v0.22.0 -> v0.22.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 -> v2.24.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.32.0 -> v0.33.0
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 -> v0.0.0-20241209162323-e6fa225c2576
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 -> v0.0.0-20241209162323-e6fa225c2576

@renovate renovate bot merged commit 2593c79 into master Dec 31, 2024
5 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch December 31, 2024 23:00
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