Skip to content

Commit 5a67a88

Browse files
committed
Version 43.3.0
1 parent 6dc50bc commit 5a67a88

File tree

23 files changed

+39
-33
lines changed

23 files changed

+39
-33
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.2.10
22+
- label: I upgraded to pagy version 43.3.0
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: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
### Changes in 43.2.10
1+
### Changes in 43.3.0
22

33
<!-- changes_start -->
4-
- Add failing test and revert code that caused empty aria label
5-
- Avoid invalid limit param (similar to #862)
6-
- Add thread flag to /bin/pagy
7-
- Add uri gem dependency to the gemspec
8-
- Freeze the @order in key* apps
9-
- Replace require with require_relative in Pagy::CLI
10-
- Make Pagy.options thread-safe
4+
- Add :typesense_rails paginator (See typesense/typesense-rails#17)
5+
- Accept a variable number of search arguments
6+
- Improve resilience of internal pagy nav method
7+
- Use Pagy::OPTIONS instead of Pagy.options for efficiency
8+
- Simplify assign options
119
<!-- changes_end -->
1210

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

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: gem
33
specs:
4-
pagy (43.2.10)
4+
pagy (43.3.0)
55
json
66
uri
77
yaml
@@ -467,7 +467,7 @@ CHECKSUMS
467467
nokogiri (1.19.1-x86_64-linux-musl) sha256=4267f38ad4fc7e52a2e7ee28ed494e8f9d8eb4f4b3320901d55981c7b995fc23
468468
oj (3.16.15) sha256=4d3324cac3e8fef54c0fa250b2af26a16dadd9f9788a1d6b1b2098b793a1b2cd
469469
ostruct (0.6.3) sha256=95a2ed4a4bd1d190784e666b47b2d3f078e4a9efda2fccf18f84ddc6538ed912
470-
pagy (43.2.10)
470+
pagy (43.3.0)
471471
parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
472472
parser (3.3.10.2) sha256=6f60c84aa4bdcedb6d1a2434b738fe8a8136807b6adc8f7f53b97da9bc4e9357
473473
pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6

README.md

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

docs/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ expect the old/deprecated functionality to be supported ONLY during the current
1616

1717
## Recommended Version Constraint
1818

19-
Given a version number `MAJOR.MINOR.PATCH` (e.g. `43.2.10`):
19+
Given a version number `MAJOR.MINOR.PATCH` (e.g. `43.3.10`):
2020

2121
The `gem 'pagy', '~> 43.0'` Gemfile entry (without the PATCH number) ensures that the `bundle update` command will update pagy to
2222
the most recent version WITHOUT BREAKING CHANGES.
@@ -45,6 +45,14 @@ If you upgrade from version `< 9.0.0` see the following:
4545
4646
<hr>
4747

48+
## Version 43.3.0
49+
50+
- Add :typesense_rails paginator (See typesense/typesense-rails#17)
51+
- Accept a variable number of search arguments
52+
- Improve resilience of internal pagy nav method
53+
- Use Pagy::OPTIONS instead of Pagy.options for efficiency
54+
- Simplify assign options
55+
4856
## Version 43.2.10
4957

5058
- Add failing test and revert code that caused empty aria label

docs/guides/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ icon: rocket
1515
Prevent unexpected breaking changes in stable releases (see [omit the patch version](http://guides.rubygems.org/patterns/#pessimistic-version-constraint)):
1616

1717
```ruby Gemfile (stable)
18-
gem 'pagy', '~> 43.2' # Omit the patch segment to avoid breaking changes
18+
gem 'pagy', '~> 43.3' # Omit the patch segment to avoid breaking changes
1919
```
2020

2121
!!! You can try pagy directly

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.2.10
12+
label: 43.3.0
1313
colors:
1414
label:
1515
text: "#ffffff"

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.2.10'
19+
VERSION = '43.3.0'
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.2.10'
22+
VERSION = '43.3.0'
2323

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

gem/apps/keynav+root_key.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.2.10'
19+
VERSION = '43.3.0'
2020

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

0 commit comments

Comments
 (0)