Skip to content
Open
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 Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source "https://rubygems.org"

gem 'github-pages', '>= 207'
gem 'github-pages', '>= 215'

Choose a reason for hiding this comment

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

medium

The version constraint '>= 215' is quite broad and could pull in future versions of github-pages with breaking changes unexpectedly. Snyk has also flagged this as a potential breaking change. Since this update brings github-pages to version 232 (as seen in Gemfile.lock), consider using a pessimistic version constraint to improve stability. This will lock the version to the 232 series, allowing for patch releases but preventing automatic updates to a future version like 233.

gem 'github-pages', '~> 232.0'

gem 'html-proofer', '>= 3.13.0'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
Loading