Skip to content

Commit 298d562

Browse files
committed
chore: Update rails and all gems
* Bump the version to include the new releases for active record and action mailer * Update the changelog entry for active record
1 parent 4f853df commit 298d562

File tree

7 files changed

+37
-21
lines changed

7 files changed

+37
-21
lines changed

instrumentation/active_record/CHANGELOG.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

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

5-
* BREAKING CHANGE: Activerecord find_by_sql spans on Rails 7.0+
5+
* BREAKING CHANGE: Rename Active Record find_by_sql spans to query
66

7-
* FIXED: Activerecord find_by_sql spans on Rails 7.0+
7+
* FIXED: Emit Active Record query spans for Rails 7.0+
88

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

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

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

@@ -38,47 +38,47 @@
3838

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

41-
* FIXED: Base config options
41+
* FIXED: Base config options
4242

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

45-
* BREAKING CHANGE: Drop support for EoL Ruby 2.7
45+
* BREAKING CHANGE: Drop support for EoL Ruby 2.7
4646

47-
* ADDED: Drop support for EoL Ruby 2.7
47+
* ADDED: Drop support for EoL Ruby 2.7
4848

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

51-
* BREAKING CHANGE: Drop Rails 5 Support
51+
* BREAKING CHANGE: Drop Rails 5 Support
5252

53-
* ADDED: Drop Rails 5 Support
53+
* ADDED: Drop Rails 5 Support
5454

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

57-
* DOCS: Fix gem homepage
58-
* DOCS: More gem documentation fixes
57+
* DOCS: Fix gem homepage
58+
* DOCS: More gem documentation fixes
5959

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

6262
* Upgrading Base dependency version
63-
* FIXED: Broken test file requirements
63+
* FIXED: Broken test file requirements
6464

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

67-
* ADDED: Make ActiveRecord 7 compatible
68-
* FIXED: RubyGems Fallback
67+
* ADDED: Make ActiveRecord 7 compatible
68+
* FIXED: RubyGems Fallback
6969

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

72-
* FIXED: Add max supported version for active record
72+
* FIXED: Add max supported version for active record
7373

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

7676
* (No significant changes)
7777

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

80-
* ADDED: Trace update_all and delete_all calls in ActiveRecord
81-
* FIXED: Remove Active Record instantiation patch
80+
* ADDED: Trace update_all and delete_all calls in ActiveRecord
81+
* FIXED: Remove Active Record instantiation patch
8282

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

instrumentation/all/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release History: opentelemetry-instrumentation-all
22

3+
### v0.67.0 / 2024-10-22
4+
5+
* BREAKING CHANGE: Rename Active Record find_by_sql spans to query
6+
7+
* FIXED: Emit Active Record query spans for Rails 7.0+
8+
9+
* ADDED: Subscribe to process.action_mailer notifications
10+
311
### v0.66.0 / 2024-10-08
412

513
* ADDED: Integration with V3 telemetry provider for the aws-sdk

instrumentation/all/lib/opentelemetry/instrumentation/all/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
module OpenTelemetry
88
module Instrumentation
99
module All
10-
VERSION = '0.66.0'
10+
VERSION = '0.67.0'
1111
end
1212
end
1313
end

instrumentation/all/opentelemetry-instrumentation-all.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Gem::Specification.new do |spec|
5050
spec.add_dependency 'opentelemetry-instrumentation-que', '~> 0.8.0'
5151
spec.add_dependency 'opentelemetry-instrumentation-racecar', '~> 0.3.0'
5252
spec.add_dependency 'opentelemetry-instrumentation-rack', '~> 0.24.0'
53-
spec.add_dependency 'opentelemetry-instrumentation-rails', '~> 0.31.0'
53+
spec.add_dependency 'opentelemetry-instrumentation-rails', '~> 0.32.0'
5454
spec.add_dependency 'opentelemetry-instrumentation-rake', '~> 0.2.1'
5555
spec.add_dependency 'opentelemetry-instrumentation-rdkafka', '~> 0.4.0'
5656
spec.add_dependency 'opentelemetry-instrumentation-redis', '~> 0.25.1'

instrumentation/rails/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release History: opentelemetry-instrumentation-rails
22

3+
### v0.32.0 / 2024-10-22
4+
5+
* BREAKING CHANGE: Rename Active Record find_by_sql spans to query
6+
7+
* FIXED: Emit Active Record query spans for Rails 7.0+
8+
9+
* ADDED: Subscribe to process.action_mailer notifications
10+
311
### v0.31.2 / 2024-08-15
412

513
* FIXED: Rails instrumentation should load ActiveJob instrumentation

instrumentation/rails/lib/opentelemetry/instrumentation/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
module OpenTelemetry
88
module Instrumentation
99
module Rails
10-
VERSION = '0.31.2'
10+
VERSION = '0.32.0'
1111
end
1212
end
1313
end

instrumentation/rails/opentelemetry-instrumentation-rails.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ Gem::Specification.new do |spec|
2626
spec.required_ruby_version = '>= 3.0'
2727

2828
spec.add_dependency 'opentelemetry-api', '~> 1.0'
29-
spec.add_dependency 'opentelemetry-instrumentation-action_mailer', '~> 0.1.0'
29+
spec.add_dependency 'opentelemetry-instrumentation-action_mailer', '~> 0.2.0'
3030
spec.add_dependency 'opentelemetry-instrumentation-action_pack', '~> 0.9.0'
3131
spec.add_dependency 'opentelemetry-instrumentation-action_view', '~> 0.7.0'
3232
spec.add_dependency 'opentelemetry-instrumentation-active_job', '~> 0.7.0'
33-
spec.add_dependency 'opentelemetry-instrumentation-active_record', '~> 0.7.0'
33+
spec.add_dependency 'opentelemetry-instrumentation-active_record', '~> 0.8.0'
3434
spec.add_dependency 'opentelemetry-instrumentation-active_support', '~> 0.6.0'
3535
spec.add_dependency 'opentelemetry-instrumentation-base', '~> 0.22.1'
3636

0 commit comments

Comments
 (0)