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
2 changes: 1 addition & 1 deletion .instrumentation_generator/templates/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
12 changes: 11 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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-name> <new-version>
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'
9 changes: 8 additions & 1 deletion bin/update-dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion helpers/mysql/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion helpers/sql-obfuscation/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion helpers/sql/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/action_mailer/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/action_pack/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/action_view/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/active_job/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/active_model_serializers/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/active_record/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/active_storage/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/active_support/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/all/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/anthropic/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/aws_lambda/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/aws_sdk/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/base/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/bunny/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/concurrent_ruby/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/dalli/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/delayed_job/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/ethon/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/excon/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/faraday/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/grape/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/graphql/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/grpc/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/gruf/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/http/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/http_client/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/httpx/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/koala/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/lmdb/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/mongo/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/mysql2/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/net_http/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/pg/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/que/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/racecar/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion instrumentation/rack/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading