Skip to content
Draft
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
8 changes: 8 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,11 @@ source 'https://rubygems.org'

# Specify your gem's dependencies in pack_stats.gemspec
gemspec

# activesupport 7.2.3.1+ patches CVEs while supporting Ruby >= 3.1 (the CI minimum).
# Version 8.x bumps connection_pool to 3.x which requires Ruby >= 3.2.
gem 'activesupport', '>= 7.2.3.1', '< 8'

# connection_pool 3.x requires Ruby >= 3.2; cap to 2.x so the lockfile
# stays compatible with the CI Ruby 3.1 matrix entry.
gem 'connection_pool', '< 3'
35 changes: 25 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,41 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (7.0.4.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
activesupport (7.2.3.1)
base64
benchmark (>= 0.3)
bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
logger (>= 1.4.2)
minitest (>= 5.1, < 6)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
ast (2.4.2)
base64 (0.2.0)
base64 (0.3.0)
benchmark (0.5.0)
bigdecimal (4.1.2)
code_ownership (1.32.17)
code_teams (~> 1.0)
packs
sorbet-runtime
code_teams (1.0.1)
sorbet-runtime
coderay (1.1.3)
concurrent-ruby (1.2.2)
concurrent-ruby (1.3.7)
connection_pool (2.5.5)
diff-lcs (1.5.0)
dogapi (1.45.0)
multi_json
i18n (1.13.0)
drb (2.2.3)
i18n (1.15.2)
concurrent-ruby (~> 1.0)
json (2.6.3)
logger (1.7.0)
method_source (1.0.0)
minitest (5.18.0)
minitest (5.27.0)
multi_json (1.15.0)
packs (0.0.6)
sorbet-runtime
Expand All @@ -57,7 +69,7 @@ GEM
sorbet-runtime (>= 0.5.9204)
unparser (>= 0.5.6)
regexp_parser (2.8.0)
rexml (3.2.5)
rexml (3.4.4)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
Expand Down Expand Up @@ -93,6 +105,7 @@ GEM
rubocop-sorbet (0.7.0)
rubocop (>= 0.90.0)
ruby-progressbar (1.13.0)
securerandom (0.4.1)
sorbet (0.5.11370)
sorbet-static (= 0.5.11370)
sorbet-runtime (0.5.10796)
Expand All @@ -118,7 +131,7 @@ GEM
unparser (0.6.8)
diff-lcs (~> 1.3)
parser (>= 3.2.0)
yard (0.9.36)
yard (0.9.44)
yard-sorbet (0.8.1)
sorbet-runtime (>= 0.5)
yard (>= 0.9)
Expand All @@ -128,7 +141,9 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
activesupport (>= 7.2.3.1, < 8)
base64
connection_pool (< 3)
pack_stats!
pry
rake
Expand Down
Loading
Loading