Skip to content
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: Release 6 gems #1456

Merged
merged 8 commits into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-common

### v0.19.7 / 2023-05-30

* FIXED: Untraced only works with parent-based sampler

### v0.19.6 / 2022-05-18

* (No significant changes)
Expand Down
2 changes: 1 addition & 1 deletion common/lib/opentelemetry/common/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

module OpenTelemetry
module Common
VERSION = '0.19.6'
VERSION = '0.19.7'
end
end
5 changes: 5 additions & 0 deletions exporter/otlp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release History: opentelemetry-exporter-otlp

### v0.24.1 / 2023-05-30

* FIXED: Add Ruby 3.2 to CI and do small fix
* FIXED: Adds User-Agent header in OTLP exporter

### v0.24.0 / 2022-09-14

* ADDED: Support InstrumentationScope, and update OTLP proto to 0.18.0
Expand Down
2 changes: 1 addition & 1 deletion exporter/otlp/lib/opentelemetry/exporter/otlp/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module OpenTelemetry
module Exporter
module OTLP
## Current OpenTelemetry OTLP exporter version
VERSION = '0.24.0'
VERSION = '0.24.1'
end
end
end
4 changes: 4 additions & 0 deletions exporter/zipkin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-exporter-zipkin

### v0.22.0 / 2023-05-30

* ADDED: Custom Metrics Reporter Support for Zipkin

### v0.21.0 / 2022-09-14

* ADDED: Add dropped events/attributes/links counts to zipkin + jaeger exporters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module OpenTelemetry
module Exporter
module Zipkin
## Current OpenTelemetry Zipkin exporter version
VERSION = '0.21.0'
VERSION = '0.22.0'
end
end
end
5 changes: 5 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release History: opentelemetry-sdk

### v1.2.1 / 2023-05-30

* FIXED: Untraced only works with parent-based sampler
* DOCS: Improve formatting of usage examples in OpenTelemetry SDK rubydocs

### v1.2.0 / 2022-09-14

* ADDED: Support OTEL_PROPAGATORS=none
Expand Down
2 changes: 1 addition & 1 deletion sdk/lib/opentelemetry/sdk/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
module OpenTelemetry
module SDK
## Current OpenTelemetry version
VERSION = '1.2.0'
VERSION = '1.2.1'
end
end
6 changes: 6 additions & 0 deletions sdk_experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History: opentelemetry-sdk-experimental

### v0.2.0 / 2023-05-30

* FIXED: Consistent probability sampler init
* BREAKING CHANGE: Consistently pass tracestate
* BREAKING CHANGE: Set r in Parent CPS

### v0.1.1 / 2023-03-06

* FIXED: Reduce allocations in update_tracestate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module OpenTelemetry
module SDK
module Experimental
# Current OpenTelemetry experimental sdk version
VERSION = '0.1.1'
VERSION = '0.2.0'
end
end
end
6 changes: 5 additions & 1 deletion semantic_conventions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Release History: opentelemetry-semantic_conventions

### v1.8.0 / 2022-01-06
### v1.10.1 / 2023-05-30

* FIXED: Warning messages from gem build

### v1.10.0 / 2022-01-06
fbogsany marked this conversation as resolved.
Show resolved Hide resolved

* (No significant changes)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

module OpenTelemetry
module SemanticConventions
VERSION = '1.10.0'
VERSION = '1.10.1'
fbogsany marked this conversation as resolved.
Show resolved Hide resolved
end
end