-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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(deps): update accountingservice #1244
Conversation
This PR was marked stale due to lack of activity. It will be closed in 7 days. |
@secustor how can I rebase this PR without messing up renovate? |
Looks correct. The job has run which you can see in the repo logs which you can find behind the Tough I have no access to detailed logs as I'm missing permissions on this repo. |
But in order to merge it, we need the branch updated. |
If the branch is modified, then Renovate will not update in anymore until the PR is merged or closed. As it assumes that devs are fixing upgrade issues. Using the check box these changes can be discarded. If PR rules are defined that prevent merge commit merges, than Renovate should rebase the PR itself ( if the rule above is not triggered the PR itself ) From what I understand what happened on the other PRs is that upgrades have been fixed by cherry picking from the Renovate branches an then merging via another PR. This is a theory tough, I have to still reproduce that. |
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. ⚠ Warning: custom changes will be lost. |
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Austin Parker <austin@ap2.io>
This PR contains the following updates:
v1.42.0
->v1.42.1
v1.19.0
->v1.21.0
v1.19.0
->v1.21.0
v1.19.0
->v1.21.0
v1.19.0
->v1.21.0
1.21.3-alpine
->1.21.4-alpine
Release Notes
IBM/sarama (github.com/IBM/sarama)
v1.42.1
: Version 1.42.1 (2023-11-07)Compare Source
What's Changed
🐛 Fixes
Full Changelog: IBM/sarama@v1.42.0...v1.42.1
open-telemetry/opentelemetry-go (go.opentelemetry.io/otel)
v1.21.0
: /v0.44.0Compare Source
Removed
go.opentelemetry.io/otel/bridge/opencensus.NewTracer
. (#4706)go.opentelemetry.io/otel/exporters/otlp/otlpmetric
module. (#4707)go.opentelemetry.io/otel/example/view
module. (#4708)go.opentelemetry.io/otel/example/fib
module. (#4723)Fixed
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
. (#4719)go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
. (#4719)v1.20.0
: /v0.43.0Compare Source
This release brings a breaking change for custom trace API implementations. Some interfaces (
TracerProvider
,Tracer
,Span
) now embed thego.opentelemetry.io/otel/trace/embedded
types. Implementors need to update their implementations based on what they want the default behavior to be. See the "API Implementations" section of the trace API package documentation for more about how to accomplish this.Added
go.opentelemetry.io/otel/bridge/opencensus.InstallTraceBridge
, which installs the OpenCensus trace bridge, and replacesopencensus.NewTracer
. (#4567)go.opentelemetry.io/otel/bridge/opencensus
. (#4584)go.opentelemetry.io/otel/trace/embedded
package to be embedded in the exported trace API interfaces. (#4620)go.opentelemetry.io/otel/trace/noop
package as a default no-op implementation of the trace API. (#4620)go.opentelemetry.io/otel/example/dice
. (#4644)go.opentelemetry.io/otel/example/prometheus
. (#4649)go.opentelemetry.io/otel/metric.WithExplicitBucketBoundaries
, which allows defining default explicit bucket boundaries when creating histogram instruments. (#4603)Version
function ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
. (#4660)Version
function ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
. (#4660)go.opentelemetry.io/sdk/metric/metricdata
. (#4622)go.opentelemetry.io/otel/bridge/opencensus.NewMetricProducer
now supports exemplars from OpenCensus. (#4585)WithExplicitBucketBoundaries
ingo.opentelemetry.io/otel/sdk/metric
. (#4605)go.opentelemetry.io/otel/bridge/opencensus
. (#4668)Deprecated
go.opentelemetry.io/otel/bridge/opencensus.NewTracer
in favor ofopencensus.InstallTraceBridge
. (#4567)go.opentelemetry.io/otel/example/fib
package is in favor ofgo.opentelemetry.io/otel/example/dice
. (#4618)go.opentelemetry.io/otel/trace.NewNoopTracerProvider
.Use the added
NewTracerProvider
function ingo.opentelemetry.io/otel/trace/noop
instead. (#4620)go.opentelemetry.io/otel/example/view
package in favor ofgo.opentelemetry.io/otel/example/prometheus
. (#4649)go.opentelemetry.io/otel/exporters/otlp/otlpmetric
. (#4693)Changed
go.opentelemetry.io/otel/bridge/opencensus.NewMetricProducer
returns a*MetricProducer
struct instead of the metric.Producer interface. (#4583)TracerProvider
ingo.opentelemetry.io/otel/trace
now embeds thego.opentelemetry.io/otel/trace/embedded.TracerProvider
type.This extends the
TracerProvider
interface and is is a breaking change for any existing implementation.Implementors need to update their implementations based on what they want the default behavior of the interface to be.
See the "API Implementations" section of the
go.opentelemetry.io/otel/trace
package documentation for more information about how to accomplish this. (#4620)Tracer
ingo.opentelemetry.io/otel/trace
now embeds thego.opentelemetry.io/otel/trace/embedded.Tracer
type.This extends the
Tracer
interface and is is a breaking change for any existing implementation.Implementors need to update their implementations based on what they want the default behavior of the interface to be.
See the "API Implementations" section of the
go.opentelemetry.io/otel/trace
package documentation for more informationabout how to accomplish this. (#4620)Span
ingo.opentelemetry.io/otel/trace
now embeds thego.opentelemetry.io/otel/trace/embedded.Span
type.This extends the
Span
interface and is is a breaking change for any existing implementation.Implementors need to update their implementations based on what they want the default behavior of the interface to be.
See the "API Implementations" section of the
go.opentelemetry.io/otel/trace
package documentation for more information about how to accomplish this. (#4620)go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
does no longer depend ongo.opentelemetry.io/otel/exporters/otlp/otlpmetric
. (#4660)go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
does no longer depend ongo.opentelemetry.io/otel/exporters/otlp/otlpmetric
. (#4660)502 Bad Gateway
and504 Gateway Timeout
HTTP statuses ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
. (#4670)502 Bad Gateway
and504 Gateway Timeout
HTTP statuses ingo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
. (#4670)RESOURCE_EXHAUSTED
only if RetryInfo is returned ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
. (#4669)RESOURCE_EXHAUSTED
only if RetryInfo is returned ingo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
. (#4669)go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
. (#4679)go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
. (#4679)Fixed
+
,/
byParse
ingo.opentelemetry.io/otel/baggage
as they were rendered as a whitespace. (#4667)+
,/
passed viaOTEL_RESOURCE_ATTRIBUTES
ingo.opentelemetry.io/otel/sdk/resource
as they were rendered as a whitespace. (#4699)+
,/
passed viaOTEL_EXPORTER_OTLP_HEADERS
andOTEL_EXPORTER_OTLP_METRICS_HEADERS
ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
as they were rendered as a whitespace. (#4699)+
,/
passed viaOTEL_EXPORTER_OTLP_HEADERS
andOTEL_EXPORTER_OTLP_METRICS_HEADERS
ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
as they were rendered as a whitespace. (#4699)+
,/
passed viaOTEL_EXPORTER_OTLP_HEADERS
andOTEL_EXPORTER_OTLP_TRACES_HEADERS
ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlptracegrpc
as they were rendered as a whitespace. (#4699)+
,/
passed viaOTEL_EXPORTER_OTLP_HEADERS
andOTEL_EXPORTER_OTLP_TRACES_HEADERS
ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlptracehttp
as they were rendered as a whitespace. (#4699)go.opentelemetry.op/otel/exporters/prometheus
, the exporter no longerCollect
s metrics afterShutdown
is invoked. (#4648)WithCompressor
ingo.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
. (#4695)WithCompressor
ingo.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
. (#4695)Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.