-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Release v1.23.0/v0.45.1 #4885
Release v1.23.0/v0.45.1 #4885
Conversation
1f47802
to
694d468
Compare
The |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4885 +/- ##
=====================================
Coverage 82.6% 82.6%
=====================================
Files 232 232
Lines 18862 18868 +6
=====================================
+ Hits 15595 15603 +8
+ Misses 2977 2975 -2
Partials 290 290
|
Consider merging/waiting for #4887 before the release (nice to have, not a blocker). |
This comment was marked as resolved.
This comment was marked as resolved.
I'm going to move ahead with merging this today. Blocking on that PR means this release is delayed another 24 hours at least. |
This release contains the first stable,
v1
, release of the following modules:go.opentelemetry.io/otel/bridge/opencensus
go.opentelemetry.io/otel/bridge/opencensus/test
go.opentelemetry.io/otel/example/opencensus
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric
See our versioning policy for more information about these stability guarantees.
Added
WithEndpointURL
option to theexporters/otlp/otlpmetric/otlpmetricgrpc
,exporters/otlp/otlpmetric/otlpmetrichttp
,exporters/otlp/otlptrace/otlptracegrpc
andexporters/otlp/otlptrace/otlptracehttp
packages. (Add WithEndpointURL option to OTLP over HTTP exporters #4808)ErrSchemaURLConflict
is added togo.opentelemetry.io/otel/sdk/resource
. This error is returned when a merge of twoResource
s with different (non-empty) schema URL is attempted. (Return merged Resource on schema conflict #4876)Changed
Merge
andNew
functions ingo.opentelemetry.io/otel/sdk/resource
now returns a partial result if there is a schema URL merge conflict. Instead of returningnil
when twoResource
s with different (non-empty) schema URLs are merged the mergedResource
, along with the newErrSchemaURLConflict
error, is returned. It is up to the user to decide if they want to use the returnedResource
or not. It may have desired attributes overwritten or include stale semantic conventions. (Return merged Resource on schema conflict #4876)Fixed
ContainerID
resource detection on systemd when cgroup path has a colon. (Fix ContainerID detector on systemd with colon in cgroup path #4449)go.opentelemetry.io/otel/sdk/metric
to cache instruments to avoid leaking memory when the same instrument is created multiple times. (Cache instruments so repeatedly creating identical instruments doesn't leak memory #4820)Mix
andMax
values forgo.opentelemetry.io/otel/exporters/stdout/stdoutmetric
by introducingMarshalText
andMarshalJSON
for theExtrema
type ingo.opentelemetry.io/sdk/metric/metricdata
. (sdk/metric/metricdata: Add MarshalJSON for Extrema #4827)