From 55f65d0065c89b1864315a71046d85fbd9af7e30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 22:59:33 +0000 Subject: [PATCH 1/2] Bump rubocop-rspec from 3.8.0 to 3.9.0 Bumps [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) from 3.8.0 to 3.9.0. - [Release notes](https://github.com/rubocop/rubocop-rspec/releases) - [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-rspec/compare/v3.8.0...v3.9.0) --- updated-dependencies: - dependency-name: rubocop-rspec dependency-version: 3.9.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index d1ed0832..69c75e96 100644 --- a/Gemfile +++ b/Gemfile @@ -67,7 +67,7 @@ group :development do gem 'rubocop-performance', '~> 1.26', require: false gem 'rubocop-rails', '~> 2.34', require: false gem 'rubocop-rake', '~> 0.7.1', require: false - gem 'rubocop-rspec', '~> 3.8', require: false + gem 'rubocop-rspec', '~> 3.9', require: false gem 'rubocop-rspec_rails', '~> 2.32.0', require: false end diff --git a/Gemfile.lock b/Gemfile.lock index a67dc83d..d6bfc4fa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -578,7 +578,7 @@ GEM rubocop-rake (0.7.1) lint_roller (~> 1.1) rubocop (>= 1.72.1) - rubocop-rspec (3.8.0) + rubocop-rspec (3.9.0) lint_roller (~> 1.1) rubocop (~> 1.81) rubocop-rspec_rails (2.32.0) @@ -715,7 +715,7 @@ DEPENDENCIES rubocop-performance (~> 1.26) rubocop-rails (~> 2.34) rubocop-rake (~> 0.7.1) - rubocop-rspec (~> 3.8) + rubocop-rspec (~> 3.9) rubocop-rspec_rails (~> 2.32.0) selenium-webdriver (~> 4.39.0) sendgrid (~> 1.2.4) From 0250191ec91111a644ef75103247a2034666d2af Mon Sep 17 00:00:00 2001 From: Santiago Bartesaghi Date: Tue, 13 Jan 2026 10:20:49 -0300 Subject: [PATCH 2/2] Fix CI --- spec/support/retry/pull_request_comment.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/support/retry/pull_request_comment.rb b/spec/support/retry/pull_request_comment.rb index 0332ec5b..6a552e00 100644 --- a/spec/support/retry/pull_request_comment.rb +++ b/spec/support/retry/pull_request_comment.rb @@ -17,7 +17,7 @@ def comment(message) options = { event: 'COMMENT', body: message } client.create_pull_request_review(repo, pull_request_number, options) rescue StandardError => error - puts error.message + Rails.logger.error(error.message) end end end