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 2 gems #796

Merged
merged 2 commits into from
Jan 6, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'opentelemetry-instrumentation-pg', '~> 0.26.0'
spec.add_dependency 'opentelemetry-instrumentation-que', '~> 0.7.0'
spec.add_dependency 'opentelemetry-instrumentation-racecar', '~> 0.3.0'
spec.add_dependency 'opentelemetry-instrumentation-rack', '~> 0.23.1'
spec.add_dependency 'opentelemetry-instrumentation-rack', '~> 0.24.0'
spec.add_dependency 'opentelemetry-instrumentation-rails', '~> 0.29.0'
spec.add_dependency 'opentelemetry-instrumentation-rake', '~> 0.2.1'
spec.add_dependency 'opentelemetry-instrumentation-rdkafka', '~> 0.4.0'
Expand All @@ -58,7 +58,7 @@ Gem::Specification.new do |spec|
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-trilogy', '~> 0.57.0'
spec.add_dependency 'opentelemetry-instrumentation-trilogy', '~> 0.58.0'

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

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

* BREAKING CHANGE: Use Rack Events By Default

* ADDED: Use Rack Events By Default
* FIXED: Backport Rack proxy event to middleware

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

* CHANGED: Applied Rubocop Performance Recommendations [#727](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/727)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module Rack
VERSION = '0.23.5'
VERSION = '0.24.0'
end
end
end
7 changes: 7 additions & 0 deletions instrumentation/trilogy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release History: opentelemetry-instrumentation-trilogy

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

* BREAKING CHANGE: Change db.mysql.instance.address to db.instance.id

* ADDED: Change db.mysql.instance.address to db.instance.id
* FIXED: Trilogy only set db.instance.id attribute if there is a value

### v0.57.0 / 2023-10-27

* ADDED: Instrument connect and ping
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module Trilogy
VERSION = '0.57.0'
VERSION = '0.58.0'
end
end
end
Loading