-
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
Pre release v0.18.0 #1635
Merged
Merged
Pre release v0.18.0 #1635
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Aneurysm9
requested review from
dashpole,
evantorrie,
jmacd,
lizthegrey,
MrAlias and
XSAM
as code owners
March 3, 2021 18:45
Codecov Report
@@ Coverage Diff @@
## main #1635 +/- ##
=====================================
Coverage 77.7% 77.7%
=====================================
Files 128 128
Lines 6637 6639 +2
=====================================
+ Hits 5157 5159 +2
Misses 1233 1233
Partials 247 247
|
MrAlias
approved these changes
Mar 3, 2021
Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
ldelossa
pushed a commit
to ldelossa/opentelemetry-go
that referenced
this pull request
Mar 5, 2021
* Prepare for releasing v0.18.0 * Update CHANGELOG for v0.18.0 release * Update CHANGELOG.md Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
This was referenced Mar 7, 2021
This was referenced Mar 11, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added
resource.Default()
for use with meter and tracer providers. (Create resource.Default() with required attributes/default values #1507)AttributePerEventCountLimit
andAttributePerLinkCountLimit
forSpanLimits
. (Update span limits to conform with OpenTelemetry specification #1535)Keys()
method topropagation.TextMapCarrier
andpropagation.HeaderCarrier
to adapthttp.Header
to this interface. (Add Keys() method to propagation.TextMapCarrier #1544)code
attributes togo.opentelemetry.io/otel/semconv
package. (add code attributes to semconv package #1558)Changed
oteltest.SpanRecorder
with its existing implementationStandardSpanRecorder
(Make oteltest.SpanRecorder into a concrete type #1542).MaxEventsPerSpan
,MaxAttributesPerSpan
andMaxLinksPerSpan
toEventCountLimit
,AttributeCountLimit
andLinkCountLimit
, and move these fields intoSpanLimits
. (Update span limits to conform with OpenTelemetry specification #1535)otel/label
package tootel/attribute
. (Rename otel/label -> otel/attribute #1541)WithBatchTimeout(5 * time.Second)
rather thanWithBatchTimeout(5)
(Use reasonable interval in sdktrace.WithBatchTimeout #1621)Removed
span.SetName()
. (Remove resampling on span.SetName #1545)test-benchmark
is no longer a dependency of theprecommit
make target. (Add compatibility tests to CI #1567)test-386
make target.This was replaced with a full compatibility testing suite (i.e. multi OS/arch) in the CI system. (Add compatibility tests to CI #1567)
Fixed