-
Notifications
You must be signed in to change notification settings - Fork 122
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
deps: update opentelemetry-go monorepo to v1 (major) #541
Conversation
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: scheduler/go.sum
|
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #541 +/- ##
==========================================
- Coverage 48.61% 48.48% -0.13%
==========================================
Files 60 60
Lines 5443 5443
==========================================
- Hits 2646 2639 -7
- Misses 2688 2693 +5
- Partials 109 111 +2
Flags with carried forward coverage won't be shown. Click here to find out more. |
Signed-off-by: Renovate Bot <[email protected]>
30f8cbd
to
c4c022c
Compare
Kudos, SonarCloud Quality Gate passed! |
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
This PR contains the following updates:
v0.20.0
->v1.11.2
v0.20.0
->v1.11.2
v0.20.0
->v1.11.2
Release Notes
open-telemetry/opentelemetry-go
v1.11.2
: /0.34.0Compare Source
Added
WithView
Option
is added to thego.opentelemetry.io/otel/sdk/metric
package.This option is used to configure the view(s) a
MeterProvider
will use for allReader
s that are registered with it. (#3387)This can be disabled using the
WithoutScopeInfo()
option added to that package.(#3273, #3357)OTEL_EXPORTER_OTLP_INSECURE
OTEL_EXPORTER_OTLP_TRACES_INSECURE
OTEL_EXPORTER_OTLP_METRICS_INSECURE
OTEL_EXPORTER_OTLP_CLIENT_KEY
OTEL_EXPORTER_OTLP_TRACES_CLIENT_KEY
OTEL_EXPORTER_OTLP_METRICS_CLIENT_KEY
OTEL_EXPORTER_OTLP_CLIENT_CERTIFICATE
OTEL_EXPORTER_OTLP_TRACES_CLIENT_CERTIFICATE
OTEL_EXPORTER_OTLP_METRICS_CLIENT_CERTIFICATE
View
type and relatedNewView
function to create a view according to the OpenTelemetry specification are added togo.opentelemetry.io/otel/sdk/metric
.These additions are replacements for the
View
type andNew
function fromgo.opentelemetry.io/otel/sdk/metric/view
. (#3459)Instrument
andInstrumentKind
type are added togo.opentelemetry.io/otel/sdk/metric
.These additions are replacements for the
Instrument
andInstrumentKind
types fromgo.opentelemetry.io/otel/sdk/metric/view
. (#3459)Stream
type is added togo.opentelemetry.io/otel/sdk/metric
to define a metric data stream a view will produce. (#3459)AssertHasAttributes
allows instrument authors to test that datapoints returned have appropriate attributes. (#3487)Changed
"go.opentelemetry.io/otel/sdk/metric".WithReader
option no longer accepts views to associate with theReader
.Instead, views are now registered directly with the
MeterProvider
via the newWithView
option.The views registered with the
MeterProvider
apply to allReader
s. (#3387)Temporality(view.InstrumentKind) metricdata.Temporality
andAggregation(view.InstrumentKind) aggregation.Aggregation
methods are added to the"go.opentelemetry.io/otel/sdk/metric".Exporter
interface. (#3260)Temporality(view.InstrumentKind) metricdata.Temporality
andAggregation(view.InstrumentKind) aggregation.Aggregation
methods are added to the"go.opentelemetry.io/otel/exporters/otlp/otlpmetric".Client
interface. (#3260)WithTemporalitySelector
andWithAggregationSelector
ReaderOption
s have been changed toManualReaderOption
s in thego.opentelemetry.io/otel/sdk/metric
package. (#3260)go.opentelemetry.io/otel/sdk/metric
package now uses the temporality and aggregation selectors from its configured exporter instead of accepting them as options. (#3260)Fixed
go.opentelemetry.io/otel/exporters/prometheus
exporter fixes duplicated_total
suffixes. (#3369)Reader
s. (#3387)go.opentelemetry.io/otel/bridge/opencensus
) are defined as monotonic sums, instead of non-monotonic. (#3389)Counter
andUpDownCounter
) from the metric SDK now produce delta sums when configured with delta temporality. (#3398)Status
codes in thego.opentelemetry.io/otel/exporters/zipkin
exporter are now exported as all upper case values. (#3340)Aggregation
s fromgo.opentelemetry.io/otel/sdk/metric
with no data are not exported. (#3394, #3436)go.opentelemetry.io/otel/exporters/otlp
exporters. (#3438, #3432)go.opentelemetry.io/otel/exporters/otlp/otlpmetric
exporters. (#3162, #3440)attribute.Value.As[Type]Slice()
. (#3489)Removed
go.opentelemetry.io/otel/exporters/otlp/otlpmetric.Client
interface is removed. (#3486)go.opentelemetry.io/otel/exporters/otlp/otlpmetric.New
function is removed. Use theotlpmetric[http|grpc].New
directly. (#3486)Deprecated
go.opentelemetry.io/otel/sdk/metric/view
package is deprecated.Use
Instrument
,InstrumentKind
,View
, andNewView
ingo.opentelemetry.io/otel/sdk/metric
instead. (#3476)v1.11.1
: /v0.33.0Compare Source
Added
go.opentelemetry.io/otel/exporters/prometheus
registers with a Prometheus registerer on creation. By default, it will register with the default Prometheus default registerer. A non-default registerer can be used by passing theWithRegisterer
option. (#3239)WithAggregationSelector
option to thego.opentelemetry.io/otel/exporters/prometheus
package to change the defaultAggregationSelector
used. (#3341)go.opentelemetry.io/otel/exporters/prometheus
converts theResource
associated with metric exports into atarget_info
metric. (#3285)Changed
"go.opentelemetry.io/otel/exporters/prometheus".New
function is updated to return an error. It will return an error if the exporter fails to register with Prometheus. (#3239)Fixed
OTEL_RESOURCE_ATTRIBUTES
environment variable are decoded. (#2963)baggage.NewMember
function decodes thevalue
parameter instead of directly using it. This fixes the implementation to be compliant with the W3C specification. (#3226)attribute
package are now comparable based on their value, not instance. (#3108 #3252)Shutdown
andForceFlush
methods of the"go.opentelemetry.io/otel/sdk/trace".TraceProvider
no longer return an error when no processor is registered. (#3268)go.opentelemetry.io/otel/exporters/prometheus
cumulatively sums histogram buckets. (#3281)go.opentelemetry.io/otel/exporters/otlpmetric
exporters. (#3284, #3293)Counter
andUpDownCounter
) are interpreted as exact, not incremental, sum values by the metric SDK. (#3350, #3278)UpDownCounters
are now correctly output as Prometheus gauges in thego.opentelemetry.io/otel/exporters/prometheus
exporter. (#3358)go.opentelemetry.io/otel/exporters/prometheus
no longer describes the metrics it will send to Prometheus on startup. Instead the exporter is defined as an "unchecked" collector for Prometheus. This fixes thereader is not registered
warning currently emitted on startup. (#3291 #3342)go.opentelemetry.io/otel/exporters/prometheus
exporter now correctly adds_total
suffixes to counter metrics. (#3360)go.opentelemetry.io/otel/exporters/prometheus
exporter now adds a unit suffix to metric names. This can be disabled using theWithoutUnits()
option added to that package. (#3352)v1.11.0
: /v0.32.3Compare Source
Retracts the
v0.32.2
version ofgo.opentelemetry.io/otel/exporters/otlpmetric/otlpmetricgrpc
andgo.opentelemetry.io/otel/exporters/otlpmetric/otlpmetrichttp
given they include unresolvable dependencies.Added
go.opentelemetry.io/otel/exporters/otlptrace/otlptracegrpc
andgo.opentelemetry.io/otel/exporters/otlptrace/otlptracehttp
). (#3261)Changed
span.SetStatus
has been updated such that calls that lower the status are now no-ops. (#3214)golang.org/x/sys/unix
fromv0.0.0-20210423185535-09eb48e85fd7
tov0.0.0-20220919091848-fb04ddd9f9c8
.This addresses GO-2022-0493. (#3235)
v1.10.0
Compare Source
Added
Include compatibility testing and document support. (#3077)
Changed
SpanKind
in OpenTracing bridge (go.opentelemetry.io/otel/bridge/opentracing
). (#3096)context
will no longer cause a panic. (#3110)v1.9.0
: /v0.0.3Compare Source
Added
go.opentelemetry.io/otel/schema/v1.1
package. (#2999)go.opentelemetry.io/otel/semconv/v1.11.0
package.The package contains semantic conventions from the
v1.11.0
version of the OpenTelemetry specification. (#3009)go.opentelemetry.io/otel/semconv/v1.12.0
package.The package contains semantic conventions from the
v1.12.0
version of the OpenTelemetry specification. (#3010)http.method
attribute to HTTP server metric from allgo.opentelemetry.io/otel/semconv/*
packages. (#3018)Fixed
go.opentelemetry.io/otel/bridge/opentracing
package. (#3029)v1.8.0
: /v0.31.0Compare Source
1.8.0/0.31.0 - 2022-07-08
Added
opentracing.TextMap
format in theInject
andExtract
methodsof the
"go.opentelemetry.io/otel/bridge/opentracing".BridgeTracer
type. (#2911)Changed
crosslink
make target has been updated to use thego.opentelemetry.io/build-tools/crosslink
package. (#2886)go.opentelemetry.io/otel/sdk/instrumentation
package renameLibrary
toScope
and aliasLibrary
asScope
(#2976)nonrecording
tometric
package. (#2866)Removed
Deprecated
Library
struct in thego.opentelemetry.io/otel/sdk/instrumentation
package is deprecated.Use the equivalent
Scope
struct instead. (#2977)ReadOnlySpan.InstrumentationLibrary
method from thego.opentelemetry.io/otel/sdk/trace
package is deprecated.Use the equivalent
ReadOnlySpan.InstrumentationScope
method instead. (#2977)v1.7.0
: /v0.30.0Compare Source
Added
go.opentelemetry.io/otel/semconv/v1.8.0
package.The package contains semantic conventions from the
v1.8.0
version of the OpenTelemetry specification. (#2763)go.opentelemetry.io/otel/semconv/v1.9.0
package.The package contains semantic conventions from the
v1.9.0
version of the OpenTelemetry specification. (#2792)go.opentelemetry.io/otel/semconv/v1.10.0
package.The package contains semantic conventions from the
v1.10.0
version of the OpenTelemetry specification. (#2842)Fixed
testing
package in non-tests builds of thego.opentelemetry.io/otel
package. (#2786)Changed
WithLabelEncoder
option from thego.opentelemetry.io/otel/exporters/stdout/stdoutmetric
package is renamed toWithAttributeEncoder
. (#2790)LabelFilterSelector
interface fromgo.opentelemetry.io/otel/sdk/metric/processor/reducer
is renamed toAttributeFilterSelector
.The method included in the renamed interface also changed from
LabelFilterFor
toAttributeFilterFor
. (#2790)Metadata.Labels
method from thego.opentelemetry.io/otel/sdk/metric/export
package is renamed toMetadata.Attributes
.Consequentially, the
Record
type from the same package also has had the embedded method renamed. (#2790)Deprecated
Iterator.Label
method in thego.opentelemetry.io/otel/attribute
package is deprecated.Use the equivalent
Iterator.Attribute
method instead. (#2790)Iterator.IndexedLabel
method in thego.opentelemetry.io/otel/attribute
package is deprecated.Use the equivalent
Iterator.IndexedAttribute
method instead. (#2790)MergeIterator.Label
method in thego.opentelemetry.io/otel/attribute
package is deprecated.Use the equivalent
MergeIterator.Attribute
method instead. (#2790)Removed
Batch
type from thego.opentelemetry.io/otel/sdk/metric/metrictest
package. (#2864)Measurement
type from thego.opentelemetry.io/otel/sdk/metric/metrictest
package. (#2864)v1.6.3
Compare Source
Fixed
MeterProvider
,TracerProvider
, andTextMapPropagator
types to be set. (#2772, #2773)v1.6.2
Compare Source
1.6.2 - 2022-04-06
Changed
go.opentelemetry.io/proto/otlp
ingo.opentelemetry.io/otel/exporters/otlp/otlptrace
fromv0.12.1
tov0.15.0
.This replaces the use of the now deprecated
InstrumentationLibrary
andInstrumentationLibrarySpans
types and fields in the proto library with the equivalentInstrumentationScope
andScopeSpans
. (#2748)v1.6.1
Compare Source
Fixed
go.opentelemetry.io/otel/schema/*
packages now use the correct schema URL for theirSchemaURL
constant. Instead of using"https://opentelemetry.io/schemas/v<version>"
they now use the correct URL without av
prefix,"https://opentelemetry.io/schemas/<version>"
. (#2743, #2744)Security
go.opentelemetry.io/proto/otlp
fromv0.12.0
tov0.12.1
. This includes an indirect upgrade ofgithub.com/grpc-ecosystem/grpc-gateway
which resolves a vulnerability fromgopkg.in/yaml.v2
in versionv2.2.3
. (#2724, #2728)v1.6.0
: /v0.28.0Compare Source
This update is a breaking change of the unstable Metrics API.
Code instrumented with the
go.opentelemetry.io/otel/metric
will need to be modified.Added
New mapping functions have been made available in
sdk/metric/aggregator/exponential/mapping
for other OpenTelemetry projects to take dependencies on. (#2502)OTEL_TRACES_SAMPLER
andOTEL_TRACES_SAMPLER_ARG
environment variables. (#2305, #2517)metric/global
for obtaining and setting the globalMeterProvider
. (#2660)Changed
The metrics API has been significantly changed to match the revised OpenTelemetry specification.
High-level changes include:
InstrumentProvider
s.These
InstrumentProvider
s are managed with aMeter
.Meter
.Be sure to check out the metric module documentation for more information on how to use the revised API. (#2587, #2660)
Fixed
v1.5.0
Compare Source
Added
The following environment variables are supported. (#2606, #2637)
OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT
OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT
OTEL_SPAN_EVENT_COUNT_LIMIT
OTEL_EVENT_ATTRIBUTE_COUNT_LIMIT
OTEL_SPAN_LINK_COUNT_LIMIT
OTEL_LINK_ATTRIBUTE_COUNT_LIMIT
If the provided environment variables are invalid (negative), the default values would be used.
gc
runtime name togo
(#2560)The new
AttributeValueLengthLimit
field is added to the"go.opentelemetry.io/otel/sdk/trace".SpanLimits
type to configure this limit for aTracerProvider
.The default limit for this resource is "unlimited". (#2637)
WithRawSpanLimits
option togo.opentelemetry.io/otel/sdk/trace
.This option replaces the
WithSpanLimits
option.Zero or negative values will not be changed to the default value like
WithSpanLimits
does.Setting a limit to zero will effectively disable the related resource it limits and setting to a negative value will mean that resource is unlimited.
Consequentially, limits should be constructed using
NewSpanLimits
and updated accordingly. (#2637)Changed
Member
when capacity is reached. (#2592)oltptrace
exporter. (#2601)otlpmetric
andotlptrace
configuration. (#2639)sdk/trace.BatchSpanProcessor
to reflect the count is cumulative. (#2640)envconfig
package for OTLP exporters. (#2608)http.Request.Host
is empty, fall back to useURL.Host
when populatinghttp.host
in thesemconv
packages. (#2661)Fixed
4318
instead of4317
for theotlpmetrichttp
andotlptracehttp
client. (#2614, #2625)Deprecated
"go.opentelemetry.io/otel/sdk/trace".WithSpanLimits
.Use
WithRawSpanLimits
instead.That option allows setting unlimited and zero limits, this option does not.
This option will be kept until the next major version incremented release. (#2637)
v1.4.1
Compare Source
Fixed
BatchSpanProcessor
. (#2615)v1.4.0
: /v0.27.0Compare Source
Added
OTEL_EXPORTER_ZIPKIN_ENDPOINT
environment variable to specify zipkin collector endpoint. (#2490)TracerProvider
s, andTracer
s for debugging.To enable use a logger with Verbosity (V level)
>=1
. (#2500)The following environment variables are used. (#2515)
OTEL_BSP_SCHEDULE_DELAY
OTEL_BSP_EXPORT_TIMEOUT
OTEL_BSP_MAX_QUEUE_SIZE
.OTEL_BSP_MAX_EXPORT_BATCH_SIZE
Changed
Resource
attributes in theTags
field. (#2589)Deprecated
go.opentelemetry.io/otel/sdk/export/metric
.Use the
go.opentelemetry.io/otel/sdk/metric
module instead. (#2382)"go.opentelemetry.io/otel/sdk/metric".AtomicFieldOffsets
. (#2445)Fixed
otlpmetric.Client
interface'sUploadMetrics
method to accept a singleResourceMetrics
instead of a slice of them. (#2491)+inf
bucket. (#2419, #2493)NewMember
and not also when adding it to the baggage itself. (#2522)go.opentelemetry.io/otel/sdk/trace
package when capacity is reached is fixed to be in compliance with the OpenTelemetry specification.Instead of dropping the least-recently-used attribute, the last added attribute is dropped.
This drop order still only applies to attributes with unique keys not already contained in the span.
If an attribute is added with a key already contained in the span, that attribute is updated to the new value being added. (#2576)
Removed
go.opentelemetry.io/proto/otlp
fromv0.11.0
tov0.12.0
. This version removes a number of deprecated methods. (#2546)Metric.GetIntGauge()
Metric.GetIntHistogram()
Metric.GetIntSum()
v1.3.0
: /v0.26.0Compare Source
We have updated the project minimum supported Go version to 1.16
Added
This can be used by the SDK and API to provide users with feedback of the internal state.
To enable verbose logs configure the logger which will print V(1) logs. For debugging information configure to print V(5) logs. (#2343)
WithRetry
Option
and theRetryConfig
type to thego.opentelemetry.io/otel/exporter/otel/otlpmetric/otlpmetrichttp
package to specify retry behavior consistently. (#2425)SpanStatusFromHTTPStatusCodeAndSpanKind
to allsemconv
packages to return a span status code similar toSpanStatusFromHTTPStatusCode
, but exclude4XX
HTTP errors as span errors if the span is of server kind. (#2296)Changed
"go.opentelemetry.io/otel/exporter/otel/otlptrace/otlptracegrpc".Client
now uses the underlying gRPCClientConn
to handle name resolution, TCP connection establishment (with retries and backoff) and TLS handshakes, and handling errors on established connections by re-resolving the name and reconnecting. (#2329)"go.opentelemetry.io/otel/exporter/otel/otlpmetric/otlpmetricgrpc".Client
now uses the underlying gRPCClientConn
to handle name resolution, TCP connection establishment (with retries and backoff) and TLS handshakes, and handling errors on established connections by re-resolving the name and reconnecting. (#2425)"go.opentelemetry.io/otel/exporter/otel/otlpmetric/otlpmetricgrpc".RetrySettings
type is renamed toRetryConfig
. (#2425)go.opentelemetry.io/otel/exporter/otel/*
gRPC exporters now default to using the host's root CA set if none are provided by the user andWithInsecure
is not specified. (#2432)resource.Default
to be evaluated the first time it is called, rather than on import. This allows the caller the option to updateOTEL_RESOURCE_ATTRIBUTES
first, such as withos.Setenv
. (#2371)Fixed
go.opentelemetry.io/otel/exporter/otel/*
exporters are updated to handle per-signal and universal endpoints according to the OpenTelemetry specification.Any per-signal endpoint set via an
OTEL_EXPORTER_OTLP_<signal>_ENDPOINT
environment variable is now used without modification of the path.When
OTEL_EXPORTER_OTLP_ENDPOINT
is set, if it contains a path, that path is used as a base path which per-signal paths are appended to. (#2433)go.opentelemetry.io/otel/exporter/jaeger
correctly sets theotel.status_code
value to be a string ofERROR
orOK
instead of an integer code. (#2439, #2440)Deprecated
"go.opentelemetry.io/otel/exporter/otel/otlpmetric/otlpmetrichttp".WithMaxAttempts
Option
, use the newWithRetry
Option
instead. (#2425)"go.opentelemetry.io/otel/exporter/otel/otlpmetric/otlpmetrichttp".WithBackoff
Option
, use the newWithRetry
Option
instead. (#2425)Removed
v1.2.0
: /v0.25.0Compare Source
Changed
export.ExportKind
,export.ExportKindSelector
types have been renamed toaggregation.Temporality
andaggregation.TemporalitySelector
respectively to keep in line with current specification and protocol along with built-in selectors (e.g.,aggregation.CumulativeTemporalitySelector
, ...). (#2274)Exporter
interface now requires aTemporalitySelector
method instead of anExportKindSelector
. (#2274)metric/sdkapi
package has been created to relocate the API-to-SDK interface:metric
tometric/sdkapi
:Descriptor
,MeterImpl
,InstrumentImpl
,SyncImpl
,BoundSyncImpl
,AsyncImpl
,AsyncRunner
,AsyncSingleRunner
, andAsyncBatchRunner
Observation
,Measurement
.sdkapi.NewNoopAsyncInstrument()
andsdkapi.NewNoopSyncInstrument()
are provided instead. (#2271)BatchSpanProcessor
to export all queued spans whenForceFlush
is called. (#2080, #2335)Added
"go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc".WithGRPCConn
option so the exporter can reuse an existing gRPC connection. (#2002)schema
module to help parse Schema Files in OTEP 0152 format. (#2267)MapCarrier
to thego.opentelemetry.io/otel/propagation
package to hold propagated coss-cutting concerns as amap[string]string
held in memory. (#2334)v1.1.0
Compare Source
Added
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc".WithGRPCConn
option so the exporter can reuse an existing gRPC connection. (#2002)go.opentelemetry.io/otel/semconv/v1.7.0
package.The package contains semantic conventions from the
v1.7.0
version of the OpenTelemetry specification. (#2320)go.opentelemetry.io/otel/semconv/v1.6.1
package.The package contains semantic conventions from the
v1.6.1
version of the OpenTelemetry specification. (#2321)go.opentelemetry.io/otel/semconv/v1.5.0
package.The package contains semantic conventions from the
v1.5.0
version of the OpenTelemetry specification. (#2322)semconv/v1.4.0
package note the following name changes:K8SReplicasetUIDKey
->K8SReplicaSetUIDKey
K8SReplicasetNameKey
->K8SReplicaSetNameKey
K8SStatefulsetUIDKey
->K8SStatefulSetUIDKey
k8SStatefulsetNameKey
->K8SStatefulSetNameKey
K8SDaemonsetUIDKey
->K8SDaemonSetUIDKey
K8SDaemonsetNameKey
->K8SDaemonSetNameKey
Changed
Fixed
"go.opentelemetry.io/otel/semconv/v1.4.0".HTTPServerAttributesFromHTTPRequest
now correctly only sets the HTTP client IP attribute even if the connection was routed with proxies and there are multiple addresses in theX-Forwarded-For
header. (#2282, #2284)"go.opentelemetry.io/otel/semconv/v1.4.0".NetAttributesFromHTTPRequest
function correctly handles IPv6 addresses as IP addresses and sets the correct net peer IP instead of the net peer hostname attribute. (#2283, #2285)v1.0.1
: /Metrics v0.24.0Compare Source
1.0.1 - 2021-10-01
Fixed
Metrics 0.24.0 - 2021-10-01
Changed
Export()
function takes a new two-level reader interface for iterating over results one instrumentation library at a time. (#2197)"go.opentelemetry.io/otel/sdk/export/metric".CheckpointSet
is renamedReader
."go.opentelemetry.io/otel/sdk/export/metric".InstrumentationLibraryReader
.v1.0.0
Compare Source
This is the first stable release for the project.
This release includes an API and SDK for the tracing signal that will comply with the stability guarantees defined by the projects versioning policy.
Added
Fixed
Removed
"go.opentelemetry.io/otel/exporters/zipkin".WithSDKOptions
function. (#2248)go.opentelemetry.io/otel/oteltest
. (#2234)go.opentelemetry.io/otel/bridge/opencensus/utils
. (#2233)go.opentelemetry.io/otel/attribute
package.Use the typed functions and methods added to the package instead. (#2235)
Key.Array
method is removed.Array
function is removed.Any
function is removed.ArrayValue
function is removed.AsArray
function is removed.Configuration
📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/Vienna, 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.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Mend Renovate. View repository job log here.