-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 96 vulnerabilities #83
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -7,25 +7,25 @@ end | |||||
|
|
||||||
|
|
||||||
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||||||
| gem 'rails', '~> 5.1.6', '>= 5.1.6.1' | ||||||
| gem 'rails', '~> 7.1.0' | ||||||
| # Use postgresql as the database for Active Record | ||||||
| gem 'pg', '>= 0.18', '< 2.0' | ||||||
| # Use Puma as the app server | ||||||
| gem 'puma', '~> 3.7' | ||||||
|
||||||
| gem 'puma', '~> 3.7' | |
| gem 'puma', '~> 6.0' |
Copilot
AI
Jul 13, 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 a GitHub reference without specifying a branch, tag, or commit hash can lead to unpredictable builds. Consider pinning to a specific version or at least a stable branch to ensure reproducible deployments.
| gem 'activeadmin', github: 'activeadmin' | |
| gem 'activeadmin', github: 'activeadmin', tag: 'v2.9.0' |
Copilot
AI
Jul 13, 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 a Git reference without specifying a branch, tag, or commit hash can lead to unpredictable builds. Consider pinning to a specific version or commit to ensure reproducible deployments.
| gem 'inherited_resources', git: 'https://github.com/activeadmin/inherited_resources' | |
| gem 'inherited_resources', git: 'https://github.com/activeadmin/inherited_resources', ref: 'a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0' |
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.
This is a major version upgrade from Rails 5.1.x to 7.1.x which introduces significant breaking changes. Consider upgrading incrementally through Rails 6.x first, or ensure comprehensive testing is performed as this change will likely require substantial application code updates.