Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
cirello.io/pglock v1.14.2 -> v1.16.0 age adoption passing confidence require minor
github.com/99designs/gqlgen v0.17.55 -> v0.17.56 age adoption passing confidence require patch
github.com/fsnotify/fsnotify v1.7.0 -> v1.8.0 age adoption passing confidence require minor
github.com/vektah/gqlparser/v2 v2.5.18 -> v2.5.19 age adoption passing confidence require patch
go (source) 1.23.2 -> 1.23.3 age adoption passing confidence toolchain patch
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.56.0 -> v0.57.0 age adoption passing confidence require minor
go.opentelemetry.io/contrib/propagators/b3 v1.31.0 -> v1.32.0 age adoption passing confidence require minor
go.opentelemetry.io/contrib/propagators/jaeger v1.31.0 -> v1.32.0 age adoption passing confidence require minor
go.opentelemetry.io/contrib/propagators/ot v1.31.0 -> v1.32.0 age adoption passing confidence require minor
go.opentelemetry.io/otel v1.31.0 -> v1.32.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.31.0 -> v1.32.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.31.0 -> v1.32.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/sdk v1.31.0 -> v1.32.0 age adoption passing confidence require minor
go.opentelemetry.io/otel/trace v1.31.0 -> v1.32.0 age adoption passing confidence require minor
go.uber.org/mock v0.4.0 -> v0.5.0 age adoption passing confidence require minor
golang.org/x/oauth2 v0.23.0 -> v0.24.0 age adoption passing confidence require minor
golangci/golangci-lint v1.61.0 -> v1.62.0 age adoption passing confidence minor
gorm.io/plugin/opentelemetry v0.1.7 -> v0.1.8 age adoption passing confidence require patch
grafana/grafana 11.2.2 -> 11.3.0 age adoption passing confidence minor
openpolicyagent/opa (source) 0.69.0 -> 0.70.0 age adoption passing confidence minor
prom/prometheus v2.54.1 -> v2.55.1 age adoption passing confidence minor
quay.io/keycloak/keycloak 26.0.1 -> 26.0.5 age adoption passing confidence patch

Release Notes

cirello-io/pglock (cirello.io/pglock)

v1.16.0: Use row-level locking to operate underlying table

Compare Source

v1.15.0: Improve retry on transaction deadlocks; upgrade test dependency

Compare Source

99designs/gqlgen (github.com/99designs/gqlgen)

v0.17.56

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.55...v0.17.56

fsnotify/fsnotify (github.com/fsnotify/fsnotify)

v1.8.0

Compare Source

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#​619)
Changes and fixes
  • windows: fix behaviour of WatchList() to be consistent with other platforms (#​610)

  • kqueue: ignore events with Ident=0 (#​590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#​617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#​625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#​620)

  • inotify: fix panic when calling Remove() in a goroutine (#​650)

  • fen: allow watching subdirectories of watched directories (#​621)

vektah/gqlparser (github.com/vektah/gqlparser/v2)

v2.5.19

Compare Source

What's Changed
New Contributors

Full Changelog: vektah/gqlparser@v2.5.18...v2.5.19

golang/go (go)

v1.23.3

open-telemetry/opentelemetry-go-contrib (go.opentelemetry.io/contrib/propagators/b3)

v1.32.0: /v0.57.0/v0.26.0/v0.12.0/v0.7.0/v0.5.0/v0.4.0

Compare Source

Overview

Added
  • Add the WithSource option to the go.opentelemetry.io/contrib/bridges/otelslog log bridge to set the code.* attributes in the log record that includes the source location where the record was emitted. (#​6253)
  • Add ContextWithStartTime and StartTimeFromContext to go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp, which allows setting the start time using go context. (#​6137)
  • Set the code.* attributes in go.opentelemetry.io/contrib/bridges/otelzap if the zap.Logger was created with the AddCaller or AddStacktrace option. (#​6268)
  • Add a LogProcessor to go.opentelemetry.io/contrib/processors/baggagecopy to copy baggage members to log records. (#​6277)
    • Use baggagecopy.NewLogProcessor when configuring a Log Provider.
      • NewLogProcessor accepts a Filter function type that selects which baggage members are added to the log record.
Changed
  • Transform raw (slog.KindAny) attribute values to matching log.Value types.
    For example, []string{"foo", "bar"} attribute value is now transformed to log.SliceValue(log.StringValue("foo"), log.StringValue("bar")) instead of log.String("[foo bar"]). (#​6254)
  • Upgrade go.opentelemetry.io/otel/semconv/v1.17.0 to go.opentelemetry.io/otel/semconv/v1.21.0 in go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo. (#​6272)
  • Resource doesn't merge with defaults if a valid resource is configured in go.opentelemetry.io/contrib/config. (#​6289)
Fixed
  • Transform nil attribute values to log.Value zero value instead of panicking in go.opentelemetry.io/contrib/bridges/otellogrus. (#​6237)
  • Transform nil attribute values to log.Value zero value instead of panicking in go.opentelemetry.io/contrib/bridges/otelzap. (#​6237)
  • Transform nil attribute values to log.Value zero value instead of log.StringValue("<nil>") in go.opentelemetry.io/contrib/bridges/otelslog. (#​6246)
  • Fix NewClientHandler so that rpc.client.request.* metrics measure requests instead of responses and rpc.client.responses.* metrics measure responses instead of requests in go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc. (#​6250)
  • Fix issue in go.opentelemetry.io/contrib/config causing otelprom.WithResourceAsConstantLabels configuration to not be respected. (#​6260)
  • otel.Handle is no longer called on a successful shutdown of the Prometheus exporter in go.opentelemetry.io/contrib/config. (#​6299)

What's Changed

New Contributors

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

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

v1.32.0: /v0.54.0/v0.8.0/v0.0.11

Compare Source

Overview
Added
  • Add go.opentelemetry.io/otel/sdk/metric/exemplar.AlwaysOffFilter, which can be used to disable exemplar recording. (#​5850)
  • Add go.opentelemetry.io/otel/sdk/metric.WithExemplarFilter, which can be used to configure the exemplar filter used by the metrics SDK. (#​5850)
  • Add ExemplarReservoirProviderSelector and DefaultExemplarReservoirProviderSelector to go.opentelemetry.io/otel/sdk/metric, which defines the exemplar reservoir to use based on the aggregation of the metric. (#​5861)
  • Add ExemplarReservoirProviderSelector to go.opentelemetry.io/otel/sdk/metric.Stream to allow using views to configure the exemplar reservoir to use for a metric. (#​5861)
  • Add ReservoirProvider, HistogramReservoirProvider and FixedSizeReservoirProvider to go.opentelemetry.io/otel/sdk/metric/exemplar to make it convenient to use providers of Reservoirs. (#​5861)
  • The go.opentelemetry.io/otel/semconv/v1.27.0 package.
    The package contains semantic conventions from the v1.27.0 version of the OpenTelemetry Semantic Conventions. (#​5894)
  • Add Attributes attribute.Set field to Scope in go.opentelemetry.io/otel/sdk/instrumentation. (#​5903)
  • Add Attributes attribute.Set field to ScopeRecords in go.opentelemetry.io/otel/log/logtest. (#​5927)
  • go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc adds instrumentation scope attributes. (#​5934)
  • go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp adds instrumentation scope attributes. (#​5934)
  • go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc adds instrumentation scope attributes. (#​5935)
  • go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp adds instrumentation scope attributes. (#​5935)
  • go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc adds instrumentation scope attributes. (#​5933)
  • go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp adds instrumentation scope attributes. (#​5933)
  • go.opentelemetry.io/otel/exporters/prometheus adds instrumentation scope attributes in otel_scope_info metric as labels. (#​5932)
Changed
  • Support scope attributes and make them as identifying for Tracer in go.opentelemetry.io/otel and go.opentelemetry.io/otel/sdk/trace. (#​5924)
  • Support scope attributes and make them as identifying for Meter in go.opentelemetry.io/otel and go.opentelemetry.io/otel/sdk/metric. (#​5926)
  • Support scope attributes and make them as identifying for Logger in go.opentelemetry.io/otel and go.opentelemetry.io/otel/sdk/log. (#​5925)
  • Make schema URL and scope attributes as identifying for Tracer in go.opentelemetry.io/otel/bridge/opentracing. (#​5931)
  • Clear unneeded slice elements to allow GC to collect the objects in go.opentelemetry.io/otel/sdk/metric and go.opentelemetry.io/otel/sdk/trace. (#​5804)
Fixed
  • Global MeterProvider registration unwraps global instrument Observers, the undocumented Unwrap() methods are now private. (#​5881)
  • go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc now keeps the metadata already present in the context when WithHeaders is used. (#​5892)
  • go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc now keeps the metadata already present in the context when WithHeaders is used. (#​5911)
  • go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc now keeps the metadata already present in the context when WithHeaders is used. (#​5915)
  • Fix go.opentelemetry.io/otel/exporters/prometheus trying to add exemplars to Gauge metrics, which is unsupported. (#​5912)
  • Fix WithEndpointURL to always use a secure connection when an https URL is passed in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc. (#​5944)
  • Fix WithEndpointURL to always use a secure connection when an https URL is passed in go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp. (#​5944)
  • Fix WithEndpointURL to always use a secure connection when an https URL is passed in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc. (#​5944)
  • Fix WithEndpointURL to always use a secure connection when an https URL is passed in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#​5944)
  • Fix incorrect metrics generated from callbacks when multiple readers are used in go.opentelemetry.io/otel/sdk/metric. (#​5900)
Removed
What's Changed
  • Allow configuring the

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

@coveralls
Copy link

Pull Request Test Coverage Report for Build 11394951682

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 50.098%

Totals Coverage Status
Change from base Build 11393045557: 0.0%
Covered Lines: 3061
Relevant Lines: 6110

💛 - Coveralls

@renovate renovate bot force-pushed the renovate/backend branch from 4e70e5c to 527c84a Compare October 21, 2024 18:45
@renovate renovate bot changed the title fix(deps): update module go.uber.org/mock to v0.5.0 fix(deps): update backend Oct 22, 2024
@renovate renovate bot force-pushed the renovate/backend branch 4 times, most recently from c0a4026 to 24a0c29 Compare October 24, 2024 10:04
@github-actions github-actions bot added size/S and removed size/XS labels Oct 24, 2024
@renovate renovate bot force-pushed the renovate/backend branch 4 times, most recently from 0ba022b to 4fb9491 Compare October 31, 2024 14:36
@renovate renovate bot force-pushed the renovate/backend branch 5 times, most recently from 155f2a3 to 4f57b48 Compare November 7, 2024 22:30
@github-actions github-actions bot added size/M and removed size/S labels Nov 7, 2024
@renovate renovate bot force-pushed the renovate/backend branch from 4f57b48 to 376d2ef Compare November 8, 2024 19:52
@renovate
Copy link
Contributor Author

renovate bot commented Nov 8, 2024

ℹ Artifact update notice

File name: backend/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
github.com/bytedance/sonic v1.12.3 -> v1.12.4
github.com/bytedance/sonic/loader v0.2.0 -> v0.2.1
github.com/gabriel-vasile/mimetype v1.4.5 -> v1.4.6
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 -> v2.23.0
github.com/klauspost/cpuid/v2 v2.2.8 -> v2.2.9
go.opentelemetry.io/otel/metric v1.31.0 -> v1.32.0
golang.org/x/sync v0.8.0 -> v0.9.0
golang.org/x/sys v0.26.0 -> v0.27.0
golang.org/x/text v0.19.0 -> v0.20.0
google.golang.org/genproto/googleapis/api v0.0.0-20241007155032-5fefd90f89a9 -> v0.0.0-20241104194629-dd2ea8efbc28
google.golang.org/genproto/googleapis/rpc v0.0.0-20241007155032-5fefd90f89a9 -> v0.0.0-20241104194629-dd2ea8efbc28

@renovate renovate bot force-pushed the renovate/backend branch 2 times, most recently from 48d7da2 to d616213 Compare November 9, 2024 01:55
@github-actions github-actions bot added size/L and removed size/M labels Nov 9, 2024
@renovate renovate bot force-pushed the renovate/backend branch from d616213 to 0527f34 Compare November 10, 2024 21:40
@oxyno-zeta oxyno-zeta merged commit 6c4c809 into master Nov 12, 2024
@renovate renovate bot deleted the renovate/backend branch November 12, 2024 20:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants