Skip to content

Commit 39fff36

Browse files
authored
fix(deps): consolidate dependency updates (#2141)
1 parent 52eb4c2 commit 39fff36

20 files changed

Lines changed: 204 additions & 226 deletions

‎Gemfile.lock‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ GEM
8686
io-event (~> 1.21)
8787
attr_required (1.0.2)
8888
aws-eventstream (1.4.0)
89-
aws-partitions (1.1281.0)
89+
aws-partitions (1.1283.0)
9090
aws-sdk-core (3.254.1)
9191
aws-eventstream (~> 1, >= 1.3.0)
9292
aws-partitions (~> 1, >= 1.992.0)
@@ -110,7 +110,7 @@ GEM
110110
thread_safe (~> 0.3, >= 0.3.1)
111111
base64 (0.3.0)
112112
bcrypt (3.1.22)
113-
bigdecimal (3.3.1)
113+
bigdecimal (4.1.2)
114114
bindata (2.5.1)
115115
bindex (0.8.1)
116116
bootsnap (1.26.0)
@@ -201,7 +201,7 @@ GEM
201201
ecs-logging (1.0.0)
202202
erb (6.0.7)
203203
erubi (1.13.1)
204-
et-orbi (1.4.1)
204+
et-orbi (1.4.2)
205205
tzinfo
206206
event_stream_parser (1.0.0)
207207
factory_bot (6.6.0)
@@ -342,7 +342,7 @@ GEM
342342
net-protocol
343343
net-pop (0.1.2)
344344
net-protocol
345-
net-protocol (0.2.2)
345+
net-protocol (0.3.0)
346346
timeout
347347
net-smtp (0.5.1)
348348
net-protocol
@@ -468,7 +468,7 @@ GEM
468468
paper_trail (17.0.0)
469469
activerecord (>= 7.1)
470470
request_store (~> 1.4)
471-
parallel (2.1.0)
471+
parallel (2.2.0)
472472
parser (3.3.12.0)
473473
ast (~> 2.4.1)
474474
racc
@@ -598,7 +598,7 @@ GEM
598598
rexml (3.4.4)
599599
roda (3.107.0)
600600
rack
601-
rodauth (2.46.0)
601+
rodauth (2.47.0)
602602
roda (>= 2.6.0)
603603
sequel (>= 4)
604604
rodauth-model (0.5.0)
@@ -638,8 +638,8 @@ GEM
638638
rspec-mocks (>= 3.13.0, < 5.0.0)
639639
rspec-support (>= 3.13.0, < 5.0.0)
640640
rspec-support (3.13.7)
641-
rubocop (1.89.0)
642-
json (~> 2.3)
641+
rubocop (1.90.0)
642+
json (>= 2.3)
643643
language_server-protocol (~> 3.17.0.2)
644644
lint_roller (~> 1.1.0)
645645
parallel (>= 1.10)
@@ -714,7 +714,7 @@ GEM
714714
safety_net_attestation (0.5.0)
715715
jwt (>= 2.0, < 4.0)
716716
securerandom (0.4.1)
717-
sequel (5.107.0)
717+
sequel (5.108.0)
718718
bigdecimal
719719
sequel-activerecord_connection (2.0.1)
720720
activerecord (>= 5.1)

‎app/components/barcode_scanner.rb‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
module Components
4-
# rubocop:disable Layout/LineLength
4+
# rubocop:disable-next Layout/LineLength
55
class BarcodeScanner < Components::Base
66
def initialize(formats: nil, **attrs)
77
@formats = formats || %w[EAN_13 EAN_8 CODE_128 CODE_39 QR_CODE]
@@ -113,5 +113,4 @@ def render_manual_input
113113
end
114114
end
115115
end
116-
# rubocop:enable Layout/LineLength
117116
end

‎app/components/medications/finder_view.rb‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module Components
44
module Medications
5-
# rubocop:disable Layout/LineLength
5+
# rubocop:disable-next Layout/LineLength
66
class FinderView < Components::Base
77
def view_template
88
div(
@@ -185,6 +185,5 @@ def render_idle_state
185185
end
186186
end
187187
end
188-
# rubocop:enable Layout/LineLength
189188
end
190189
end

‎app/components/medications/refill_modal.rb‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class RefillModal < Components::Base
88
attr_reader :medication, :button_variant, :button_class, :button_size, :quantity,
99
:restock_date, :icon_only, :button_label, :icon
1010

11-
# rubocop:disable Metrics/ParameterLists
11+
# rubocop:disable-next Metrics/ParameterLists
1212
def initialize(medication:, button_variant: :outlined, button_class: '', button_size: :md,
1313
quantity: nil, restock_date: nil, icon_only: false, button_label: nil, icon: nil)
1414
@medication = medication
@@ -22,7 +22,6 @@ def initialize(medication:, button_variant: :outlined, button_class: '', button_
2222
@icon = icon
2323
super()
2424
end
25-
# rubocop:enable Metrics/ParameterLists
2625

2726
def view_template
2827
Dialog do

‎app/misc/rodauth_main.rb‎

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
require 'sequel/core'
44

5-
# rubocop:disable Metrics/ClassLength
5+
# rubocop:disable-next Metrics/ClassLength
66
class RodauthMain < Rodauth::Rails::Auth
7-
# rubocop:disable Metrics/BlockLength -- Rodauth configuration DSL requires a single configure block
7+
# rubocop:disable-next Metrics/BlockLength -- Rodauth configuration DSL requires a single configure block
88
configure do
99
# List of authentication features that are loaded.
1010
enable :create_account, :verify_account, :verify_account_grace_period,
@@ -805,6 +805,4 @@ def zitadel_role_names(auth_data)
805805
# verify_login_change_deadline_interval Hash[days: 2]
806806
# remember_deadline_interval Hash[days: 30]
807807
end
808-
# rubocop:enable Metrics/BlockLength
809808
end
810-
# rubocop:enable Metrics/ClassLength

‎app/services/auth_token_audit_logger.rb‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ class AuthTokenAuditLogger
66

77
def record(account:, token_type:, action:, metadata: {}, context: nil)
88
ActiveRecord::Base.transaction(requires_new: true) do
9-
# rubocop:disable Rails/SkipsModelValidations, Lint/RedundantCopDisableDirective
9+
# rubocop:disable-next Rails/SkipsModelValidations, Lint/RedundantCopDisableDirective
1010
Audit::VersionEvent.record!(**version_attrs(account:, token_type:, action:, metadata:, context:))
11-
# rubocop:enable Rails/SkipsModelValidations, Lint/RedundantCopDisableDirective
1211
security_event_attrs = security_event_attrs(account:, token_type:, action:, metadata:, context:)
1312
if security_event_attrs[:household_id].present?
1413
Audit::Event.record!(**security_event_attrs, audit_context: context.to_h)

‎app/views/profiles/two_factor_card.rb‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module Views
44
module Profiles
5-
# rubocop:disable Metrics/ClassLength
5+
# rubocop:disable-next Metrics/ClassLength
66
class TwoFactorCard < Views::Base
77
include Phlex::Rails::Helpers::ButtonTo
88
include Phlex::Rails::Helpers::Routes
@@ -243,6 +243,5 @@ def modal_form_data
243243
{ data: modal_link_data }
244244
end
245245
end
246-
# rubocop:enable Metrics/ClassLength
247246
end
248247
end

‎app/views/reports/index.rb‎

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def render_header
118118
def render_today_section = render Components::Reports::TodaySection.new(today_taken_medications: @today_taken_medications)
119119
def formatted_date_range = "#{@start_date.strftime('%B %d')} — #{@end_date.strftime('%B %d, %Y')}"
120120

121-
# rubocop:disable Metrics/AbcSize
121+
# rubocop:disable-next Metrics/AbcSize
122122
def render_summary_card
123123
total_expected = @daily_data.sum { |d| d[:expected] }
124124
total_actual = @daily_data.sum { |d| d[:actual] }
@@ -146,7 +146,6 @@ def render_summary_card
146146
end
147147
end
148148
end
149-
# rubocop:enable Metrics/AbcSize
150149

151150
def summary_stat(label, value, subtext)
152151
div(class: 'space-y-1') do
@@ -240,7 +239,7 @@ def render_smart_insight_cards
240239
end
241240
end
242241

243-
# rubocop:disable Metrics/AbcSize
242+
# rubocop:disable-next Metrics/AbcSize
244243
def render_insight_card(card)
245244
m3_card(class: 'space-y-4 border border-border/70 bg-card p-8 shadow-elevation-1 transition-transform hover:scale-[1.02] hover:shadow-elevation-2') do
246245
div(class: 'flex items-center gap-4') do
@@ -260,8 +259,6 @@ def render_insight_card(card)
260259
end
261260
end
262261

263-
# rubocop:enable Metrics/AbcSize
264-
265262
def render_smart_insight_card(insight)
266263
render_insight_card(
267264
InsightCard.new(

0 commit comments

Comments
 (0)