plutonium 0.43.1 → 0.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/CHANGELOG.md +35 -0
  4. data/Rakefile +24 -6
  5. data/app/assets/plutonium.css +1 -1
  6. data/config/initializers/pagy.rb +1 -4
  7. data/gemfiles/rails_7.gemfile +1 -1
  8. data/gemfiles/rails_7.gemfile.lock +128 -103
  9. data/gemfiles/rails_8.0.gemfile +1 -1
  10. data/gemfiles/rails_8.0.gemfile.lock +56 -46
  11. data/gemfiles/rails_8.1.gemfile +1 -1
  12. data/gemfiles/rails_8.1.gemfile.lock +108 -98
  13. data/lib/generators/pu/invites/install_generator.rb +69 -11
  14. data/lib/generators/pu/invites/templates/INSTRUCTIONS +4 -1
  15. data/lib/generators/pu/invites/templates/app/interactions/invite_user_interaction.rb.tt +1 -1
  16. data/lib/generators/pu/invites/templates/app/interactions/user_invite_user_interaction.rb.tt +1 -1
  17. data/lib/generators/pu/invites/templates/packages/invites/app/controllers/invites/user_invitations_controller.rb.tt +13 -8
  18. data/lib/generators/pu/invites/templates/packages/invites/app/controllers/invites/welcome_controller.rb.tt +17 -26
  19. data/lib/generators/pu/invites/templates/packages/invites/app/interactions/invites/cancel_invite_interaction.rb.tt +1 -1
  20. data/lib/generators/pu/invites/templates/packages/invites/app/mailers/invites/user_invite_mailer.rb.tt +2 -0
  21. data/lib/generators/pu/invites/templates/packages/invites/app/views/invites/user_invitations/show.html.erb.tt +3 -2
  22. data/lib/generators/pu/invites/templates/packages/invites/app/views/invites/welcome/pending_invitation.html.erb.tt +3 -2
  23. data/lib/generators/pu/lib/plutonium_generators/concerns/logger.rb +2 -0
  24. data/lib/generators/pu/lib/plutonium_generators/concerns/package_selector.rb +4 -6
  25. data/lib/generators/pu/lib/plutonium_generators/concerns/rodauth_redirects.rb +41 -0
  26. data/lib/generators/pu/lib/plutonium_generators/generator.rb +5 -1
  27. data/lib/generators/pu/lib/plutonium_generators/model_generator_base.rb +0 -1
  28. data/lib/generators/pu/lib/plutonium_generators/non_interactive_prompt.rb +27 -0
  29. data/lib/generators/pu/rodauth/templates/app/models/account.rb.tt +4 -0
  30. data/lib/generators/pu/saas/entity_generator.rb +16 -0
  31. data/lib/generators/pu/saas/membership_generator.rb +4 -3
  32. data/lib/generators/pu/saas/portal/USAGE +15 -0
  33. data/lib/generators/pu/saas/portal_generator.rb +122 -0
  34. data/lib/generators/pu/saas/setup/USAGE +17 -22
  35. data/lib/generators/pu/saas/setup_generator.rb +62 -9
  36. data/lib/generators/pu/saas/welcome/USAGE +27 -0
  37. data/lib/generators/pu/saas/welcome/templates/app/controllers/authenticated_controller.rb.tt +18 -0
  38. data/lib/generators/pu/saas/welcome/templates/app/controllers/welcome_controller.rb.tt +69 -0
  39. data/lib/generators/pu/saas/welcome/templates/app/views/layouts/welcome.html.erb.tt +33 -0
  40. data/lib/generators/pu/saas/welcome/templates/app/views/welcome/onboarding.html.erb.tt +51 -0
  41. data/lib/generators/pu/saas/welcome/templates/app/views/welcome/select_entity.html.erb.tt +22 -0
  42. data/lib/generators/pu/saas/welcome_generator.rb +197 -0
  43. data/lib/plutonium/auth/sequel_adapter.rb +1 -2
  44. data/lib/plutonium/core/controller.rb +18 -8
  45. data/lib/plutonium/core/controllers/association_resolver.rb +19 -6
  46. data/lib/plutonium/core/controllers/authorizable.rb +11 -0
  47. data/lib/plutonium/invites/concerns/cancel_invite.rb +3 -1
  48. data/lib/plutonium/invites/concerns/invite_token.rb +0 -8
  49. data/lib/plutonium/invites/concerns/invite_user.rb +1 -1
  50. data/lib/plutonium/resource/controller.rb +2 -3
  51. data/lib/plutonium/resource/controllers/authorizable.rb +4 -5
  52. data/lib/plutonium/resource/controllers/crud_actions/index_action.rb +1 -1
  53. data/lib/plutonium/resource/controllers/presentable.rb +2 -0
  54. data/lib/plutonium/ui/table/components/pagy_info.rb +1 -7
  55. data/lib/plutonium/ui/table/components/pagy_pagination.rb +4 -6
  56. data/lib/plutonium/version.rb +1 -1
  57. data/package.json +1 -1
  58. data/plutonium.gemspec +2 -2
  59. metadata +18 -10
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- plutonium (0.42.0)
4
+ plutonium (0.43.2)
5
5
  action_policy (~> 0.7.0)
6
6
  listen (~> 3.8)
7
- pagy (~> 9.0)
7
+ pagy (~> 43.0)
8
8
  phlex (~> 2.0)
9
9
  phlex-rails
10
10
  phlex-slotable (>= 1.0.0)
@@ -14,7 +14,7 @@ PATH
14
14
  phlexi-form (>= 0.14.1)
15
15
  phlexi-menu (>= 0.4.1)
16
16
  phlexi-table (>= 0.2.0)
17
- rabl (~> 0.16.1)
17
+ rabl (~> 0.17.0)
18
18
  rails (>= 7.2)
19
19
  redcarpet
20
20
  semantic_range (~> 3.0)
@@ -25,7 +25,7 @@ PATH
25
25
  GEM
26
26
  remote: https://rubygems.org/
27
27
  specs:
28
- action_policy (0.7.3)
28
+ action_policy (0.7.6)
29
29
  ruby-next-core (>= 1.0)
30
30
  actioncable (7.2.3)
31
31
  actionpack (= 7.2.3)
@@ -105,18 +105,18 @@ GEM
105
105
  bundler
106
106
  rake
107
107
  thor (>= 0.14.0)
108
- ast (2.4.2)
109
- base64 (0.2.0)
108
+ ast (2.4.3)
109
+ base64 (0.3.0)
110
110
  bcrypt (3.1.21)
111
- benchmark (0.4.0)
112
- bigdecimal (3.1.9)
113
- brakeman (6.2.2)
111
+ benchmark (0.5.0)
112
+ bigdecimal (4.0.1)
113
+ brakeman (8.0.4)
114
114
  racc
115
115
  builder (3.3.0)
116
- bundle-audit (0.1.0)
116
+ bundle-audit (0.2.0)
117
117
  bundler-audit
118
- bundler-audit (0.9.2)
119
- bundler (>= 1.2.0, < 3)
118
+ bundler-audit (0.9.3)
119
+ bundler (>= 1.2.0)
120
120
  thor (~> 1.0)
121
121
  cgi (0.5.1)
122
122
  chunky_png (1.4.0)
@@ -124,46 +124,49 @@ GEM
124
124
  activesupport (>= 3.0.0)
125
125
  railties (>= 3.0.0)
126
126
  thor (>= 0.14.6)
127
- concurrent-ruby (1.3.4)
128
- connection_pool (2.4.1)
127
+ concurrent-ruby (1.3.6)
128
+ connection_pool (3.0.2)
129
129
  crass (1.0.6)
130
- date (3.4.1)
131
- drb (2.2.1)
130
+ date (3.5.1)
131
+ drb (2.2.3)
132
+ erb (6.0.2)
132
133
  erubi (1.13.1)
133
- ffi (1.17.0-aarch64-linux-gnu)
134
- ffi (1.17.0-aarch64-linux-musl)
135
- ffi (1.17.0-arm-linux-gnu)
136
- ffi (1.17.0-arm-linux-musl)
137
- ffi (1.17.0-arm64-darwin)
138
- ffi (1.17.0-x86_64-darwin)
139
- ffi (1.17.0-x86_64-linux-gnu)
140
- ffi (1.17.0-x86_64-linux-musl)
134
+ ffi (1.17.3-aarch64-linux-gnu)
135
+ ffi (1.17.3-aarch64-linux-musl)
136
+ ffi (1.17.3-arm-linux-gnu)
137
+ ffi (1.17.3-arm-linux-musl)
138
+ ffi (1.17.3-arm64-darwin)
139
+ ffi (1.17.3-x86_64-darwin)
140
+ ffi (1.17.3-x86_64-linux-gnu)
141
+ ffi (1.17.3-x86_64-linux-musl)
141
142
  fiber-local (1.1.0)
142
143
  fiber-storage
143
- fiber-storage (1.0.0)
144
+ fiber-storage (1.0.1)
144
145
  globalid (1.3.0)
145
146
  activesupport (>= 6.1)
146
- i18n (1.14.6)
147
+ i18n (1.14.8)
147
148
  concurrent-ruby (~> 1.0)
148
- importmap-rails (2.1.0)
149
+ importmap-rails (2.2.3)
149
150
  actionpack (>= 6.0.0)
150
151
  activesupport (>= 6.0.0)
151
152
  railties (>= 6.0.0)
152
- io-console (0.8.0)
153
- irb (1.14.3)
153
+ io-console (0.8.2)
154
+ irb (1.17.0)
155
+ pp (>= 0.6.0)
156
+ prism (>= 1.3.0)
154
157
  rdoc (>= 4.0.0)
155
158
  reline (>= 0.4.2)
156
- json (2.9.1)
157
- language_server-protocol (3.17.0.3)
159
+ json (2.19.1)
160
+ language_server-protocol (3.17.0.5)
158
161
  lint_roller (1.1.0)
159
- listen (3.9.0)
162
+ listen (3.10.0)
163
+ logger
160
164
  rb-fsevent (~> 0.10, >= 0.10.3)
161
165
  rb-inotify (~> 0.9, >= 0.9.10)
162
- logger (1.6.4)
163
- loofah (2.23.1)
166
+ logger (1.7.0)
167
+ loofah (2.25.0)
164
168
  crass (~> 1.0.2)
165
169
  nokogiri (>= 1.12.0)
166
- lru_redux (1.1.0)
167
170
  mail (2.9.0)
168
171
  logger
169
172
  mini_mime (>= 0.1.1)
@@ -172,13 +175,15 @@ GEM
172
175
  net-smtp
173
176
  marcel (1.1.0)
174
177
  mini_mime (1.1.5)
175
- minitest (5.25.4)
178
+ minitest (6.0.2)
179
+ drb (~> 2.0)
180
+ prism (~> 1.5)
176
181
  minitest-reporters (1.7.1)
177
182
  ansi
178
183
  builder
179
184
  minitest (>= 5.0)
180
185
  ruby-progressbar
181
- net-imap (0.6.2)
186
+ net-imap (0.6.3)
182
187
  date
183
188
  net-protocol
184
189
  net-pop (0.1.2)
@@ -187,34 +192,38 @@ GEM
187
192
  timeout
188
193
  net-smtp (0.5.1)
189
194
  net-protocol
190
- nio4r (2.7.4)
191
- nokogiri (1.18.0-aarch64-linux-gnu)
195
+ nio4r (2.7.5)
196
+ nokogiri (1.19.1-aarch64-linux-gnu)
192
197
  racc (~> 1.4)
193
- nokogiri (1.18.0-aarch64-linux-musl)
198
+ nokogiri (1.19.1-aarch64-linux-musl)
194
199
  racc (~> 1.4)
195
- nokogiri (1.18.0-arm-linux-gnu)
200
+ nokogiri (1.19.1-arm-linux-gnu)
196
201
  racc (~> 1.4)
197
- nokogiri (1.18.0-arm-linux-musl)
202
+ nokogiri (1.19.1-arm-linux-musl)
198
203
  racc (~> 1.4)
199
- nokogiri (1.18.0-arm64-darwin)
204
+ nokogiri (1.19.1-arm64-darwin)
200
205
  racc (~> 1.4)
201
- nokogiri (1.18.0-x86_64-darwin)
206
+ nokogiri (1.19.1-x86_64-darwin)
202
207
  racc (~> 1.4)
203
- nokogiri (1.18.0-x86_64-linux-gnu)
208
+ nokogiri (1.19.1-x86_64-linux-gnu)
204
209
  racc (~> 1.4)
205
- nokogiri (1.18.0-x86_64-linux-musl)
210
+ nokogiri (1.19.1-x86_64-linux-musl)
206
211
  racc (~> 1.4)
207
- pagy (9.3.3)
208
- parallel (1.26.3)
209
- parser (3.3.6.0)
212
+ pagy (43.3.3)
213
+ json
214
+ uri
215
+ yaml
216
+ parallel (1.27.0)
217
+ parser (3.3.10.2)
210
218
  ast (~> 2.4.1)
211
219
  racc
212
220
  pastel (0.8.0)
213
221
  tty-color (~> 0.5)
214
- phlex (2.3.1)
222
+ phlex (2.4.1)
223
+ refract (~> 1.0)
215
224
  zeitwerk (~> 2.7)
216
- phlex-rails (2.3.1)
217
- phlex (~> 2.3.0)
225
+ phlex-rails (2.4.0)
226
+ phlex (~> 2.4.0)
218
227
  railties (>= 7.1, < 9)
219
228
  zeitwerk (~> 2.7)
220
229
  phlex-slotable (1.0.0)
@@ -245,24 +254,29 @@ GEM
245
254
  phlexi-display
246
255
  phlexi-field (~> 0.2.0)
247
256
  zeitwerk
257
+ pp (0.6.3)
258
+ prettyprint
259
+ prettyprint (0.2.0)
260
+ prism (1.9.0)
248
261
  propshaft (1.3.1)
249
262
  actionpack (>= 7.0.0)
250
263
  activesupport (>= 7.0.0)
251
264
  rack
252
- psych (5.2.2)
265
+ psych (5.3.1)
253
266
  date
254
267
  stringio
255
- puma (6.5.0)
268
+ puma (7.2.0)
256
269
  nio4r (~> 2.0)
257
- rabl (0.16.1)
270
+ rabl (0.17.0)
258
271
  activesupport (>= 2.3.14)
259
272
  racc (1.8.1)
260
- rack (3.1.8)
261
- rack-session (2.0.0)
273
+ rack (3.2.5)
274
+ rack-session (2.1.1)
275
+ base64 (>= 0.1.0)
262
276
  rack (>= 3.0.0)
263
277
  rack-test (2.2.0)
264
278
  rack (>= 1.3)
265
- rackup (2.2.1)
279
+ rackup (2.3.1)
266
280
  rack (>= 3)
267
281
  rails (7.2.3)
268
282
  actioncable (= 7.2.3)
@@ -278,12 +292,12 @@ GEM
278
292
  activesupport (= 7.2.3)
279
293
  bundler (>= 1.15.0)
280
294
  railties (= 7.2.3)
281
- rails-dom-testing (2.2.0)
295
+ rails-dom-testing (2.3.0)
282
296
  activesupport (>= 5.0.0)
283
297
  minitest
284
298
  nokogiri (>= 1.6)
285
- rails-html-sanitizer (1.6.2)
286
- loofah (~> 2.21)
299
+ rails-html-sanitizer (1.7.0)
300
+ loofah (~> 2.25)
287
301
  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)
288
302
  railties (7.2.3)
289
303
  actionpack (= 7.2.3)
@@ -296,17 +310,22 @@ GEM
296
310
  tsort (>= 0.2)
297
311
  zeitwerk (~> 2.6)
298
312
  rainbow (3.1.1)
299
- rake (13.2.1)
313
+ rake (13.3.1)
300
314
  rb-fsevent (0.11.2)
301
315
  rb-inotify (0.11.1)
302
316
  ffi (~> 1.0)
303
- rdoc (6.10.0)
317
+ rdoc (7.2.0)
318
+ erb
304
319
  psych (>= 4.0.0)
305
- redcarpet (3.6.0)
306
- regexp_parser (2.10.0)
307
- reline (0.6.0)
320
+ tsort
321
+ redcarpet (3.6.1)
322
+ refract (1.1.0)
323
+ prism
324
+ zeitwerk
325
+ regexp_parser (2.11.3)
326
+ reline (0.6.3)
308
327
  io-console (~> 0.5)
309
- roda (3.100.0)
328
+ roda (3.102.0)
310
329
  rack
311
330
  rodauth (2.42.0)
312
331
  roda (>= 2.6.0)
@@ -323,55 +342,62 @@ GEM
323
342
  chunky_png (~> 1.0)
324
343
  rqrcode_core (~> 2.0)
325
344
  rqrcode_core (2.1.0)
326
- rubocop (1.69.2)
345
+ rubocop (1.84.2)
327
346
  json (~> 2.3)
328
- language_server-protocol (>= 3.17.0)
347
+ language_server-protocol (~> 3.17.0.2)
348
+ lint_roller (~> 1.1.0)
329
349
  parallel (~> 1.10)
330
350
  parser (>= 3.3.0.2)
331
351
  rainbow (>= 2.2.2, < 4.0)
332
352
  regexp_parser (>= 2.9.3, < 3.0)
333
- rubocop-ast (>= 1.36.2, < 2.0)
353
+ rubocop-ast (>= 1.49.0, < 2.0)
334
354
  ruby-progressbar (~> 1.7)
335
355
  unicode-display_width (>= 2.4.0, < 4.0)
336
- rubocop-ast (1.37.0)
337
- parser (>= 3.3.1.0)
338
- rubocop-performance (1.23.0)
339
- rubocop (>= 1.48.1, < 2.0)
340
- rubocop-ast (>= 1.31.1, < 2.0)
341
- ruby-next-core (1.0.3)
356
+ rubocop-ast (1.49.1)
357
+ parser (>= 3.3.7.2)
358
+ prism (~> 1.7)
359
+ rubocop-performance (1.26.1)
360
+ lint_roller (~> 1.1)
361
+ rubocop (>= 1.75.0, < 2.0)
362
+ rubocop-ast (>= 1.47.1, < 2.0)
363
+ ruby-next-core (1.2.0)
342
364
  ruby-progressbar (1.13.0)
343
365
  securerandom (0.4.1)
344
- semantic_range (3.1.0)
345
- sequel (5.100.0)
366
+ semantic_range (3.1.1)
367
+ sequel (5.102.0)
346
368
  bigdecimal
347
369
  sequel-activerecord_connection (2.0.1)
348
370
  activerecord (>= 5.1)
349
371
  sequel (~> 5.38)
350
- sqlite3 (1.7.3-aarch64-linux)
351
- sqlite3 (1.7.3-arm-linux)
352
- sqlite3 (1.7.3-arm64-darwin)
353
- sqlite3 (1.7.3-x86_64-darwin)
354
- sqlite3 (1.7.3-x86_64-linux)
355
- standard (1.43.0)
372
+ sin_lru_redux (2.5.2)
373
+ sqlite3 (2.9.1-aarch64-linux-gnu)
374
+ sqlite3 (2.9.1-aarch64-linux-musl)
375
+ sqlite3 (2.9.1-arm-linux-gnu)
376
+ sqlite3 (2.9.1-arm-linux-musl)
377
+ sqlite3 (2.9.1-arm64-darwin)
378
+ sqlite3 (2.9.1-x86_64-darwin)
379
+ sqlite3 (2.9.1-x86_64-linux-gnu)
380
+ sqlite3 (2.9.1-x86_64-linux-musl)
381
+ standard (1.54.0)
356
382
  language_server-protocol (~> 3.17.0.2)
357
383
  lint_roller (~> 1.0)
358
- rubocop (~> 1.69.1)
384
+ rubocop (~> 1.84.0)
359
385
  standard-custom (~> 1.0.0)
360
- standard-performance (~> 1.6)
386
+ standard-performance (~> 1.8)
361
387
  standard-custom (1.0.2)
362
388
  lint_roller (~> 1.0)
363
389
  rubocop (~> 1.50)
364
- standard-performance (1.6.0)
390
+ standard-performance (1.9.0)
365
391
  lint_roller (~> 1.1)
366
- rubocop-performance (~> 1.23.0)
392
+ rubocop-performance (~> 1.26.0)
367
393
  stimulus-rails (1.3.4)
368
394
  railties (>= 6.0.0)
369
- stringio (3.1.2)
370
- tailwind_merge (0.14.0)
371
- lru_redux (~> 1.1)
372
- thor (1.3.2)
395
+ stringio (3.2.0)
396
+ tailwind_merge (1.4.0)
397
+ sin_lru_redux (~> 2.5)
398
+ thor (1.5.0)
373
399
  tilt (2.7.0)
374
- timeout (0.6.0)
400
+ timeout (0.6.1)
375
401
  tsort (0.2.0)
376
402
  tty-color (0.6.0)
377
403
  tty-cursor (0.7.1)
@@ -383,32 +409,31 @@ GEM
383
409
  tty-screen (~> 0.8)
384
410
  wisper (~> 2.0)
385
411
  tty-screen (0.8.2)
386
- turbo-rails (2.0.11)
387
- actionpack (>= 6.0.0)
388
- railties (>= 6.0.0)
412
+ turbo-rails (2.0.23)
413
+ actionpack (>= 7.1.0)
414
+ railties (>= 7.1.0)
389
415
  tzinfo (2.0.6)
390
416
  concurrent-ruby (~> 1.0)
391
- unicode-display_width (3.1.3)
392
- unicode-emoji (~> 4.0, >= 4.0.4)
393
- unicode-emoji (4.0.4)
417
+ unicode-display_width (3.2.0)
418
+ unicode-emoji (~> 4.1)
419
+ unicode-emoji (4.2.0)
420
+ uri (1.1.1)
394
421
  useragent (0.16.11)
395
422
  websocket-driver (0.8.0)
396
423
  base64
397
424
  websocket-extensions (>= 0.1.0)
398
425
  websocket-extensions (0.1.5)
399
426
  wisper (2.0.1)
400
- zeitwerk (2.7.1)
427
+ yaml (0.4.0)
428
+ zeitwerk (2.7.5)
401
429
 
402
430
  PLATFORMS
403
- aarch64-linux
404
431
  aarch64-linux-gnu
405
432
  aarch64-linux-musl
406
- arm-linux
407
433
  arm-linux-gnu
408
434
  arm-linux-musl
409
435
  arm64-darwin
410
436
  x86_64-darwin
411
- x86_64-linux
412
437
  x86_64-linux-gnu
413
438
  x86_64-linux-musl
414
439
 
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "rotp"
5
6
  gem "rails", "~> 8.0.0"
6
7
  gem "sqlite3"
7
8
  gem "puma", ">= 5.0"
@@ -13,7 +14,6 @@ gem "rodauth-rails"
13
14
  gem "sequel-activerecord_connection"
14
15
  gem "tilt"
15
16
  gem "bcrypt"
16
- gem "rotp"
17
17
  gem "rqrcode"
18
18
  gem "tzinfo-data", platforms: [:windows, :jruby]
19
19
 
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- plutonium (0.42.0)
4
+ plutonium (0.43.2)
5
5
  action_policy (~> 0.7.0)
6
6
  listen (~> 3.8)
7
- pagy (~> 9.0)
7
+ pagy (~> 43.0)
8
8
  phlex (~> 2.0)
9
9
  phlex-rails
10
10
  phlex-slotable (>= 1.0.0)
@@ -14,7 +14,7 @@ PATH
14
14
  phlexi-form (>= 0.14.1)
15
15
  phlexi-menu (>= 0.4.1)
16
16
  phlexi-table (>= 0.2.0)
17
- rabl (~> 0.16.1)
17
+ rabl (~> 0.17.0)
18
18
  rails (>= 7.2)
19
19
  redcarpet
20
20
  semantic_range (~> 3.0)
@@ -106,15 +106,15 @@ GEM
106
106
  ast (2.4.3)
107
107
  base64 (0.3.0)
108
108
  bcrypt (3.1.21)
109
- benchmark (0.4.1)
109
+ benchmark (0.5.0)
110
110
  bigdecimal (4.0.1)
111
- brakeman (7.1.1)
111
+ brakeman (8.0.4)
112
112
  racc
113
113
  builder (3.3.0)
114
- bundle-audit (0.1.0)
114
+ bundle-audit (0.2.0)
115
115
  bundler-audit
116
- bundler-audit (0.9.2)
117
- bundler (>= 1.2.0, < 3)
116
+ bundler-audit (0.9.3)
117
+ bundler (>= 1.2.0)
118
118
  thor (~> 1.0)
119
119
  chunky_png (1.4.0)
120
120
  combustion (1.5.0)
@@ -126,7 +126,7 @@ GEM
126
126
  crass (1.0.6)
127
127
  date (3.5.1)
128
128
  drb (2.2.3)
129
- erb (6.0.1)
129
+ erb (6.0.2)
130
130
  erubi (1.13.1)
131
131
  ffi (1.17.3-arm64-darwin)
132
132
  fiber-local (1.1.0)
@@ -136,16 +136,17 @@ GEM
136
136
  activesupport (>= 6.1)
137
137
  i18n (1.14.8)
138
138
  concurrent-ruby (~> 1.0)
139
- importmap-rails (2.1.0)
139
+ importmap-rails (2.2.3)
140
140
  actionpack (>= 6.0.0)
141
141
  activesupport (>= 6.0.0)
142
142
  railties (>= 6.0.0)
143
143
  io-console (0.8.2)
144
- irb (1.16.0)
144
+ irb (1.17.0)
145
145
  pp (>= 0.6.0)
146
+ prism (>= 1.3.0)
146
147
  rdoc (>= 4.0.0)
147
148
  reline (>= 0.4.2)
148
- json (2.18.0)
149
+ json (2.19.1)
149
150
  language_server-protocol (3.17.0.5)
150
151
  lint_roller (1.1.0)
151
152
  listen (3.10.0)
@@ -164,14 +165,15 @@ GEM
164
165
  net-smtp
165
166
  marcel (1.1.0)
166
167
  mini_mime (1.1.5)
167
- minitest (6.0.1)
168
+ minitest (6.0.2)
169
+ drb (~> 2.0)
168
170
  prism (~> 1.5)
169
171
  minitest-reporters (1.7.1)
170
172
  ansi
171
173
  builder
172
174
  minitest (>= 5.0)
173
175
  ruby-progressbar
174
- net-imap (0.6.2)
176
+ net-imap (0.6.3)
175
177
  date
176
178
  net-protocol
177
179
  net-pop (0.1.2)
@@ -181,19 +183,23 @@ GEM
181
183
  net-smtp (0.5.1)
182
184
  net-protocol
183
185
  nio4r (2.7.5)
184
- nokogiri (1.19.0-arm64-darwin)
186
+ nokogiri (1.19.1-arm64-darwin)
185
187
  racc (~> 1.4)
186
- pagy (9.4.0)
188
+ pagy (43.3.3)
189
+ json
190
+ uri
191
+ yaml
187
192
  parallel (1.27.0)
188
- parser (3.3.10.0)
193
+ parser (3.3.10.2)
189
194
  ast (~> 2.4.1)
190
195
  racc
191
196
  pastel (0.8.0)
192
197
  tty-color (~> 0.5)
193
- phlex (2.3.1)
198
+ phlex (2.4.1)
199
+ refract (~> 1.0)
194
200
  zeitwerk (~> 2.7)
195
- phlex-rails (2.3.1)
196
- phlex (~> 2.3.0)
201
+ phlex-rails (2.4.0)
202
+ phlex (~> 2.4.0)
197
203
  railties (>= 7.1, < 9)
198
204
  zeitwerk (~> 2.7)
199
205
  phlex-slotable (1.0.0)
@@ -227,7 +233,7 @@ GEM
227
233
  pp (0.6.3)
228
234
  prettyprint
229
235
  prettyprint (0.2.0)
230
- prism (1.7.0)
236
+ prism (1.9.0)
231
237
  propshaft (1.3.1)
232
238
  actionpack (>= 7.0.0)
233
239
  activesupport (>= 7.0.0)
@@ -235,12 +241,12 @@ GEM
235
241
  psych (5.3.1)
236
242
  date
237
243
  stringio
238
- puma (6.5.0)
244
+ puma (7.2.0)
239
245
  nio4r (~> 2.0)
240
- rabl (0.16.1)
246
+ rabl (0.17.0)
241
247
  activesupport (>= 2.3.14)
242
248
  racc (1.8.1)
243
- rack (3.2.4)
249
+ rack (3.2.5)
244
250
  rack-session (2.1.1)
245
251
  base64 (>= 0.1.0)
246
252
  rack (>= 3.0.0)
@@ -266,8 +272,8 @@ GEM
266
272
  activesupport (>= 5.0.0)
267
273
  minitest
268
274
  nokogiri (>= 1.6)
269
- rails-html-sanitizer (1.6.2)
270
- loofah (~> 2.21)
275
+ rails-html-sanitizer (1.7.0)
276
+ loofah (~> 2.25)
271
277
  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)
272
278
  railties (8.0.3)
273
279
  actionpack (= 8.0.3)
@@ -283,15 +289,18 @@ GEM
283
289
  rb-fsevent (0.11.2)
284
290
  rb-inotify (0.11.1)
285
291
  ffi (~> 1.0)
286
- rdoc (7.0.3)
292
+ rdoc (7.2.0)
287
293
  erb
288
294
  psych (>= 4.0.0)
289
295
  tsort
290
296
  redcarpet (3.6.1)
297
+ refract (1.1.0)
298
+ prism
299
+ zeitwerk
291
300
  regexp_parser (2.11.3)
292
301
  reline (0.6.3)
293
302
  io-console (~> 0.5)
294
- roda (3.100.0)
303
+ roda (3.102.0)
295
304
  rack
296
305
  rodauth (2.42.0)
297
306
  roda (>= 2.6.0)
@@ -308,7 +317,7 @@ GEM
308
317
  chunky_png (~> 1.0)
309
318
  rqrcode_core (~> 2.0)
310
319
  rqrcode_core (2.1.0)
311
- rubocop (1.80.2)
320
+ rubocop (1.84.2)
312
321
  json (~> 2.3)
313
322
  language_server-protocol (~> 3.17.0.2)
314
323
  lint_roller (~> 1.1.0)
@@ -316,47 +325,47 @@ GEM
316
325
  parser (>= 3.3.0.2)
317
326
  rainbow (>= 2.2.2, < 4.0)
318
327
  regexp_parser (>= 2.9.3, < 3.0)
319
- rubocop-ast (>= 1.46.0, < 2.0)
328
+ rubocop-ast (>= 1.49.0, < 2.0)
320
329
  ruby-progressbar (~> 1.7)
321
330
  unicode-display_width (>= 2.4.0, < 4.0)
322
- rubocop-ast (1.47.1)
331
+ rubocop-ast (1.49.1)
323
332
  parser (>= 3.3.7.2)
324
- prism (~> 1.4)
325
- rubocop-performance (1.25.0)
333
+ prism (~> 1.7)
334
+ rubocop-performance (1.26.1)
326
335
  lint_roller (~> 1.1)
327
336
  rubocop (>= 1.75.0, < 2.0)
328
- rubocop-ast (>= 1.38.0, < 2.0)
337
+ rubocop-ast (>= 1.47.1, < 2.0)
329
338
  ruby-next-core (1.2.0)
330
339
  ruby-progressbar (1.13.0)
331
340
  securerandom (0.4.1)
332
- semantic_range (3.1.0)
333
- sequel (5.100.0)
341
+ semantic_range (3.1.1)
342
+ sequel (5.102.0)
334
343
  bigdecimal
335
344
  sequel-activerecord_connection (2.0.1)
336
345
  activerecord (>= 5.1)
337
346
  sequel (~> 5.38)
338
347
  sin_lru_redux (2.5.2)
339
- sqlite3 (2.6.0-arm64-darwin)
340
- standard (1.51.1)
348
+ sqlite3 (2.9.1-arm64-darwin)
349
+ standard (1.54.0)
341
350
  language_server-protocol (~> 3.17.0.2)
342
351
  lint_roller (~> 1.0)
343
- rubocop (~> 1.80.2)
352
+ rubocop (~> 1.84.0)
344
353
  standard-custom (~> 1.0.0)
345
354
  standard-performance (~> 1.8)
346
355
  standard-custom (1.0.2)
347
356
  lint_roller (~> 1.0)
348
357
  rubocop (~> 1.50)
349
- standard-performance (1.8.0)
358
+ standard-performance (1.9.0)
350
359
  lint_roller (~> 1.1)
351
- rubocop-performance (~> 1.25.0)
360
+ rubocop-performance (~> 1.26.0)
352
361
  stimulus-rails (1.3.4)
353
362
  railties (>= 6.0.0)
354
363
  stringio (3.2.0)
355
- tailwind_merge (1.3.2)
364
+ tailwind_merge (1.4.0)
356
365
  sin_lru_redux (~> 2.5)
357
366
  thor (1.5.0)
358
367
  tilt (2.7.0)
359
- timeout (0.6.0)
368
+ timeout (0.6.1)
360
369
  tsort (0.2.0)
361
370
  tty-color (0.6.0)
362
371
  tty-cursor (0.7.1)
@@ -368,14 +377,14 @@ GEM
368
377
  tty-screen (~> 0.8)
369
378
  wisper (~> 2.0)
370
379
  tty-screen (0.8.2)
371
- turbo-rails (2.0.13)
380
+ turbo-rails (2.0.23)
372
381
  actionpack (>= 7.1.0)
373
382
  railties (>= 7.1.0)
374
383
  tzinfo (2.0.6)
375
384
  concurrent-ruby (~> 1.0)
376
385
  unicode-display_width (3.2.0)
377
386
  unicode-emoji (~> 4.1)
378
- unicode-emoji (4.1.0)
387
+ unicode-emoji (4.2.0)
379
388
  uri (1.1.1)
380
389
  useragent (0.16.11)
381
390
  websocket-driver (0.8.0)
@@ -383,7 +392,8 @@ GEM
383
392
  websocket-extensions (>= 0.1.0)
384
393
  websocket-extensions (0.1.5)
385
394
  wisper (2.0.1)
386
- zeitwerk (2.7.4)
395
+ yaml (0.4.0)
396
+ zeitwerk (2.7.5)
387
397
 
388
398
  PLATFORMS
389
399
  arm64-darwin