Skip to content

Commit 7e0d5ff

Browse files
committed
Version bump
1 parent 1e76dd8 commit 7e0d5ff

File tree

9 files changed

+534
-490
lines changed

9 files changed

+534
-490
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
### Unreleased
22

3+
### 2.0.2
4+
5+
- Use `try` so field doesn't raise error when retrieving invalid values
6+
- Don't cast model on find. Let ActiveRecord handle STI.
7+
38
### 2.0.1
49

510
- Add pagination to has_many and nested_has_many fields

Gemfile.lock

Lines changed: 96 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
madmin (2.0.1)
4+
madmin (2.0.2)
55
importmap-rails
66
pagy (>= 3.5)
77
propshaft
@@ -10,65 +10,65 @@ PATH
1010
GEM
1111
remote: https://rubygems.org/
1212
specs:
13-
actioncable (8.0.1)
14-
actionpack (= 8.0.1)
15-
activesupport (= 8.0.1)
13+
actioncable (8.0.2)
14+
actionpack (= 8.0.2)
15+
activesupport (= 8.0.2)
1616
nio4r (~> 2.0)
1717
websocket-driver (>= 0.6.1)
1818
zeitwerk (~> 2.6)
19-
actionmailbox (8.0.1)
20-
actionpack (= 8.0.1)
21-
activejob (= 8.0.1)
22-
activerecord (= 8.0.1)
23-
activestorage (= 8.0.1)
24-
activesupport (= 8.0.1)
19+
actionmailbox (8.0.2)
20+
actionpack (= 8.0.2)
21+
activejob (= 8.0.2)
22+
activerecord (= 8.0.2)
23+
activestorage (= 8.0.2)
24+
activesupport (= 8.0.2)
2525
mail (>= 2.8.0)
26-
actionmailer (8.0.1)
27-
actionpack (= 8.0.1)
28-
actionview (= 8.0.1)
29-
activejob (= 8.0.1)
30-
activesupport (= 8.0.1)
26+
actionmailer (8.0.2)
27+
actionpack (= 8.0.2)
28+
actionview (= 8.0.2)
29+
activejob (= 8.0.2)
30+
activesupport (= 8.0.2)
3131
mail (>= 2.8.0)
3232
rails-dom-testing (~> 2.2)
33-
actionpack (8.0.1)
34-
actionview (= 8.0.1)
35-
activesupport (= 8.0.1)
33+
actionpack (8.0.2)
34+
actionview (= 8.0.2)
35+
activesupport (= 8.0.2)
3636
nokogiri (>= 1.8.5)
3737
rack (>= 2.2.4)
3838
rack-session (>= 1.0.1)
3939
rack-test (>= 0.6.3)
4040
rails-dom-testing (~> 2.2)
4141
rails-html-sanitizer (~> 1.6)
4242
useragent (~> 0.16)
43-
actiontext (8.0.1)
44-
actionpack (= 8.0.1)
45-
activerecord (= 8.0.1)
46-
activestorage (= 8.0.1)
47-
activesupport (= 8.0.1)
43+
actiontext (8.0.2)
44+
actionpack (= 8.0.2)
45+
activerecord (= 8.0.2)
46+
activestorage (= 8.0.2)
47+
activesupport (= 8.0.2)
4848
globalid (>= 0.6.0)
4949
nokogiri (>= 1.8.5)
50-
actionview (8.0.1)
51-
activesupport (= 8.0.1)
50+
actionview (8.0.2)
51+
activesupport (= 8.0.2)
5252
builder (~> 3.1)
5353
erubi (~> 1.11)
5454
rails-dom-testing (~> 2.2)
5555
rails-html-sanitizer (~> 1.6)
56-
activejob (8.0.1)
57-
activesupport (= 8.0.1)
56+
activejob (8.0.2)
57+
activesupport (= 8.0.2)
5858
globalid (>= 0.3.6)
59-
activemodel (8.0.1)
60-
activesupport (= 8.0.1)
61-
activerecord (8.0.1)
62-
activemodel (= 8.0.1)
63-
activesupport (= 8.0.1)
59+
activemodel (8.0.2)
60+
activesupport (= 8.0.2)
61+
activerecord (8.0.2)
62+
activemodel (= 8.0.2)
63+
activesupport (= 8.0.2)
6464
timeout (>= 0.4.0)
65-
activestorage (8.0.1)
66-
actionpack (= 8.0.1)
67-
activejob (= 8.0.1)
68-
activerecord (= 8.0.1)
69-
activesupport (= 8.0.1)
65+
activestorage (8.0.2)
66+
actionpack (= 8.0.2)
67+
activejob (= 8.0.2)
68+
activerecord (= 8.0.2)
69+
activesupport (= 8.0.2)
7070
marcel (~> 1.0)
71-
activesupport (8.0.1)
71+
activesupport (8.0.2)
7272
base64
7373
benchmark (>= 0.3)
7474
bigdecimal
@@ -85,15 +85,15 @@ GEM
8585
bundler
8686
rake
8787
thor (>= 0.14.0)
88-
ast (2.4.2)
88+
ast (2.4.3)
8989
base64 (0.2.0)
9090
bcrypt (3.1.20)
9191
benchmark (0.4.0)
9292
bigdecimal (3.1.9)
9393
bindex (0.8.1)
9494
builder (3.3.0)
9595
concurrent-ruby (1.3.5)
96-
connection_pool (2.5.0)
96+
connection_pool (2.5.3)
9797
crass (1.0.6)
9898
date (3.4.1)
9999
drb (2.2.1)
@@ -110,14 +110,14 @@ GEM
110110
activesupport (>= 6.0.0)
111111
railties (>= 6.0.0)
112112
io-console (0.8.0)
113-
irb (1.15.1)
113+
irb (1.15.2)
114114
pp (>= 0.6.0)
115115
rdoc (>= 4.0.0)
116116
reline (>= 0.4.2)
117-
json (2.10.1)
117+
json (2.11.3)
118118
language_server-protocol (3.17.0.4)
119119
lint_roller (1.1.0)
120-
logger (1.6.6)
120+
logger (1.7.0)
121121
loofah (2.24.0)
122122
crass (~> 1.0.2)
123123
nokogiri (>= 1.12.0)
@@ -129,11 +129,11 @@ GEM
129129
marcel (1.0.4)
130130
mini_mime (1.1.5)
131131
mini_portile2 (2.8.8)
132-
minitest (5.25.4)
132+
minitest (5.25.5)
133133
mysql2 (0.5.6)
134134
name_of_person (1.1.3)
135135
activesupport (>= 5.2.0)
136-
net-imap (0.5.6)
136+
net-imap (0.5.8)
137137
date
138138
net-protocol
139139
net-pop (0.1.2)
@@ -143,129 +143,133 @@ GEM
143143
net-smtp (0.5.1)
144144
net-protocol
145145
nio4r (2.7.4)
146-
nokogiri (1.18.3)
146+
nokogiri (1.18.8)
147147
mini_portile2 (~> 2.8.2)
148148
racc (~> 1.4)
149-
nokogiri (1.18.3-arm64-darwin)
149+
nokogiri (1.18.8-arm64-darwin)
150150
racc (~> 1.4)
151-
nokogiri (1.18.3-x86_64-darwin)
151+
nokogiri (1.18.8-x86_64-darwin)
152152
racc (~> 1.4)
153-
nokogiri (1.18.3-x86_64-linux-gnu)
153+
nokogiri (1.18.8-x86_64-linux-gnu)
154154
racc (~> 1.4)
155-
pagy (9.3.3)
156-
parallel (1.26.3)
157-
parser (3.3.7.1)
155+
pagy (9.3.4)
156+
parallel (1.27.0)
157+
parser (3.3.8.0)
158158
ast (~> 2.4.1)
159159
racc
160160
pg (1.5.9)
161161
pp (0.6.2)
162162
prettyprint
163163
prettyprint (0.2.0)
164+
prism (1.4.0)
164165
propshaft (1.1.0)
165166
actionpack (>= 7.0.0)
166167
activesupport (>= 7.0.0)
167168
rack
168169
railties (>= 7.0.0)
169-
psych (5.2.3)
170+
psych (5.2.4)
170171
date
171172
stringio
172173
puma (6.6.0)
173174
nio4r (~> 2.0)
174175
racc (1.8.1)
175-
rack (3.1.10)
176-
rack-session (2.1.0)
176+
rack (3.1.13)
177+
rack-session (2.1.1)
177178
base64 (>= 0.1.0)
178179
rack (>= 3.0.0)
179180
rack-test (2.2.0)
180181
rack (>= 1.3)
181182
rackup (2.2.1)
182183
rack (>= 3)
183-
rails (8.0.1)
184-
actioncable (= 8.0.1)
185-
actionmailbox (= 8.0.1)
186-
actionmailer (= 8.0.1)
187-
actionpack (= 8.0.1)
188-
actiontext (= 8.0.1)
189-
actionview (= 8.0.1)
190-
activejob (= 8.0.1)
191-
activemodel (= 8.0.1)
192-
activerecord (= 8.0.1)
193-
activestorage (= 8.0.1)
194-
activesupport (= 8.0.1)
184+
rails (8.0.2)
185+
actioncable (= 8.0.2)
186+
actionmailbox (= 8.0.2)
187+
actionmailer (= 8.0.2)
188+
actionpack (= 8.0.2)
189+
actiontext (= 8.0.2)
190+
actionview (= 8.0.2)
191+
activejob (= 8.0.2)
192+
activemodel (= 8.0.2)
193+
activerecord (= 8.0.2)
194+
activestorage (= 8.0.2)
195+
activesupport (= 8.0.2)
195196
bundler (>= 1.15.0)
196-
railties (= 8.0.1)
197+
railties (= 8.0.2)
197198
rails-dom-testing (2.2.0)
198199
activesupport (>= 5.0.0)
199200
minitest
200201
nokogiri (>= 1.6)
201202
rails-html-sanitizer (1.6.2)
202203
loofah (~> 2.21)
203204
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)
204-
railties (8.0.1)
205-
actionpack (= 8.0.1)
206-
activesupport (= 8.0.1)
205+
railties (8.0.2)
206+
actionpack (= 8.0.2)
207+
activesupport (= 8.0.2)
207208
irb (~> 1.13)
208209
rackup (>= 1.0.0)
209210
rake (>= 12.2)
210211
thor (~> 1.0, >= 1.2.2)
211212
zeitwerk (~> 2.6)
212213
rainbow (3.1.1)
213214
rake (13.2.1)
214-
rdoc (6.12.0)
215+
rdoc (6.13.1)
215216
psych (>= 4.0.0)
216217
regexp_parser (2.10.0)
217-
reline (0.6.0)
218+
reline (0.6.1)
218219
io-console (~> 0.5)
219-
rubocop (1.71.2)
220+
rubocop (1.75.5)
220221
json (~> 2.3)
221-
language_server-protocol (>= 3.17.0)
222+
language_server-protocol (~> 3.17.0.2)
223+
lint_roller (~> 1.1.0)
222224
parallel (~> 1.10)
223225
parser (>= 3.3.0.2)
224226
rainbow (>= 2.2.2, < 4.0)
225227
regexp_parser (>= 2.9.3, < 3.0)
226-
rubocop-ast (>= 1.38.0, < 2.0)
228+
rubocop-ast (>= 1.44.0, < 2.0)
227229
ruby-progressbar (~> 1.7)
228230
unicode-display_width (>= 2.4.0, < 4.0)
229-
rubocop-ast (1.38.0)
230-
parser (>= 3.3.1.0)
231-
rubocop-performance (1.23.1)
232-
rubocop (>= 1.48.1, < 2.0)
233-
rubocop-ast (>= 1.31.1, < 2.0)
231+
rubocop-ast (1.44.1)
232+
parser (>= 3.3.7.2)
233+
prism (~> 1.4)
234+
rubocop-performance (1.25.0)
235+
lint_roller (~> 1.1)
236+
rubocop (>= 1.75.0, < 2.0)
237+
rubocop-ast (>= 1.38.0, < 2.0)
234238
ruby-progressbar (1.13.0)
235239
securerandom (0.4.1)
236240
sqlite3 (2.6.0)
237241
mini_portile2 (~> 2.8.0)
238242
sqlite3 (2.6.0-arm64-darwin)
239243
sqlite3 (2.6.0-x86_64-darwin)
240244
sqlite3 (2.6.0-x86_64-linux-gnu)
241-
standard (1.45.0)
245+
standard (1.49.0)
242246
language_server-protocol (~> 3.17.0.2)
243247
lint_roller (~> 1.0)
244-
rubocop (~> 1.71.0)
248+
rubocop (~> 1.75.2)
245249
standard-custom (~> 1.0.0)
246-
standard-performance (~> 1.6)
250+
standard-performance (~> 1.8)
247251
standard-custom (1.0.2)
248252
lint_roller (~> 1.0)
249253
rubocop (~> 1.50)
250-
standard-performance (1.6.0)
254+
standard-performance (1.8.0)
251255
lint_roller (~> 1.1)
252-
rubocop-performance (~> 1.23.0)
256+
rubocop-performance (~> 1.25.0)
253257
standardrb (1.0.1)
254258
standard
255259
stimulus-rails (1.3.4)
256260
railties (>= 6.0.0)
257-
stringio (3.1.5)
261+
stringio (3.1.7)
258262
thor (1.3.2)
259263
timeout (0.4.3)
260-
turbo-rails (2.0.11)
261-
actionpack (>= 6.0.0)
262-
railties (>= 6.0.0)
264+
turbo-rails (2.0.13)
265+
actionpack (>= 7.1.0)
266+
railties (>= 7.1.0)
263267
tzinfo (2.0.6)
264268
concurrent-ruby (~> 1.0)
265269
unicode-display_width (3.1.4)
266270
unicode-emoji (~> 4.0, >= 4.0.4)
267271
unicode-emoji (4.0.4)
268-
uri (1.0.2)
272+
uri (1.0.3)
269273
useragent (0.16.11)
270274
web-console (4.2.1)
271275
actionview (>= 6.0.0)
@@ -306,4 +310,4 @@ DEPENDENCIES
306310
web-console
307311

308312
BUNDLED WITH
309-
2.6.3
313+
2.6.8

0 commit comments

Comments
 (0)