Skip to content

Commit 227fef3

Browse files
Merge branch 'main' into logger-instrumentation
2 parents 0f3df26 + 45d0a54 commit 227fef3

File tree

92 files changed

+1270
-119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1270
-119
lines changed

POST_INSTALL_MESSAGE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Ruby 3.0 has reached EoL 2024-04-23. OTel Ruby Contrib gems will no longer accept new features or bug fixes for Ruby 3.0 after 2025-01-15. Please upgrade to Ruby 3.1 or higher to continue receiving updates.
2+
3+
Rails 6.1 has reached EoL 2024-10-01. OTel Ruby Contrib gems will no longer accept new features or bug fixes for Rails 6.1 after 2025-01-15. Please upgrade to Rails 7.0 or higher to continue receiving updates.

helpers/mysql/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History: opentelemetry-helpers-mysql
22

3+
### v0.1.2 / 2024-11-26
4+
5+
* (No significant changes)
6+
37
### v0.1.1 / 2024-06-18
48

59
* FIXED: Relax otel common gem constraints

helpers/mysql/lib/opentelemetry/helpers/mysql/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 Helpers
99
module MySQL
10-
VERSION = '0.1.1'
10+
VERSION = '0.1.2'
1111
end
1212
end
1313
end

helpers/mysql/opentelemetry-helpers-mysql.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,6 @@ Gem::Specification.new do |spec|
4444
spec.metadata['bug_tracker_uri'] = 'https://github.com/open-telemetry/opentelemetry-ruby-contrib/issues'
4545
spec.metadata['documentation_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}"
4646
end
47+
48+
spec.post_install_message = File.read(File.expand_path('../../POST_INSTALL_MESSAGE', __dir__))
4749
end

helpers/sql-obfuscation/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History: opentelemetry-helpers-sql-obfuscation
22

3+
### v0.2.1 / 2024-11-26
4+
5+
* (No significant changes)
6+
37
### v0.2.0 / 2024-09-12
48

59
- BREAKING CHANGE: Return message when sql is over the obfuscation limit. Fixes a bug where sql statements with prepended comments that hit the obfuscation limit would be sent raw.

helpers/sql-obfuscation/lib/opentelemetry/helpers/sql_obfuscation/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 Helpers
99
module SqlObfuscation
10-
VERSION = '0.2.0'
10+
VERSION = '0.2.1'
1111
end
1212
end
1313
end

helpers/sql-obfuscation/opentelemetry-helpers-sql-obfuscation.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,6 @@ Gem::Specification.new do |spec|
4242
spec.metadata['bug_tracker_uri'] = 'https://github.com/open-telemetry/opentelemetry-ruby-contrib/issues'
4343
spec.metadata['documentation_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}"
4444
end
45+
46+
spec.post_install_message = File.read(File.expand_path('../../POST_INSTALL_MESSAGE', __dir__))
4547
end

instrumentation/action_mailer/Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@ gemspec
1111
group :test do
1212
gem 'opentelemetry-instrumentation-base', path: '../base'
1313
gem 'opentelemetry-instrumentation-active_support', path: '../active_support'
14+
# Add jar-dependencies gem only if the Ruby runtime is JRuby
15+
# https://github.com/jruby/jruby/issues/7262
16+
gem 'jar-dependencies', '0.4.1', platforms: :jruby
1417
end

instrumentation/active_model_serializers/CHANGELOG.md

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

3+
### v0.20.3 / 2024-12-04
4+
5+
* FIXED: Use ActiveSupport::Notifications subscriber to serialize events.
6+
37
### v0.20.2 / 2024-07-23
48

59
* DOCS: Add cspell to CI

instrumentation/active_model_serializers/example/Gemfile

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)