From 8ca33c85b569d01010cc1300ec3be0755ea5d17e Mon Sep 17 00:00:00 2001 From: Jenkins Date: Mon, 5 Jun 2023 02:29:57 -0700 Subject: [PATCH 1/3] Update Ruby dependencies --- Gemfile.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 073e6545..c43110b2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -171,7 +171,7 @@ GEM concurrent-ruby (~> 1.0) dry-core (~> 1.0, < 2) zeitwerk (~> 2.6) - dry-schema (1.13.1) + dry-schema (1.13.2) concurrent-ruby (~> 1.0) dry-configurable (~> 1.0, >= 1.0.1) dry-core (~> 1.0, < 2) @@ -218,7 +218,7 @@ GEM http-cookie (1.0.5) domain_name (~> 0.5) http-form_data (2.3.0) - i18n (1.13.0) + i18n (1.14.1) concurrent-ruby (~> 1.0) i18n-tasks (1.0.12) activesupport (>= 4.0.2) @@ -238,7 +238,7 @@ GEM activesupport (>= 3.0) nokogiri (>= 1.6) io-console (0.6.0) - irb (1.6.4) + irb (1.7.0) reline (>= 0.3.0) jbuilder (2.11.5) actionview (>= 5.0.0) @@ -354,7 +354,7 @@ GEM redis-client (0.14.1) connection_pool regexp_parser (2.8.0) - reline (0.3.4) + reline (0.3.5) io-console (~> 0.5) request_store (1.5.1) rack (>= 1.4) @@ -371,7 +371,7 @@ GEM rspec-mocks (3.12.5) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-rails (6.0.2) + rspec-rails (6.0.3) actionpack (>= 6.1) activesupport (>= 6.1) railties (>= 6.1) @@ -380,7 +380,7 @@ GEM rspec-mocks (~> 3.12) rspec-support (~> 3.12) rspec-support (3.12.0) - rubocop (1.51.0) + rubocop (1.52.0) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) @@ -390,7 +390,7 @@ GEM rubocop-ast (>= 1.28.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.28.1) + rubocop-ast (1.29.0) parser (>= 3.2.1.0) rubocop-capybara (2.18.0) rubocop (~> 1.41) From 778608974769e03180f2cf56677c597774a28716 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Mon, 5 Jun 2023 02:29:58 -0700 Subject: [PATCH 2/3] Update Yarn dependencies --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 8dac36cc..c98e1cce 100644 --- a/yarn.lock +++ b/yarn.lock @@ -43,9 +43,9 @@ bootstrap-icons@^1.1.0: integrity sha512-oSX26F37V7QV7NCE53PPEL45d7EGXmBgHG3pDpZvcRaKVzWMqIRL9wcqJUyEha1esFtM3NJzvmxFXDxjJYD0jQ== bootstrap@^5.0.1: - version "5.2.3" - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.2.3.tgz#54739f4414de121b9785c5da3c87b37ff008322b" - integrity sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ== + version "5.3.0" + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.3.0.tgz#0718a7cc29040ee8dbf1bd652b896f3436a87c29" + integrity sha512-UnBV3E3v4STVNQdms6jSGO2CvOkjUMdDAVR2V5N4uCMdaIkaQjbcEAMqRimDHIs4uqBYzDAKCQwCB+97tJgHQw== braces@~3.0.2: version "3.0.2" From 20f5de292b44df56ce6c6948fe9caa4c4530e54a Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Mon, 5 Jun 2023 06:30:52 -0500 Subject: [PATCH 3/3] Correct Lint/RedundantSafeNavigation --- app/controllers/registrations_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb index 9bd1ca04..f6a86d09 100644 --- a/app/controllers/registrations_controller.rb +++ b/app/controllers/registrations_controller.rb @@ -6,7 +6,7 @@ class RegistrationsController < Devise::RegistrationsController def update_resource(resource, params) # Require current password if user is trying to change password. - return super if params['password']&.present? + return super if params['password'].present? # Allow user to update other registration info without password resource.update_without_password(params.except('current_password'))