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
28 changes: 13 additions & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ executors:
parameters:
ruby_version:
type: string
default: "3.1"
default: "3.2"
docker:
- image: public.ecr.aws/docker/library/ruby:<<parameters.ruby_version>>
environment:
Expand All @@ -65,7 +65,7 @@ executors:
parameters:
ruby_version:
type: string
default: "3.1"
default: "3.2"
docker:
- image: public.ecr.aws/docker/library/ruby:<<parameters.ruby_version>>
environment:
Expand All @@ -82,7 +82,7 @@ executors:
parameters:
ruby_version:
type: string
default: "3.1"
default: "3.2"
docker:
- image: public.ecr.aws/docker/library/ruby:<<parameters.ruby_version>>
environment:
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
default: "base"
ruby_version:
type: string
default: "3.1"
default: "3.2"
executor:
name: <<parameters.stack>>
ruby_version: <<parameters.ruby_version>>
Expand All @@ -221,7 +221,7 @@ jobs:
default: "./gemfiles/aws_30.gemfile"
ruby_version:
type: string
default: "3.1"
default: "3.2"
executor:
name: <<parameters.stack>>
ruby_version: <<parameters.ruby_version>>
Expand Down Expand Up @@ -276,12 +276,11 @@ workflows:
stack:
- base
ruby_version:
- "3.1"
- "3.2"
- "3.3"
- "3.4"
- "4.0"
libraries_ruby_31_32:
libraries_ruby_32_33:
jobs:
- test_apprisal:
name: "test_apprisal-<<matrix.gemfile>>-ruby-<<matrix.stack>>-<<matrix.ruby_version>>"
Expand All @@ -291,9 +290,9 @@ workflows:
- base
<<: *library_gemfile
ruby_version:
- "3.1"
- "3.2"
libraries_ruby_33_35:
- "3.3"
libraries_ruby_34_40:
jobs:
- test_apprisal:
name: "test_apprisal-<<matrix.gemfile>>-ruby-<<matrix.stack>>-<<matrix.ruby_version>>"
Expand All @@ -303,7 +302,6 @@ workflows:
- base
<<: *library_gemfile
ruby_version:
- "3.3"
- "3.4"
- "4.0"
# Currently compiling the native extensions for `grpc`
Expand All @@ -317,7 +315,7 @@ workflows:
- stack: base
ruby_version: "4.0"
gemfile: "./gemfiles/grpc_10.gemfile"
rails_ruby_31_35:
rails_ruby_32_40:
jobs:
- test_apprisal:
name: "test_apprisal-rails-<<matrix.gemfile>>-ruby-<<matrix.stack>>-<<matrix.ruby_version>>"
Expand All @@ -332,12 +330,11 @@ workflows:
- "./gemfiles/rails_70.gemfile"
- "./gemfiles/rails_71.gemfile"
ruby_version:
- "3.1"
- "3.2"
- "3.3"
- "3.4"
- "4.0"
rails8_ruby_33_35:
- "4.0"
rails8_ruby_32_40:
jobs:
- test_apprisal:
name: "test_apprisal-rails-8-<<matrix.gemfile>>-ruby-<<matrix.stack>>-<<matrix.ruby_version>>"
Expand All @@ -353,6 +350,7 @@ workflows:
- "3.2"
- "3.3"
- "3.4"
- "4.0"
sequel:
jobs:
- test_apprisal:
Expand All @@ -367,9 +365,9 @@ workflows:
- "./gemfiles/sequel_57.gemfile"
- "./gemfiles/sequel_58.gemfile"
ruby_version:
- "3.1"
- "3.2"
- "3.3"
- "3.4"
- "4.0"
report_coverage:
jobs:
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

The `instana` gem provides Ruby metrics and traces (request, queue & cross-host) for [Instana](https://www.instana.com/).

This gem supports Ruby versions 2.7 or greater.
## Ruby Version Support

This gem requires Ruby 3.2 or greater. We actively test and maintain compatibility with Ruby versions 3.2, 3.3, 3.4, and 4.0 to ensure optimal performance and reliability. As part of our commitment to supporting the Ruby community, we continue to provide support for Ruby versions up to 1 year after their official End-of-Life (EOL) date, giving you ample time to plan and execute version upgrades.

Any and all feedback is welcome. Happy Ruby visibility.

Expand Down
2 changes: 1 addition & 1 deletion instana.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 3.0'
spec.required_ruby_version = '>= 3.2'
spec.platform = defined?(JRUBY_VERSION) ? 'java' : Gem::Platform::RUBY

# spec.add_development_dependency "bundler", "=> 2.0"
Expand Down
Loading