fix(deps): update opentelemetry-go monorepo to v1.11.1 #18

Merged
kjuulh merged 1 commits from renovate/opentelemetry-go-monorepo into main 2022-10-27 08:02:30 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
go.opentelemetry.io/otel require minor v1.6.3 -> v1.11.1
go.opentelemetry.io/otel/sdk require minor v1.6.3 -> v1.11.1
go.opentelemetry.io/otel/trace require minor v1.6.3 -> v1.11.1

Release Notes

open-telemetry/opentelemetry-go

v1.11.1

Compare Source

Added
  • The Prometheus exporter in 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 the WithRegisterer option. (#​3239)
  • Added the WithAggregationSelector option to the go.opentelemetry.io/otel/exporters/prometheus package to change the default AggregationSelector used. (#​3341)
  • The Prometheus exporter in go.opentelemetry.io/otel/exporters/prometheus converts the Resource associated with metric exports into a target_info metric. (#​3285)
Changed
  • The "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
  • The URL-encoded values from the OTEL_RESOURCE_ATTRIBUTES environment variable are decoded. (#​2963)
  • The baggage.NewMember function decodes the value parameter instead of directly using it. This fixes the implementation to be compliant with the W3C specification. (#​3226)
  • Slice attributes of the attribute package are now comparable based on their value, not instance. (#​3108 #​3252)
  • The Shutdown and ForceFlush methods of the "go.opentelemetry.io/otel/sdk/trace".TraceProvider no longer return an error when no processor is registered. (#​3268)
  • The Prometheus exporter in go.opentelemetry.io/otel/exporters/prometheus cumulatively sums histogram buckets. (#​3281)
  • The sum of each histogram data point is now uniquely exported by the go.opentelemetry.io/otel/exporters/otlpmetric exporters. (#​3284, #​3293)
  • Recorded values for asynchronous counters (Counter and UpDownCounter) are interpreted as exact, not incremental, sum values by the metric SDK. (#​3350, #​3278)
  • UpDownCounters are now correctly output as Prometheus gauges in the go.opentelemetry.io/otel/exporters/prometheus exporter. (#​3358)
  • The Prometheus exporter in 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 the reader is not registered warning currently emitted on startup. (#​3291 #​3342)
  • The go.opentelemetry.io/otel/exporters/prometheus exporter now correctly adds _total suffixes to counter metrics. (#​3360)
  • The go.opentelemetry.io/otel/exporters/prometheus exporter now adds a unit suffix to metric names. This can be disabled using the WithoutUnits() option added to that package. (#​3352)

v1.11.0

Compare Source

Retracts the v0.32.2 version of go.opentelemetry.io/otel/exporters/otlpmetric/otlpmetricgrpc and go.opentelemetry.io/otel/exporters/otlpmetric/otlpmetrichttp given they include unresolvable dependencies.

Added
  • Add default User-Agent header to OTLP exporter requests (go.opentelemetry.io/otel/exporters/otlptrace/otlptracegrpc and go.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)
  • Upgrade golang.org/x/sys/unix from v0.0.0-20210423185535-09eb48e85fd7 to v0.0.0-20220919091848-fb04ddd9f9c8.
    This addresses GO-2022-0493. (#​3235)

v1.10.0

Compare Source

Added
  • Support Go 1.19. (#​3077)
    Include compatibility testing and document support. (#​3077)
  • Support the OTLP ExportTracePartialSuccess response; these are passed to the registered error handler. (#​3106)
  • Upgrade go.opentelemetry.io/proto/otlp from v0.18.0 to v0.19.0 (#​3107)
Changed
  • Fix misidentification of OpenTelemetry SpanKind in OpenTracing bridge (go.opentelemetry.io/otel/bridge/opentracing). (#​3096)
  • Attempting to start a span with a nil context will no longer cause a panic. (#​3110)
  • All exporters will be shutdown even if one reports an error (#​3091)
  • Ensure valid UTF-8 when truncating over-length attribute values. (#​3156)

v1.9.0

Compare Source

Added
  • Add support for Schema Files format 1.1.x (metric "split" transform) with the new go.opentelemetry.io/otel/schema/v1.1 package. (#​2999)
  • Add the 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)
  • Add the 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)
  • Add the http.method attribute to HTTP server metric from all go.opentelemetry.io/otel/semconv/* packages. (#​3018)
Fixed
  • Invalid warning for context setup being deferred in go.opentelemetry.io/otel/bridge/opentracing package. (#​3029)

v1.8.0

Compare Source

1.8.0/0.31.0 - 2022-07-08

Added
  • Add support for opentracing.TextMap format in the Inject and Extract methods
    of the "go.opentelemetry.io/otel/bridge/opentracing".BridgeTracer type. (#​2911)
Changed
  • The crosslink make target has been updated to use the go.opentelemetry.io/build-tools/crosslink package. (#​2886)
  • In the go.opentelemetry.io/otel/sdk/instrumentation package rename Library to Scope and alias Library as Scope (#​2976)
  • Move metric no-op implementation form nonrecording to metric package. (#​2866)
Removed
  • Support for go1.16. Support is now only for go1.17 and go1.18 (#​2917)
Deprecated
  • The Library struct in the go.opentelemetry.io/otel/sdk/instrumentation package is deprecated.
    Use the equivalent Scope struct instead. (#​2977)
  • The ReadOnlySpan.InstrumentationLibrary method from the go.opentelemetry.io/otel/sdk/trace package is deprecated.
    Use the equivalent ReadOnlySpan.InstrumentationScope method instead. (#​2977)

v1.7.0

Compare Source

Added
  • Add the 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)
  • Add the 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)
  • Add the 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)
  • Added an in-memory exporter to metrictest to aid testing with a full SDK. (#​2776)
Fixed
  • Globally delegated instruments are unwrapped before delegating asynchronous callbacks. (#​2784)
  • Remove import of testing package in non-tests builds of the go.opentelemetry.io/otel package. (#​2786)
Changed
  • The WithLabelEncoder option from the go.opentelemetry.io/otel/exporters/stdout/stdoutmetric package is renamed to WithAttributeEncoder. (#​2790)
  • The LabelFilterSelector interface from go.opentelemetry.io/otel/sdk/metric/processor/reducer is renamed to AttributeFilterSelector.
    The method included in the renamed interface also changed from LabelFilterFor to AttributeFilterFor. (#​2790)
  • The Metadata.Labels method from the go.opentelemetry.io/otel/sdk/metric/export package is renamed to Metadata.Attributes.
    Consequentially, the Record type from the same package also has had the embedded method renamed. (#​2790)
Deprecated
  • The Iterator.Label method in the go.opentelemetry.io/otel/attribute package is deprecated.
    Use the equivalent Iterator.Attribute method instead. (#​2790)
  • The Iterator.IndexedLabel method in the go.opentelemetry.io/otel/attribute package is deprecated.
    Use the equivalent Iterator.IndexedAttribute method instead. (#​2790)
  • The MergeIterator.Label method in the go.opentelemetry.io/otel/attribute package is deprecated.
    Use the equivalent MergeIterator.Attribute method instead. (#​2790)
Removed
  • Removed the Batch type from the go.opentelemetry.io/otel/sdk/metric/metrictest package. (#​2864)
  • Removed the Measurement type from the go.opentelemetry.io/otel/sdk/metric/metrictest package. (#​2864)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) | require | minor | `v1.6.3` -> `v1.11.1` | | [go.opentelemetry.io/otel/sdk](https://github.com/open-telemetry/opentelemetry-go) | require | minor | `v1.6.3` -> `v1.11.1` | | [go.opentelemetry.io/otel/trace](https://github.com/open-telemetry/opentelemetry-go) | require | minor | `v1.6.3` -> `v1.11.1` | --- ### Release Notes <details> <summary>open-telemetry/opentelemetry-go</summary> ### [`v1.11.1`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.11.1) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v1.11.0...v1.11.1) ##### Added - The Prometheus exporter in `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 the `WithRegisterer` option. ([#&#8203;3239](https://github.com/open-telemetry/opentelemetry-go/issues/3239)) - Added the `WithAggregationSelector` option to the `go.opentelemetry.io/otel/exporters/prometheus` package to change the default `AggregationSelector` used. ([#&#8203;3341](https://github.com/open-telemetry/opentelemetry-go/issues/3341)) - The Prometheus exporter in `go.opentelemetry.io/otel/exporters/prometheus` converts the `Resource` associated with metric exports into a `target_info` metric. ([#&#8203;3285](https://github.com/open-telemetry/opentelemetry-go/issues/3285)) ##### Changed - The `"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. ([#&#8203;3239](https://github.com/open-telemetry/opentelemetry-go/issues/3239)) ##### Fixed - The URL-encoded values from the `OTEL_RESOURCE_ATTRIBUTES` environment variable are decoded. ([#&#8203;2963](https://github.com/open-telemetry/opentelemetry-go/issues/2963)) - The `baggage.NewMember` function decodes the `value` parameter instead of directly using it. This fixes the implementation to be compliant with the W3C specification. ([#&#8203;3226](https://github.com/open-telemetry/opentelemetry-go/issues/3226)) - Slice attributes of the `attribute` package are now comparable based on their value, not instance. ([#&#8203;3108](https://github.com/open-telemetry/opentelemetry-go/issues/3108) [#&#8203;3252](https://github.com/open-telemetry/opentelemetry-go/issues/3252)) - The `Shutdown` and `ForceFlush` methods of the `"go.opentelemetry.io/otel/sdk/trace".TraceProvider` no longer return an error when no processor is registered. ([#&#8203;3268](https://github.com/open-telemetry/opentelemetry-go/issues/3268)) - The Prometheus exporter in `go.opentelemetry.io/otel/exporters/prometheus` cumulatively sums histogram buckets. ([#&#8203;3281](https://github.com/open-telemetry/opentelemetry-go/issues/3281)) - The sum of each histogram data point is now uniquely exported by the `go.opentelemetry.io/otel/exporters/otlpmetric` exporters. ([#&#8203;3284](https://github.com/open-telemetry/opentelemetry-go/issues/3284), [#&#8203;3293](https://github.com/open-telemetry/opentelemetry-go/issues/3293)) - Recorded values for asynchronous counters (`Counter` and `UpDownCounter`) are interpreted as exact, not incremental, sum values by the metric SDK. ([#&#8203;3350](https://github.com/open-telemetry/opentelemetry-go/issues/3350), [#&#8203;3278](https://github.com/open-telemetry/opentelemetry-go/issues/3278)) - `UpDownCounters` are now correctly output as Prometheus gauges in the `go.opentelemetry.io/otel/exporters/prometheus` exporter. ([#&#8203;3358](https://github.com/open-telemetry/opentelemetry-go/issues/3358)) - The Prometheus exporter in `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 the `reader is not registered` warning currently emitted on startup. ([#&#8203;3291](https://github.com/open-telemetry/opentelemetry-go/issues/3291) [#&#8203;3342](https://github.com/open-telemetry/opentelemetry-go/issues/3342)) - The `go.opentelemetry.io/otel/exporters/prometheus` exporter now correctly adds `_total` suffixes to counter metrics. ([#&#8203;3360](https://github.com/open-telemetry/opentelemetry-go/issues/3360)) - The `go.opentelemetry.io/otel/exporters/prometheus` exporter now adds a unit suffix to metric names. This can be disabled using the `WithoutUnits()` option added to that package. ([#&#8203;3352](https://github.com/open-telemetry/opentelemetry-go/issues/3352)) ### [`v1.11.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.11.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v1.10.0...v1.11.0) Retracts the `v0.32.2` version of `go.opentelemetry.io/otel/exporters/otlpmetric/otlpmetricgrpc` and `go.opentelemetry.io/otel/exporters/otlpmetric/otlpmetrichttp` given they include unresolvable dependencies. ##### Added - Add default User-Agent header to OTLP exporter requests (`go.opentelemetry.io/otel/exporters/otlptrace/otlptracegrpc` and `go.opentelemetry.io/otel/exporters/otlptrace/otlptracehttp`). ([#&#8203;3261](https://github.com/open-telemetry/opentelemetry-go/issues/3261)) ##### Changed - `span.SetStatus` has been updated such that calls that lower the status are now no-ops. ([#&#8203;3214](https://github.com/open-telemetry/opentelemetry-go/issues/3214)) - Upgrade `golang.org/x/sys/unix` from `v0.0.0-20210423185535-09eb48e85fd7` to `v0.0.0-20220919091848-fb04ddd9f9c8`. This addresses [GO-2022-0493](https://pkg.go.dev/vuln/GO-2022-0493). ([#&#8203;3235](https://github.com/open-telemetry/opentelemetry-go/issues/3235)) ### [`v1.10.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.10.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v1.9.0...v1.10.0) ##### Added - Support Go 1.19. ([#&#8203;3077](https://github.com/open-telemetry/opentelemetry-go/pull/3077)) Include compatibility testing and document support. ([#&#8203;3077](https://github.com/open-telemetry/opentelemetry-go/pull/3077)) - Support the OTLP ExportTracePartialSuccess response; these are passed to the registered error handler. ([#&#8203;3106](https://github.com/open-telemetry/opentelemetry-go/pull/3106)) - Upgrade go.opentelemetry.io/proto/otlp from v0.18.0 to v0.19.0 ([#&#8203;3107](https://github.com/open-telemetry/opentelemetry-go/pull/3107)) ##### Changed - Fix misidentification of OpenTelemetry `SpanKind` in OpenTracing bridge (`go.opentelemetry.io/otel/bridge/opentracing`). ([#&#8203;3096](https://github.com/open-telemetry/opentelemetry-go/pull/3096)) - Attempting to start a span with a nil `context` will no longer cause a panic. ([#&#8203;3110](https://github.com/open-telemetry/opentelemetry-go/pull/3110)) - All exporters will be shutdown even if one reports an error ([#&#8203;3091](https://github.com/open-telemetry/opentelemetry-go/pull/3091)) - Ensure valid UTF-8 when truncating over-length attribute values. ([#&#8203;3156](https://github.com/open-telemetry/opentelemetry-go/pull/3156)) ### [`v1.9.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.9.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v1.8.0...v1.9.0) ##### Added - Add support for Schema Files format 1.1.x (metric "split" transform) with the new `go.opentelemetry.io/otel/schema/v1.1` package. ([#&#8203;2999](https://github.com/open-telemetry/opentelemetry-go/issues/2999)) - Add the `go.opentelemetry.io/otel/semconv/v1.11.0` package. The package contains semantic conventions from the `v1.11.0` version of the OpenTelemetry specification. ([#&#8203;3009](https://github.com/open-telemetry/opentelemetry-go/issues/3009)) - Add the `go.opentelemetry.io/otel/semconv/v1.12.0` package. The package contains semantic conventions from the `v1.12.0` version of the OpenTelemetry specification. ([#&#8203;3010](https://github.com/open-telemetry/opentelemetry-go/issues/3010)) - Add the `http.method` attribute to HTTP server metric from all `go.opentelemetry.io/otel/semconv/*` packages. ([#&#8203;3018](https://github.com/open-telemetry/opentelemetry-go/issues/3018)) ##### Fixed - Invalid warning for context setup being deferred in `go.opentelemetry.io/otel/bridge/opentracing` package. ([#&#8203;3029](https://github.com/open-telemetry/opentelemetry-go/issues/3029)) ### [`v1.8.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.8.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v1.7.0...v1.8.0) #### 1.8.0/0.31.0 - 2022-07-08 ##### Added - Add support for `opentracing.TextMap` format in the `Inject` and `Extract` methods of the `"go.opentelemetry.io/otel/bridge/opentracing".BridgeTracer` type. ([#&#8203;2911](https://github.com/open-telemetry/opentelemetry-go/issues/2911)) ##### Changed - The `crosslink` make target has been updated to use the `go.opentelemetry.io/build-tools/crosslink` package. ([#&#8203;2886](https://github.com/open-telemetry/opentelemetry-go/issues/2886)) - In the `go.opentelemetry.io/otel/sdk/instrumentation` package rename `Library` to `Scope` and alias `Library` as `Scope` ([#&#8203;2976](https://github.com/open-telemetry/opentelemetry-go/issues/2976)) - Move metric no-op implementation form `nonrecording` to `metric` package. ([#&#8203;2866](https://github.com/open-telemetry/opentelemetry-go/issues/2866)) ##### Removed - Support for go1.16. Support is now only for go1.17 and go1.18 ([#&#8203;2917](https://github.com/open-telemetry/opentelemetry-go/issues/2917)) ##### Deprecated - The `Library` struct in the `go.opentelemetry.io/otel/sdk/instrumentation` package is deprecated. Use the equivalent `Scope` struct instead. ([#&#8203;2977](https://github.com/open-telemetry/opentelemetry-go/issues/2977)) - The `ReadOnlySpan.InstrumentationLibrary` method from the `go.opentelemetry.io/otel/sdk/trace` package is deprecated. Use the equivalent `ReadOnlySpan.InstrumentationScope` method instead. ([#&#8203;2977](https://github.com/open-telemetry/opentelemetry-go/issues/2977)) ### [`v1.7.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v1.7.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v1.6.3...v1.7.0) ##### Added - Add the `go.opentelemetry.io/otel/semconv/v1.8.0` package. The package contains semantic conventions from the `v1.8.0` version of the OpenTelemetry specification. ([#&#8203;2763](https://github.com/open-telemetry/opentelemetry-go/issues/2763)) - Add the `go.opentelemetry.io/otel/semconv/v1.9.0` package. The package contains semantic conventions from the `v1.9.0` version of the OpenTelemetry specification. ([#&#8203;2792](https://github.com/open-telemetry/opentelemetry-go/issues/2792)) - Add the `go.opentelemetry.io/otel/semconv/v1.10.0` package. The package contains semantic conventions from the `v1.10.0` version of the OpenTelemetry specification. ([#&#8203;2842](https://github.com/open-telemetry/opentelemetry-go/issues/2842)) - Added an in-memory exporter to metrictest to aid testing with a full SDK. ([#&#8203;2776](https://github.com/open-telemetry/opentelemetry-go/issues/2776)) ##### Fixed - Globally delegated instruments are unwrapped before delegating asynchronous callbacks. ([#&#8203;2784](https://github.com/open-telemetry/opentelemetry-go/issues/2784)) - Remove import of `testing` package in non-tests builds of the `go.opentelemetry.io/otel` package. ([#&#8203;2786](https://github.com/open-telemetry/opentelemetry-go/issues/2786)) ##### Changed - The `WithLabelEncoder` option from the `go.opentelemetry.io/otel/exporters/stdout/stdoutmetric` package is renamed to `WithAttributeEncoder`. ([#&#8203;2790](https://github.com/open-telemetry/opentelemetry-go/issues/2790)) - The `LabelFilterSelector` interface from `go.opentelemetry.io/otel/sdk/metric/processor/reducer` is renamed to `AttributeFilterSelector`. The method included in the renamed interface also changed from `LabelFilterFor` to `AttributeFilterFor`. ([#&#8203;2790](https://github.com/open-telemetry/opentelemetry-go/issues/2790)) - The `Metadata.Labels` method from the `go.opentelemetry.io/otel/sdk/metric/export` package is renamed to `Metadata.Attributes`. Consequentially, the `Record` type from the same package also has had the embedded method renamed. ([#&#8203;2790](https://github.com/open-telemetry/opentelemetry-go/issues/2790)) ##### Deprecated - The `Iterator.Label` method in the `go.opentelemetry.io/otel/attribute` package is deprecated. Use the equivalent `Iterator.Attribute` method instead. ([#&#8203;2790](https://github.com/open-telemetry/opentelemetry-go/issues/2790)) - The `Iterator.IndexedLabel` method in the `go.opentelemetry.io/otel/attribute` package is deprecated. Use the equivalent `Iterator.IndexedAttribute` method instead. ([#&#8203;2790](https://github.com/open-telemetry/opentelemetry-go/issues/2790)) - The `MergeIterator.Label` method in the `go.opentelemetry.io/otel/attribute` package is deprecated. Use the equivalent `MergeIterator.Attribute` method instead. ([#&#8203;2790](https://github.com/open-telemetry/opentelemetry-go/issues/2790)) ##### Removed - Removed the `Batch` type from the `go.opentelemetry.io/otel/sdk/metric/metrictest` package. ([#&#8203;2864](https://github.com/open-telemetry/opentelemetry-go/issues/2864)) - Removed the `Measurement` type from the `go.opentelemetry.io/otel/sdk/metric/metrictest` package. ([#&#8203;2864](https://github.com/open-telemetry/opentelemetry-go/issues/2864)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzMi4yNDEuMTEifQ==-->
kjuulh force-pushed renovate/opentelemetry-go-monorepo from 41e4b4d219 to aa0927ecf4 2022-10-26 18:27:13 +02:00 Compare
kjuulh force-pushed renovate/opentelemetry-go-monorepo from aa0927ecf4 to 5d28b7c078 2022-10-26 19:28:09 +02:00 Compare
kjuulh merged commit 5d28b7c078 into main 2022-10-27 08:02:30 +02:00
This repo is archived. You cannot comment on pull requests.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/dagger#18
No description provided.