Skip to content

Commit aae89d7

Browse files
chore: Add EoL Post Install Messages (#1264)
1 parent 0e5dd05 commit aae89d7

12 files changed

+25
-0
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/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/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/all/opentelemetry-instrumentation-all.gemspec

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

instrumentation/rails/opentelemetry-instrumentation-rails.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,6 @@ Gem::Specification.new do |spec|
4848
spec.add_development_dependency 'yard', '~> 0.9'
4949

5050
spec.metadata['source_code_uri'] = 'https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/rails' if spec.respond_to?(:metadata)
51+
52+
spec.post_install_message = File.read(File.expand_path('../../POST_INSTALL_MESSAGE', __dir__))
5153
end

processor/baggage/opentelemetry-processor-baggage.gemspec

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

propagator/ottrace/opentelemetry-propagator-ottrace.gemspec

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

propagator/vitess/opentelemetry-propagator-vitess.gemspec

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

propagator/xray/opentelemetry-propagator-xray.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

resources/azure/opentelemetry-resource-detector-azure.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

0 commit comments

Comments
 (0)