Skip to content

Commit

Permalink
release: Release 5 gems (open-telemetry#1050)
Browse files Browse the repository at this point in the history
* release: Release 5 gems

* opentelemetry-instrumentation-grape 0.2.0 (was 0.1.8)
* opentelemetry-instrumentation-sinatra 0.24.0 (was 0.23.5)
* opentelemetry-instrumentation-active_support 0.6.0 (was 0.5.3)
* opentelemetry-instrumentation-rails 0.31.0 (was 0.30.2)
* opentelemetry-instrumentation-all 0.62.0 (was 0.61.0)

* feat: Bump Versions

---------

Co-authored-by: OpenTelemetry Bot <[email protected]>
Co-authored-by: Ariel Valentin <[email protected]>
  • Loading branch information
3 people authored Jul 2, 2024
1 parent 2c1cf6f commit b26b765
Show file tree
Hide file tree
Showing 12 changed files with 38 additions and 12 deletions.
6 changes: 6 additions & 0 deletions instrumentation/active_support/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History: opentelemetry-instrumentation-active_support

### v0.6.0 / 2024-07-02

* BREAKING CHANGE: Custom ActiveSupport Span Names

* ADDED: Custom ActiveSupport Span Names

### v0.5.3 / 2024-06-20

* FIXED: Include span kind in ActiveSupport Instrumentation helper
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActiveSupport
VERSION = '0.5.3'
VERSION = '0.6.0'
end
end
end
11 changes: 9 additions & 2 deletions instrumentation/all/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release History: opentelemetry-instrumentation-all

### v0.62.0 / 2024-07-02

* DOCS: Fix CHANGELOGs to reflect a past breaking change
* CHANGED: Update Rails Instrumentation
* CHANGED: Update Grape Instrumentation
* CHANGED: Update Sinatra Instrumentation

### v0.61.0 / 2024-06-04

* ADDED: Add aws lambda to instrumentation-all
Expand All @@ -25,15 +32,15 @@

### v0.56.0 / 2024-01-09

* BREAKING CHANGE: Use ActiveSupport instead of patches #703
* BREAKING CHANGE: Use ActiveSupport instead of patches #703

### v0.55.0 / 2024-01-06

* CHANGED: Upgrade Trilogy and Rack [#796](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/796)

### v0.54.0 / 2023-11-28

* ADDED: Updated excon to include connect spans
* ADDED: Updated excon to include connect spans

### v0.53.0 / 2023-11-28

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module All
VERSION = '0.61.0'
VERSION = '0.62.0'
end
end
end
6 changes: 3 additions & 3 deletions instrumentation/all/opentelemetry-instrumentation-all.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'opentelemetry-instrumentation-ethon', '~> 0.21.1'
spec.add_dependency 'opentelemetry-instrumentation-excon', '~> 0.22.0'
spec.add_dependency 'opentelemetry-instrumentation-faraday', '~> 0.24.0'
spec.add_dependency 'opentelemetry-instrumentation-grape', '~> 0.1.3'
spec.add_dependency 'opentelemetry-instrumentation-grape', '~> 0.2.0'
spec.add_dependency 'opentelemetry-instrumentation-graphql', '~> 0.28.0'
spec.add_dependency 'opentelemetry-instrumentation-gruf', '~> 0.2.0'
spec.add_dependency 'opentelemetry-instrumentation-http', '~> 0.23.1'
Expand All @@ -50,15 +50,15 @@ Gem::Specification.new do |spec|
spec.add_dependency 'opentelemetry-instrumentation-que', '~> 0.8.0'
spec.add_dependency 'opentelemetry-instrumentation-racecar', '~> 0.3.0'
spec.add_dependency 'opentelemetry-instrumentation-rack', '~> 0.24.0'
spec.add_dependency 'opentelemetry-instrumentation-rails', '~> 0.30.0'
spec.add_dependency 'opentelemetry-instrumentation-rails', '~> 0.31.0'
spec.add_dependency 'opentelemetry-instrumentation-rake', '~> 0.2.1'
spec.add_dependency 'opentelemetry-instrumentation-rdkafka', '~> 0.4.0'
spec.add_dependency 'opentelemetry-instrumentation-redis', '~> 0.25.1'
spec.add_dependency 'opentelemetry-instrumentation-resque', '~> 0.5.0'
spec.add_dependency 'opentelemetry-instrumentation-restclient', '~> 0.22.1'
spec.add_dependency 'opentelemetry-instrumentation-ruby_kafka', '~> 0.21.0'
spec.add_dependency 'opentelemetry-instrumentation-sidekiq', '~> 0.25.0'
spec.add_dependency 'opentelemetry-instrumentation-sinatra', '~> 0.23.1'
spec.add_dependency 'opentelemetry-instrumentation-sinatra', '~> 0.24.0'
spec.add_dependency 'opentelemetry-instrumentation-trilogy', '~> 0.59.0'

spec.add_development_dependency 'active_model_serializers'
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/grape/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-grape

### v0.2.0 / 2024-07-02

* ADDED: Make the install of rack instrumentation by grape instrumentation optional

### v0.1.8 / 2024-05-14

* DOCS: Instrumentation Authors Guide
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module OpenTelemetry
module Instrumentation
module Grape
# Current gem version
VERSION = '0.1.8'
VERSION = '0.2.0'
end
end
end
7 changes: 6 additions & 1 deletion instrumentation/rails/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release History: opentelemetry-instrumentation-rails

### v0.31.0 / 2024-07-02

* DOCS: Fix CHANGELOGs to reflect a past breaking change
* CHANGED: Update ActiveSupport Instrumentation

### v0.30.2 / 2024-06-04

* FIXED: Add action_mailer to rails and all
Expand All @@ -10,7 +15,7 @@

### v0.30.0 / 2024-01-09

* BREAKING CHANGE: Use ActiveSupport instead of patches #703
* BREAKING CHANGE: Use ActiveSupport instead of patches #703

### v0.29.1 / 2023-11-23

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module Rails
VERSION = '0.30.2'
VERSION = '0.31.0'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'opentelemetry-instrumentation-action_view', '~> 0.7.0'
spec.add_dependency 'opentelemetry-instrumentation-active_job', '~> 0.7.0'
spec.add_dependency 'opentelemetry-instrumentation-active_record', '~> 0.7.0'
spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.5.0'
spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.6.0'
spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.22.1'

spec.add_development_dependency 'appraisal', '~> 2.5'
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/sinatra/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-sinatra

### v0.24.0 / 2024-07-02

* ADDED: Make Rack install optional for sinatra

### v0.23.5 / 2024-06-18

* FIXED: Relax otel common gem constraints
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module Sinatra
VERSION = '0.23.5'
VERSION = '0.24.0'
end
end
end

0 comments on commit b26b765

Please sign in to comment.