Skip to content
Merged
Changes from 1 commit
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 Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ gem 'regexp_parser'
gem 'reline'
gem 'resolv'
gem 'resolv-replace'
gem 'rexml'
gem 'rexml', '>= 3.4.2'
Comment on lines 115 to +116
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P1] Update Gemfile.lock alongside rexml version bump

The Gemfile now requires gem 'rexml', '>= 3.4.2' but the checked‑in Gemfile.lock still pins rexml (3.4.1). On any CI/deployment that installs gems with bundle install --deployment/--frozen, the version mismatch causes bundler to abort and the security upgrade is not actually applied. Regenerate and commit the lock file with rexml 3.4.2 so the dependency constraint and lock stay in sync.

Useful? React with 👍 / 👎.

gem 'rinda'
gem 'rspec'
gem 'rspec-core'
Expand Down
Loading