Skip to content

Commit 3e8f577

Browse files
committed
Merge branch 'dev'
2 parents a2b0307 + 7026a88 commit 3e8f577

33 files changed

+210
-82
lines changed

β€Ž.github/ISSUE_TEMPLATE/Code.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ body:
1919
attributes:
2020
label: πŸ‘€ Before submitting...
2121
options:
22-
- label: I upgraded to pagy version 43.1.6
22+
- label: I upgraded to pagy version 43.1.7
2323
required: true
2424
- label: I asked [Pagy AI](https://gurubase.io/g/pagy) (Good starting point for further investigation).
2525
required: true

β€Ž.github/latest_release_body.mdβ€Ž

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
### Changes in 43.1.6
1+
### Changes in 43.1.7
22

33
<!-- changes_start -->
4-
- Ensure the request GET and POST merge into a proper params Hash
5-
- Simplify code efficiency and readability
4+
- Fix and improve search paginators:
5+
- Add support for elasticsearch_rails v8
6+
- Prioritize elasticsearch_rails response over raw_response in
7+
total_count (causing multiple query executions)
8+
- Fix the ignored :search_method paginator option
9+
- Close #837, close #838, close #839.
610
<!-- changes_end -->
711

812
[CHANGELOG](https://ddnexus.github.io/pagy/changelog)

β€ŽGemfile.lockβ€Ž

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: gem
33
specs:
4-
pagy (43.1.6)
4+
pagy (43.1.7)
55
json
66
yaml
77

@@ -82,21 +82,21 @@ GEM
8282
securerandom (>= 0.3)
8383
tzinfo (~> 2.0, >= 2.0.5)
8484
uri (>= 0.13.1)
85-
addressable (2.8.7)
86-
public_suffix (>= 2.0.2, < 7.0)
85+
addressable (2.8.8)
86+
public_suffix (>= 2.0.2, < 8.0)
8787
ansi (1.5.0)
8888
ast (2.4.3)
8989
base64 (0.3.0)
9090
bigdecimal (3.3.1)
9191
builder (3.3.0)
9292
concurrent-ruby (1.3.5)
93-
connection_pool (2.5.4)
93+
connection_pool (2.5.5)
9494
crass (1.0.6)
9595
date (3.5.0)
9696
docile (1.4.1)
9797
domain_name (0.6.20240107)
9898
drb (2.2.3)
99-
erb (5.1.3)
99+
erb (6.0.0)
100100
erubi (1.13.1)
101101
ffi (1.17.2-x86_64-linux-gnu)
102102
ffi-compiler (1.3.2)
@@ -142,7 +142,7 @@ GEM
142142
net-smtp
143143
marcel (1.1.0)
144144
mini_mime (1.1.5)
145-
minitest (5.26.1)
145+
minitest (5.26.2)
146146
minitest-reporters (1.7.1)
147147
ansi
148148
builder
@@ -179,7 +179,7 @@ GEM
179179
psych (5.2.6)
180180
date
181181
stringio
182-
public_suffix (6.0.2)
182+
public_suffix (7.0.0)
183183
puma (7.1.0)
184184
nio4r (~> 2.0)
185185
racc (1.8.1)
@@ -216,7 +216,7 @@ GEM
216216
rails-html-sanitizer (1.6.2)
217217
loofah (~> 2.21)
218218
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
219-
rails-i18n (8.0.2)
219+
rails-i18n (8.1.0)
220220
i18n (>= 0.7, < 2)
221221
railties (>= 8.0.0, < 9)
222222
railties (8.1.1)
@@ -233,7 +233,7 @@ GEM
233233
rb-fsevent (0.11.2)
234234
rb-inotify (0.11.1)
235235
ffi (~> 1.0)
236-
rdoc (6.15.1)
236+
rdoc (6.16.0)
237237
erb
238238
psych (>= 4.0.0)
239239
tsort

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

β€Žbun.lockbβ€Ž

-2.23 KB
Binary file not shown.

β€Ždocs/CHANGELOG.mdβ€Ž

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ If you upgrade from version `< 9.0.0` see the following:
4545
4646
<hr>
4747

48+
## Version 43.1.7
49+
50+
- Fix and improve search paginators:
51+
- Add support for elasticsearch_rails v8
52+
- Prioritize elasticsearch_rails response over raw_response in
53+
total_count (causing multiple query executions)
54+
- Fix the ignored :search_method paginator option
55+
- Close #837, close #838, close #839.
56+
4857
## Version 43.1.6
4958

5059
- Ensure the request GET and POST merge into a proper params Hash

β€Ždocs/retype.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ url: https://ddnexus.github.io/pagy/
99
branding:
1010
title: Pagy
1111
logo: assets/images/pagy-the-frog.png
12-
label: 43.1.6
12+
label: 43.1.7
1313
colors:
1414
label:
1515
text: "#ffffff"

β€Že2e/snapshots.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žgem/apps/calendar.ruβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# URL
1717
# http://127.0.0.1:8000
1818

19-
VERSION = '43.1.6'
19+
VERSION = '43.1.7'
2020

2121
if VERSION != Pagy::VERSION
2222
Warning.warn("\n>>> WARNING! '#{File.basename(__FILE__)}-#{VERSION}' running with 'pagy-#{Pagy::VERSION}'! <<< \n\n")

β€Žgem/apps/demo.ruβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# URL
2020
# http://127.0.0.1:8000
2121

22-
VERSION = '43.1.6'
22+
VERSION = '43.1.7'
2323

2424
if VERSION != Pagy::VERSION
2525
Warning.warn("\n>>> WARNING! '#{File.basename(__FILE__)}-#{VERSION}' running with 'pagy-#{Pagy::VERSION}'! <<< \n\n")

0 commit comments

Comments
Β (0)