-
Notifications
You must be signed in to change notification settings - Fork 5
Bump pagy from 9.3.4 to 43.5.3 #110
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
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 |
|---|---|---|
|
|
@@ -287,7 +287,10 @@ GEM | |
| racc (~> 1.4) | ||
| nokogiri (1.19.2-x86_64-linux-gnu) | ||
| racc (~> 1.4) | ||
| pagy (9.3.4) | ||
| pagy (43.5.3) | ||
| json | ||
| uri | ||
| yaml | ||
|
Comment on lines
+290
to
+293
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Pagy 43 deprecates the legacy extras model and explicitly marks Useful? React with 👍 / 👎. |
||
| parallel (1.27.0) | ||
| parser (3.3.9.0) | ||
| ast (~> 2.4.1) | ||
|
|
@@ -515,6 +518,7 @@ GEM | |
| websocket-extensions (0.1.5) | ||
| xpath (3.2.0) | ||
| nokogiri (~> 1.8) | ||
| yaml (0.4.0) | ||
| zeitwerk (2.7.5) | ||
|
|
||
| PLATFORMS | ||
|
|
||
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 lockfile change jumps from Pagy 9.x to 43.x, but the app still uses legacy Pagy APIs (e.g.,
pagy(@faqs, items: 12)inapp/controllers/faqs_controller.rbandinclude Pagy::Frontendinapp/helpers/application_helper.rb). The upstream 43 upgrade guide describes this as a breaking redesign requiring API migration (including new paginator call forms and option names), so leaving code unchanged here is likely to break pagination at runtime when those controller/helper paths execute.Useful? React with 👍 / 👎.