Skip to content
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
2 changes: 1 addition & 1 deletion instrumentation/action_mailer/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

%w[7.1.0 7.2.0].each do |version|
%w[7.1.0 7.2.0 8.0.0].each do |version|
appraise "action_mailer-#{version}" do
gem 'rails', "~> #{version}"
end
Expand Down
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.6.1 / 2025-10-22

* FIXED: Update opentelemetry-instrumentation-base dependency

### v0.6.0 / 2025-10-21

* BREAKING CHANGE: Min Ruby Version 3.2 and Rails 7.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActionMailer
VERSION = '0.6.0'
VERSION = '0.6.1'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.required_ruby_version = ">= #{File.read(File.expand_path('../../gemspecs/RUBY_REQUIREMENT', __dir__))}"

spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.9'
spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.10'

if spec.respond_to?(:metadata)
spec.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}/file/CHANGELOG.md"
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/action_pack/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

%w[7.1.0 7.2.0].each do |version|
%w[7.1.0 7.2.0 8.0.0].each do |version|
appraise "action_pack-#{version}" do
gem 'rails', "~> #{version}"
end
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/action_pack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-action_pack

### v0.15.1 / 2025-10-22

* FIXED: Update opentelemetry-instrumentation-base dependency

### v0.15.0 / 2025-10-21

* BREAKING CHANGE: Min Ruby Version 3.2 and Rails 7.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActionPack
VERSION = '0.15.0'
VERSION = '0.15.1'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.required_ruby_version = ">= #{File.read(File.expand_path('../../gemspecs/RUBY_REQUIREMENT', __dir__))}"

spec.add_dependency 'opentelemetry-instrumentation-rack', '~> 0.21'
spec.add_dependency 'opentelemetry-instrumentation-rack', '~> 0.29'

if spec.respond_to?(:metadata)
spec.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}/file/CHANGELOG.md"
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/action_view/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

%w[7.1.0 7.2.0].each do |version|
%w[7.1.0 7.2.0 8.0.0].each do |version|
appraise "action_view-#{version}" do
gem 'rails', "~> #{version}"
end
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/action_view/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-action_view

### v0.11.1 / 2025-10-22

* FIXED: Update opentelemetry-instrumentation-base dependency

### v0.11.0 / 2025-10-21

* BREAKING CHANGE: Min Ruby Version 3.2 and Rails 7.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActionView
VERSION = '0.11.0'
VERSION = '0.11.1'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.required_ruby_version = ">= #{File.read(File.expand_path('../../gemspecs/RUBY_REQUIREMENT', __dir__))}"

spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.9'
spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.10'

if spec.respond_to?(:metadata)
spec.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}/file/CHANGELOG.md"
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/active_job/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

%w[7.1.0 7.2.0].each do |version|
%w[7.1.0 7.2.0 8.0.0].each do |version|
appraise "activejob-#{version}" do
gem 'activejob', "~> #{version}"
end
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/active_job/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-active_job

### v0.10.1 / 2025-10-22

* FIXED: Update opentelemetry-instrumentation-base dependency

### v0.10.0 / 2025-10-21

* BREAKING CHANGE: Min Ruby Version 3.2 and Rails 7.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActiveJob
VERSION = '0.10.0'
VERSION = '0.10.1'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.required_ruby_version = ">= #{File.read(File.expand_path('../../gemspecs/RUBY_REQUIREMENT', __dir__))}"

spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.24'
spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.25'

if spec.respond_to?(:metadata)
spec.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}/file/CHANGELOG.md"
Expand Down
6 changes: 6 additions & 0 deletions instrumentation/active_model_serializers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History: opentelemetry-instrumentation-active_model_serializers

### v0.24.0 / 2025-10-22

* BREAKING CHANGE: Min Ruby Version 3.2

* ADDED: Min Ruby Version 3.2

### v0.23.0 / 2025-09-30

* ADDED: Bump minimum API Version to 1.7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActiveModelSerializers
VERSION = '0.23.0'
VERSION = '0.24.0'
end
end
end
9 changes: 8 additions & 1 deletion instrumentation/active_record/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,20 @@
#
# SPDX-License-Identifier: Apache-2.0

%w[7.1.0 7.2.0].each do |version|
%w[7.1.0 7.2.0 8.0.0].each do |version|
appraise "activerecord-#{version}" do
gem 'sqlite3', '~> 1.4'
gem 'activerecord', "~> #{version}"
end
end

%w[8.0.0].each do |version|
appraise "activerecord-#{version}" do
gem 'sqlite3', '>= 2.1'
gem 'activerecord', "~> #{version}"
end
end

appraise 'activerecord-latest' do
gem 'sqlite3', '>= 2.1'
gem 'activerecord'
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/active_record/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-active_record

### v0.11.1 / 2025-10-22

* FIXED: Update opentelemetry-instrumentation-base dependency

### v0.11.0 / 2025-10-21

* BREAKING CHANGE: Min Ruby Version 3.2 and Rails 7.1
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.11.0'
VERSION = '0.11.1'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.required_ruby_version = ">= #{File.read(File.expand_path('../../gemspecs/RUBY_REQUIREMENT', __dir__))}"

spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.24'
spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.25'

if spec.respond_to?(:metadata)
spec.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}/file/CHANGELOG.md"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@

describe '#increment!' do
it 'traces' do
User.new.increment!(:counter)
User.create.increment!(:counter)
increment_span = spans.find { |s| s.name == 'User#increment!' }
_(increment_span).wont_be_nil
end
Expand All @@ -156,7 +156,7 @@

describe '#decrement!' do
it 'traces' do
User.new.decrement!(:counter)
User.create.decrement!(:counter)
decrement_span = spans.find { |s| s.name == 'User#decrement!' }
_(decrement_span).wont_be_nil
end
Expand Down
10 changes: 9 additions & 1 deletion instrumentation/active_storage/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,22 @@
#
# SPDX-License-Identifier: Apache-2.0

%w[7.1.0 7.2.0].each do |version|
%w[7.1.0 7.2.0 8.0.0].each do |version|
appraise "activestorage-#{version}" do
gem 'sqlite3', '~> 1.4'
gem 'image_processing', '~> 1.2'
gem 'rails', "~> #{version}"
end
end

%w[8.0.0].each do |version|
appraise "activestorage-#{version}" do
gem 'sqlite3', '>= 2.1'
gem 'image_processing', '~> 1.2'
gem 'rails', "~> #{version}"
end
end

appraise 'activestorage-latest' do
gem 'sqlite3', '>= 2.1'
gem 'image_processing', '~> 1.2'
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/active_storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-active_storage

### v0.3.1 / 2025-10-22

* FIXED: Update opentelemetry-instrumentation-base dependency

### v0.3.0 / 2025-10-21

* BREAKING CHANGE: Min Ruby Version 3.2 and Rails 7.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActiveStorage
VERSION = '0.3.0'
VERSION = '0.3.1'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.required_ruby_version = ">= #{File.read(File.expand_path('../../gemspecs/RUBY_REQUIREMENT', __dir__))}"

spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.9'
spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.10'

if spec.respond_to?(:metadata)
spec.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}/file/CHANGELOG.md"
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/active_support/Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

%w[7.1.0 7.2.0].each do |version|
%w[7.1.0 7.2.0 8.0.0].each do |version|
appraise "activesupport-#{version}" do
gem 'activesupport', "~> #{version}"
end
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/active_support/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-active_support

### v0.10.1 / 2025-10-22

* FIXED: Update opentelemetry-instrumentation-base dependency

### v0.10.0 / 2025-10-21

* BREAKING CHANGE: Min Ruby Version 3.2 and Rails 7.1
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.10.0'
VERSION = '0.10.1'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.required_ruby_version = ">= #{File.read(File.expand_path('../../gemspecs/RUBY_REQUIREMENT', __dir__))}"

spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.24'
spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.25'

if spec.respond_to?(:metadata)
spec.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}/file/CHANGELOG.md"
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/all/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-all

### v0.86.1 / 2025-10-22

* ADDED: Updated minimum gem versions for dependent instrumentations

### v0.86.0 / 2025-10-21

* BREAKING CHANGE: Min Version Support For Ruby 3.2 and Rails 7.1
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.86.0'
VERSION = '0.86.1'
end
end
end
Loading
Loading