-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 1 vulnerabilities #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,7 +4,7 @@ source 'https://rubygems.org' | |||||
|
|
||||||
| gem 'coffee-rails', '~> 4.1.0' | ||||||
| gem 'pg' | ||||||
| gem 'rails' | ||||||
| gem 'rails', '>= 7.1.5.2' | ||||||
| gem 'sass-rails', '~> 5.0' | ||||||
| gem 'uglifier', '>= 1.3.0' | ||||||
|
|
||||||
|
|
@@ -20,8 +20,8 @@ gem 'dotenv-rails', groups: %i[development test] | |||||
| gem 'dragonfly', '~> 1.0.12' | ||||||
| gem 'dragonfly-s3_data_store' | ||||||
| gem 'image_size' | ||||||
| gem 'rails_admin' | ||||||
| gem 'sequenced' | ||||||
| gem 'rails_admin', '>= 3.0.0' | ||||||
|
||||||
| gem 'rails_admin', '>= 3.0.0' | |
| gem 'rails_admin', '~> 3.0' |
Copilot
AI
Aug 19, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using '>=' version constraint for sequenced allows automatic upgrades to any future major version. Consider using '~> 3.2' to prevent breaking changes from potential 4.x releases.
| gem 'sequenced', '>= 3.2.0' | |
| gem 'sequenced', '~> 3.2' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using '>=' version constraint for a major version upgrade (Rails 5.x to 7.x) can introduce breaking changes unexpectedly. Consider using a more restrictive constraint like '~> 7.1.5' to prevent automatic upgrades to Rails 8.x which may have additional breaking changes.