diff --git a/.instrumentation_generator/templates/Gemfile b/.instrumentation_generator/templates/Gemfile index 3d6b4175a2..9e0becf48b 100644 --- a/.instrumentation_generator/templates/Gemfile +++ b/.instrumentation_generator/templates/Gemfile @@ -16,7 +16,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.0' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.17.1' gem 'webmock', '~> 3.24' diff --git a/Gemfile b/Gemfile index 2e84063c46..063d76436d 100644 --- a/Gemfile +++ b/Gemfile @@ -6,6 +6,16 @@ source 'https://rubygems.org' +# Due to a bug in Dependabot Core, we cannot update instrumentation gems because +# they reference each other using local paths in their Gemfiles. +# +# This list of gems will be tracked and updated by Dependabot and we can then update them manually +# bin/update-dependencies +gem 'opentelemetry-api', '~> 1.7' +gem 'opentelemetry-common', '~> 0.21' +gem 'opentelemetry-registry', '~> 0.1' +gem 'opentelemetry-sdk', '~> 1.1' + gem 'rake', '~> 13.0' -gem 'rubocop', '~> 1.80.2' +gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' diff --git a/bin/update-dependencies b/bin/update-dependencies index 88e2f087a4..6dc747dc9c 100755 --- a/bin/update-dependencies +++ b/bin/update-dependencies @@ -10,7 +10,14 @@ fi for file in $(git ls-files \*Gemfile \*.gemspec) do - sed -i -E "s/'$1', '~> [[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+'/'$1', '~> $2'/" "$file" + # Portable sed -i for both macOS (BSD) and Linux (GNU) + if [[ "$OSTYPE" == "darwin"* ]]; then + # macOS requires an extension argument (use '' for no backup) + sed -i '' -E "s/'$1', '~> [[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+'/'$1', '~> $2'/" "$file" + else + # Linux doesn't require an extension argument + sed -i -E "s/'$1', '~> [[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+'/'$1', '~> $2'/" "$file" + fi done echo "Review your changes and commit" diff --git a/helpers/mysql/Gemfile b/helpers/mysql/Gemfile index 10f913ca7d..3c9277a31b 100644 --- a/helpers/mysql/Gemfile +++ b/helpers/mysql/Gemfile @@ -13,7 +13,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/helpers/sql-obfuscation/Gemfile b/helpers/sql-obfuscation/Gemfile index 10f913ca7d..3c9277a31b 100644 --- a/helpers/sql-obfuscation/Gemfile +++ b/helpers/sql-obfuscation/Gemfile @@ -13,7 +13,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/helpers/sql/Gemfile b/helpers/sql/Gemfile index 77b2b2be35..e213ed468b 100644 --- a/helpers/sql/Gemfile +++ b/helpers/sql/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/action_mailer/Gemfile b/instrumentation/action_mailer/Gemfile index 0d7b1c4e73..6ba033c71a 100644 --- a/instrumentation/action_mailer/Gemfile +++ b/instrumentation/action_mailer/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/action_pack/Gemfile b/instrumentation/action_pack/Gemfile index ee15812d36..17d5c0d6af 100644 --- a/instrumentation/action_pack/Gemfile +++ b/instrumentation/action_pack/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/action_view/Gemfile b/instrumentation/action_view/Gemfile index a21bef5034..568f47ff56 100644 --- a/instrumentation/action_view/Gemfile +++ b/instrumentation/action_view/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/active_job/Gemfile b/instrumentation/active_job/Gemfile index 2d00550784..c5aca82383 100644 --- a/instrumentation/active_job/Gemfile +++ b/instrumentation/active_job/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/active_model_serializers/Gemfile b/instrumentation/active_model_serializers/Gemfile index 4bd9b588e8..890772bd3b 100644 --- a/instrumentation/active_model_serializers/Gemfile +++ b/instrumentation/active_model_serializers/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/active_record/Gemfile b/instrumentation/active_record/Gemfile index 2d00550784..c5aca82383 100644 --- a/instrumentation/active_record/Gemfile +++ b/instrumentation/active_record/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/active_storage/Gemfile b/instrumentation/active_storage/Gemfile index a21bef5034..568f47ff56 100644 --- a/instrumentation/active_storage/Gemfile +++ b/instrumentation/active_storage/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/active_support/Gemfile b/instrumentation/active_support/Gemfile index fb471507fd..a3c6c0cc4f 100644 --- a/instrumentation/active_support/Gemfile +++ b/instrumentation/active_support/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/all/Gemfile b/instrumentation/all/Gemfile index bc9f6d0400..337a431b87 100644 --- a/instrumentation/all/Gemfile +++ b/instrumentation/all/Gemfile @@ -12,7 +12,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/anthropic/Gemfile b/instrumentation/anthropic/Gemfile index 474fa2d3dd..328c9497a4 100644 --- a/instrumentation/anthropic/Gemfile +++ b/instrumentation/anthropic/Gemfile @@ -18,7 +18,7 @@ group :test do gem 'opentelemetry-sdk-experimental', '~> 0.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/aws_lambda/Gemfile b/instrumentation/aws_lambda/Gemfile index 2cef158e1c..935dad2923 100644 --- a/instrumentation/aws_lambda/Gemfile +++ b/instrumentation/aws_lambda/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/aws_sdk/Gemfile b/instrumentation/aws_sdk/Gemfile index 2cef158e1c..935dad2923 100644 --- a/instrumentation/aws_sdk/Gemfile +++ b/instrumentation/aws_sdk/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/base/Gemfile b/instrumentation/base/Gemfile index 00156b404d..12b8f2bf60 100644 --- a/instrumentation/base/Gemfile +++ b/instrumentation/base/Gemfile @@ -13,7 +13,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/bunny/Gemfile b/instrumentation/bunny/Gemfile index e057a23309..9820b5d04a 100644 --- a/instrumentation/bunny/Gemfile +++ b/instrumentation/bunny/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/concurrent_ruby/Gemfile b/instrumentation/concurrent_ruby/Gemfile index e057a23309..9820b5d04a 100644 --- a/instrumentation/concurrent_ruby/Gemfile +++ b/instrumentation/concurrent_ruby/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/dalli/Gemfile b/instrumentation/dalli/Gemfile index e057a23309..9820b5d04a 100644 --- a/instrumentation/dalli/Gemfile +++ b/instrumentation/dalli/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/delayed_job/Gemfile b/instrumentation/delayed_job/Gemfile index e3990c63fe..c5e0a59001 100644 --- a/instrumentation/delayed_job/Gemfile +++ b/instrumentation/delayed_job/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/ethon/Gemfile b/instrumentation/ethon/Gemfile index e057a23309..9820b5d04a 100644 --- a/instrumentation/ethon/Gemfile +++ b/instrumentation/ethon/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/excon/Gemfile b/instrumentation/excon/Gemfile index 73da0e359a..fdeae6f37b 100644 --- a/instrumentation/excon/Gemfile +++ b/instrumentation/excon/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/faraday/Gemfile b/instrumentation/faraday/Gemfile index 73da0e359a..fdeae6f37b 100644 --- a/instrumentation/faraday/Gemfile +++ b/instrumentation/faraday/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/grape/Gemfile b/instrumentation/grape/Gemfile index 363cb33849..4289ed5d27 100644 --- a/instrumentation/grape/Gemfile +++ b/instrumentation/grape/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/graphql/Gemfile b/instrumentation/graphql/Gemfile index 2d00550784..c5aca82383 100644 --- a/instrumentation/graphql/Gemfile +++ b/instrumentation/graphql/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/grpc/Gemfile b/instrumentation/grpc/Gemfile index 1f9d0eb72e..e6247ed524 100644 --- a/instrumentation/grpc/Gemfile +++ b/instrumentation/grpc/Gemfile @@ -18,7 +18,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.4' gem 'rake', '~> 13.2' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/gruf/Gemfile b/instrumentation/gruf/Gemfile index 866c127433..b39c9d5029 100644 --- a/instrumentation/gruf/Gemfile +++ b/instrumentation/gruf/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.0' gem 'rake', '~> 12.3.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/http/Gemfile b/instrumentation/http/Gemfile index f616939519..78ea565986 100644 --- a/instrumentation/http/Gemfile +++ b/instrumentation/http/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/http_client/Gemfile b/instrumentation/http_client/Gemfile index 2d00550784..c5aca82383 100644 --- a/instrumentation/http_client/Gemfile +++ b/instrumentation/http_client/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/httpx/Gemfile b/instrumentation/httpx/Gemfile index f616939519..78ea565986 100644 --- a/instrumentation/httpx/Gemfile +++ b/instrumentation/httpx/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/koala/Gemfile b/instrumentation/koala/Gemfile index f616939519..78ea565986 100644 --- a/instrumentation/koala/Gemfile +++ b/instrumentation/koala/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/lmdb/Gemfile b/instrumentation/lmdb/Gemfile index 2d00550784..c5aca82383 100644 --- a/instrumentation/lmdb/Gemfile +++ b/instrumentation/lmdb/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/mongo/Gemfile b/instrumentation/mongo/Gemfile index 6ade5c7c03..67c96a152b 100644 --- a/instrumentation/mongo/Gemfile +++ b/instrumentation/mongo/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/mysql2/Gemfile b/instrumentation/mysql2/Gemfile index feee503b20..f6d6e682e2 100644 --- a/instrumentation/mysql2/Gemfile +++ b/instrumentation/mysql2/Gemfile @@ -18,7 +18,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/net_http/Gemfile b/instrumentation/net_http/Gemfile index 0b554ec370..d425915ffb 100644 --- a/instrumentation/net_http/Gemfile +++ b/instrumentation/net_http/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0.1' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/pg/Gemfile b/instrumentation/pg/Gemfile index 13cba80594..c8cc70574a 100644 --- a/instrumentation/pg/Gemfile +++ b/instrumentation/pg/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/que/Gemfile b/instrumentation/que/Gemfile index 7f7c1e547a..86c19d85f3 100644 --- a/instrumentation/que/Gemfile +++ b/instrumentation/que/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/racecar/Gemfile b/instrumentation/racecar/Gemfile index 2fa2bd9b0a..46a31c4f32 100644 --- a/instrumentation/racecar/Gemfile +++ b/instrumentation/racecar/Gemfile @@ -19,7 +19,7 @@ group :test do gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' gem 'rspec-mocks' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/rack/Gemfile b/instrumentation/rack/Gemfile index 1d3c73ffd7..6cf47f4bde 100644 --- a/instrumentation/rack/Gemfile +++ b/instrumentation/rack/Gemfile @@ -16,7 +16,7 @@ group :test do gem 'opentelemetry-sdk-experimental', '~> 0.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/rails/Gemfile b/instrumentation/rails/Gemfile index 2d02875f95..a838341192 100644 --- a/instrumentation/rails/Gemfile +++ b/instrumentation/rails/Gemfile @@ -16,7 +16,7 @@ group :test do gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rack-test', '~> 2.1.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/rake/Gemfile b/instrumentation/rake/Gemfile index fb19b3d26d..4e9f78413e 100644 --- a/instrumentation/rake/Gemfile +++ b/instrumentation/rake/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.0' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/rdkafka/Gemfile b/instrumentation/rdkafka/Gemfile index 5bcf3ed5b9..8eee59998f 100644 --- a/instrumentation/rdkafka/Gemfile +++ b/instrumentation/rdkafka/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/redis/Gemfile b/instrumentation/redis/Gemfile index e057a23309..9820b5d04a 100644 --- a/instrumentation/redis/Gemfile +++ b/instrumentation/redis/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/resque/Gemfile b/instrumentation/resque/Gemfile index c8f2d6d538..36f4548fa9 100644 --- a/instrumentation/resque/Gemfile +++ b/instrumentation/resque/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/restclient/Gemfile b/instrumentation/restclient/Gemfile index 73da0e359a..fdeae6f37b 100644 --- a/instrumentation/restclient/Gemfile +++ b/instrumentation/restclient/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/rspec/Gemfile b/instrumentation/rspec/Gemfile index 8342c6c4b6..ec4baf5a8a 100644 --- a/instrumentation/rspec/Gemfile +++ b/instrumentation/rspec/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/ruby_kafka/Gemfile b/instrumentation/ruby_kafka/Gemfile index 00db1e78d8..bdf35c396b 100644 --- a/instrumentation/ruby_kafka/Gemfile +++ b/instrumentation/ruby_kafka/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/sidekiq/Gemfile b/instrumentation/sidekiq/Gemfile index a08bbe9a5f..cea86f8de6 100644 --- a/instrumentation/sidekiq/Gemfile +++ b/instrumentation/sidekiq/Gemfile @@ -14,7 +14,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/instrumentation/sinatra/Gemfile b/instrumentation/sinatra/Gemfile index bda27c5412..8ce31c540a 100644 --- a/instrumentation/sinatra/Gemfile +++ b/instrumentation/sinatra/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rack-test', '~> 2.1' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/instrumentation/trilogy/Gemfile b/instrumentation/trilogy/Gemfile index 21d2e29607..616765e0ce 100644 --- a/instrumentation/trilogy/Gemfile +++ b/instrumentation/trilogy/Gemfile @@ -15,7 +15,7 @@ group :test do gem 'opentelemetry-sdk', '~> 1.1' gem 'opentelemetry-test-helpers', '~> 0.3' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/processor/baggage/Gemfile b/processor/baggage/Gemfile index f141d4f937..1f18fe36e9 100644 --- a/processor/baggage/Gemfile +++ b/processor/baggage/Gemfile @@ -10,7 +10,7 @@ group :test do gem 'minitest', '~> 5.0' gem 'opentelemetry-sdk', '~> 1.1' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/propagator/google_cloud_trace_context/Gemfile b/propagator/google_cloud_trace_context/Gemfile index 6ab5e639f7..7d1977dc44 100644 --- a/propagator/google_cloud_trace_context/Gemfile +++ b/propagator/google_cloud_trace_context/Gemfile @@ -8,7 +8,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/propagator/ottrace/Gemfile b/propagator/ottrace/Gemfile index c6df34a3e0..0e1f129532 100644 --- a/propagator/ottrace/Gemfile +++ b/propagator/ottrace/Gemfile @@ -9,7 +9,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/propagator/vitess/Gemfile b/propagator/vitess/Gemfile index 137963c754..94020968f1 100644 --- a/propagator/vitess/Gemfile +++ b/propagator/vitess/Gemfile @@ -9,7 +9,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/propagator/xray/Gemfile b/propagator/xray/Gemfile index b82bdc9f09..a1d587f26c 100644 --- a/propagator/xray/Gemfile +++ b/propagator/xray/Gemfile @@ -12,7 +12,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/resources/aws/Gemfile b/resources/aws/Gemfile index aa5000f8f6..e31289b1d6 100644 --- a/resources/aws/Gemfile +++ b/resources/aws/Gemfile @@ -12,7 +12,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/resources/azure/Gemfile b/resources/azure/Gemfile index aa5000f8f6..e31289b1d6 100644 --- a/resources/azure/Gemfile +++ b/resources/azure/Gemfile @@ -12,7 +12,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/resources/container/Gemfile b/resources/container/Gemfile index 010e3599cf..7e952667ee 100644 --- a/resources/container/Gemfile +++ b/resources/container/Gemfile @@ -12,7 +12,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9' diff --git a/resources/google_cloud_platform/Gemfile b/resources/google_cloud_platform/Gemfile index aa5000f8f6..e31289b1d6 100644 --- a/resources/google_cloud_platform/Gemfile +++ b/resources/google_cloud_platform/Gemfile @@ -12,7 +12,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'webmock', '~> 3.24' diff --git a/sampler/xray/Gemfile b/sampler/xray/Gemfile index 38e4fd3c33..3489d7bea8 100644 --- a/sampler/xray/Gemfile +++ b/sampler/xray/Gemfile @@ -12,7 +12,7 @@ group :test do gem 'bundler', '~> 2.4' gem 'minitest', '~> 5.0' gem 'rake', '~> 13.0' - gem 'rubocop', '~> 1.80.2' + gem 'rubocop', '~> 1.81.1' gem 'rubocop-performance', '~> 1.26.0' gem 'simplecov', '~> 0.22.0' gem 'yard', '~> 0.9'