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 4 gems #1210

Merged
merged 4 commits into from
Oct 23, 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
4 changes: 4 additions & 0 deletions instrumentation/action_mailer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-action_mailer

### v0.2.0 / 2024-10-22

* ADDED: Subscribe to process.action_mailer notifications

### v0.1.0 / 2024-05-13

Initial release.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActionMailer
VERSION = '0.1.0'
VERSION = '0.2.0'
end
end
end
33 changes: 19 additions & 14 deletions instrumentation/active_record/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Release History: opentelemetry-instrumentation-active_record

### v0.8.0 / 2024-10-22

* BREAKING CHANGE: Rename Active Record find_by_sql spans to query
* FIXED: Emit Active Record query spans for Rails 7.0+

### v0.7.4 / 2024-08-19

* FIXED: Use ActiveSupport from top-level namespace (NoMethodError on_load)
* FIXED: Use ActiveSupport from top-level namespace (NoMethodError on_load)

### v0.7.3 / 2024-08-15

Expand Down Expand Up @@ -32,47 +37,47 @@

### v0.6.1 / 2023-06-05

* FIXED: Base config options
* FIXED: Base config options

### v0.6.0 / 2023-04-17

* BREAKING CHANGE: Drop support for EoL Ruby 2.7
* BREAKING CHANGE: Drop support for EoL Ruby 2.7

* ADDED: Drop support for EoL Ruby 2.7
* ADDED: Drop support for EoL Ruby 2.7

### v0.5.0 / 2023-02-01

* BREAKING CHANGE: Drop Rails 5 Support
* BREAKING CHANGE: Drop Rails 5 Support

* ADDED: Drop Rails 5 Support
* ADDED: Drop Rails 5 Support

### v0.4.1 / 2023-01-14

* DOCS: Fix gem homepage
* DOCS: More gem documentation fixes
* DOCS: Fix gem homepage
* DOCS: More gem documentation fixes

### v0.4.0 / 2022-06-09

* Upgrading Base dependency version
* FIXED: Broken test file requirements
* FIXED: Broken test file requirements

### v0.3.0 / 2022-05-02

* ADDED: Make ActiveRecord 7 compatible
* FIXED: RubyGems Fallback
* ADDED: Make ActiveRecord 7 compatible
* FIXED: RubyGems Fallback

### v0.2.2 / 2021-12-01

* FIXED: Add max supported version for active record
* FIXED: Add max supported version for active record

### v0.2.1 / 2021-09-29

* (No significant changes)

### v0.2.0 / 2021-09-29

* ADDED: Trace update_all and delete_all calls in ActiveRecord
* FIXED: Remove Active Record instantiation patch
* ADDED: Trace update_all and delete_all calls in ActiveRecord
* FIXED: Remove Active Record instantiation patch

### v0.1.1 / 2021-08-12

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActiveRecord
VERSION = '0.7.4'
VERSION = '0.8.0'
end
end
end
6 changes: 6 additions & 0 deletions instrumentation/all/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History: opentelemetry-instrumentation-all

### v0.67.0 / 2024-10-22

* BREAKING CHANGE: Rename Active Record find_by_sql spans to query
* FIXED: Emit Active Record query spans for Rails 7.0+
* ADDED: Subscribe to process.action_mailer notifications

### v0.66.0 / 2024-10-08

* ADDED: Integration with V3 telemetry provider for the aws-sdk
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.66.0'
VERSION = '0.67.0'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ 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.31.0'
spec.add_dependency 'opentelemetry-instrumentation-rails', '~> 0.32.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'
Expand Down
6 changes: 6 additions & 0 deletions instrumentation/rails/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History: opentelemetry-instrumentation-rails

### v0.32.0 / 2024-10-22

* BREAKING CHANGE: Rename Active Record find_by_sql spans to query
* FIXED: Emit Active Record query spans for Rails 7.0+
* ADDED: Subscribe to process.action_mailer notifications

### v0.31.2 / 2024-08-15

* FIXED: Rails instrumentation should load ActiveJob instrumentation
Expand Down
5 changes: 3 additions & 2 deletions instrumentation/rails/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ gemspec
group :test, :development do
gem 'pry-byebug'
gem 'opentelemetry-instrumentation-base', path: '../base'
gem 'opentelemetry-instrumentation-action_pack', path: '../action_pack'
gem 'opentelemetry-instrumentation-action_view', path: '../action_view'
gem 'opentelemetry-instrumentation-active_job', path: '../active_job'
gem 'opentelemetry-instrumentation-action_mailer', path: '../action_mailer'
gem 'opentelemetry-instrumentation-action_pack', path: '../action_pack'
gem 'opentelemetry-instrumentation-active_record', path: '../active_record'
gem 'opentelemetry-instrumentation-active_support', path: '../active_support'
gem 'opentelemetry-instrumentation-action_view', path: '../action_view'
gem 'opentelemetry-instrumentation-rack', path: '../rack'
end
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module Rails
VERSION = '0.31.2'
VERSION = '0.32.0'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 3.0'

spec.add_dependency 'opentelemetry-api', '~> 1.0'
spec.add_dependency 'opentelemetry-instrumentation-action_mailer', '~> 0.1.0'
spec.add_dependency 'opentelemetry-instrumentation-action_mailer', '~> 0.2.0'
spec.add_dependency 'opentelemetry-instrumentation-action_pack', '~> 0.9.0'
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_record', '~> 0.8.0'
spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.6.0'
spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.22.1'

Expand Down
Loading