-
Notifications
You must be signed in to change notification settings - Fork 1
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
Conversation
ℹ Artifact update noticeFile name: libs/hwauthz/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: libs/common/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: libs/hwutil/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: services/user-svc/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: services/tasks-svc/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: services/task-svc/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: services/property-svc/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: libs/hwdb/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: services/ory-svc/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: libs/telemetry/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: libs/hwlocale/go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
File name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
a2743eb
to
2b2477a
Compare
2b2477a
to
9329f76
Compare
Edited/Blocked NotificationRenovate 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. |
This PR contains the following updates:
v0.10.1
->v0.15.0
v1.14.1
->v1.14.2
v10.22.0
->v10.22.1
v5.6.0
->v5.7.1
v1.14.3
->v1.14.5
v4.2.0
->v4.3.0
1.23.0
->1.23.1
v0.53.0
->v0.54.0
v1.28.0
->v1.30.0
v1.28.0
->v1.30.0
v1.28.0
->v1.30.0
v1.28.0
->v1.30.0
v1.28.0
->v1.30.0
v1.28.0
->v1.30.0
v0.28.0
->v0.29.0
v0.22.0
->v0.23.0
v0.17.0
->v0.18.0
v1.65.0
->v1.66.0
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.2Compare 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.1Compare 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
[+]
bumpjackc/pgx/v5
from 5.6.0 to 5.7.0 by @pashagolub in https://github.com/pashagolub/pgxmock/pull/220[+]
add test case for double unlock by @pashagolub in https://github.com/pashagolub/pgxmock/pull/217[-]
fix panic for double unlock for unexpected method calls by @StevenACoffman in https://github.com/pashagolub/pgxmock/pull/216[-]
fixgovet
linter warning by @pashagolub in https://github.com/pashagolub/pgxmock/pull/219New 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.0Compare Source
Overview
This release is the last to support Go 1.21. The next release will require at least Go 1.22.
Added
InstrumentationScope
field toSpanStub
ingo.opentelemetry.io/otel/sdk/trace/tracetest
, as a replacement for the deprecatedInstrumentationLibrary
. (#5627)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)Walk
function toTraceState
ingo.opentelemetry.io/otel/trace
to iterate all the key-value pairs. (#5651)go.opentelemetry.io/otel/bridge/opencensus
. (#5651)SimpleProcessor
ingo.opentelemetry.io/otel/sdk/log
no longer panics. (#5665)FilterProcessor
interface type is added ingo.opentelemetry.io/otel/sdk/log/internal/x
. This is an optional and experimental interface that logProcessor
s can implement to instruct theLogger
if aRecord
will be processed or not. It replaces the existingEnabled
method that is removed from theProcessor
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)Changed
NewMemberRaw
,NewKeyProperty
andNewKeyValuePropertyRaw
ingo.opentelemetry.io/otel/baggage
allow UTF-8 string in key. (#5132)Processor.OnEmit
ingo.opentelemetry.io/otel/sdk/log
now accepts a pointer toRecord
instead of a value so that the record modifications done in a processor are propagated to subsequent registered processors. (#5636)SimpleProcessor.Enabled
ingo.opentelemetry.io/otel/sdk/log
now returnsfalse
if the exporter isnil
. (#5665)Exporter
ingo.opentelemetry.io/otel/sdk/log
. (#5666)SimpleProcessor
ingo.opentelemetry.io/otel/sdk/log
synchronizesOnEmit
calls. (#5666)Processor
interface ingo.opentelemetry.io/otel/sdk/log
no longer includes theEnabled
method. See theFilterProcessor
interface type added ingo.opentelemetry.io/otel/sdk/log/internal/x
to continue providing this functionality. (#5692)SimpleProcessor
type ingo.opentelemetry.io/otel/sdk/log
is no longer comparable. (#5693)BatchProcessor
type ingo.opentelemetry.io/otel/sdk/log
is no longer comparable. (#5693)Fixed
WithEndpoint
andWithEndpointURL
options and their corresponding environment variables ingo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
. (#5584)go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
,go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp
andgo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
. (#5541)Tracer
,Meter
, andLogger
names used ingo.opentelemetry.io/otel/example/dice
. (#5612)Tracer
names used ingo.opentelemetry.io/otel/example/namedtracer
. (#5612)Tracer
name used ingo.opentelemetry.io/otel/example/opencensus
. (#5612)Tracer
andMeter
names used ingo.opentelemetry.io/otel/example/otel-collector
. (#5612)Tracer
names used ingo.opentelemetry.io/otel/example/passthrough
. (#5612)Meter
name used ingo.opentelemetry.io/otel/example/prometheus
. (#5612)Tracer
names used ingo.opentelemetry.io/otel/example/zipkin
. (#5612)WithEndpoint
andWithEndpointURL
options and their corresponding environment variables ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
andgo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
. (#5641)WithEndpoint
andWithEndpointURL
options and their corresponding environment variables ingo.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp
. (#5650)go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
,go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
,go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
andgo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
(#5705)go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
,go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
,go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
andgo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
(#5705)Removed
Enabled
method of theSimpleProcessor
ingo.opentelemetry.io/otel/sdk/log
is removed. (#5692)Enabled
method of theBatchProcessor
ingo.opentelemetry.io/otel/sdk/log
is removed. (#5692)What's Changed
46b0784
by @renovate in https://github.com/open-telemetry/opentelemetry-go/pull/5585654c5fe
by @renovate in https://github.com/open-telemetry/opentelemetry-go/pull/55874ad9e85
by @renovate in https://github.com/open-telemetry/opentelemetry-go/pull/55884ad9e85
by @renovate in https://github.com/open-telemetry/opentelemetry-go/pull/558940e1e62
by @renovate in https://github.com/open-telemetry/opentelemetry-go/pull/559240e1e62
by @renovate in https://github.com/open-telemetry/opentelemetry-go/pull/559346eb208
by @renovate in https://github.com/open-telemetry/opentelemetry-go/pull/561046eb208
by @renovate in [https://github.com/chore(deps): update google.golang.org/genproto/googleapis/rpc digest to 46eb208 open-telemetry/opentelemetry-go#5611](https://redirect.github.com/openConfiguration
📅 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.
This PR was generated by Mend Renovate. View the repository job log.