From dc82fb19dd3aba8710e6833f6b623d751d49929d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2026 15:41:17 +0000 Subject: [PATCH 1/2] Bump the ruby-dependencies group across 1 directory with 2 updates Bumps the ruby-dependencies group with 2 updates in the / directory: [rubocop](https://github.com/rubocop/rubocop) and [rubocop-rspec](https://github.com/rubocop/rubocop-rspec). Updates `rubocop` from 1.87.0 to 1.88.2 - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.87.0...v1.88.2) Updates `rubocop-rspec` from 3.9.0 to 3.10.2 - [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.9.0...v3.10.2) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.88.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: ruby-dependencies - dependency-name: rubocop-rspec dependency-version: 3.10.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: ruby-dependencies ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 4b2f9f8b..9bb28d48 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -21,8 +21,8 @@ GEM thor (~> 1) threaded (~> 0) java-properties (0.3.0) - json (2.19.7) - language_server-protocol (3.17.0.5) + json (2.20.0) + language_server-protocol (3.17.0.6) lint_roller (1.1.0) logger (1.7.0) moneta (1.0.0) @@ -52,7 +52,7 @@ GEM rspec-retry (0.6.2) rspec-core (> 3.3) rspec-support (3.13.6) - rubocop (1.87.0) + rubocop (1.88.2) json (~> 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) @@ -63,12 +63,13 @@ GEM rubocop-ast (>= 1.49.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.49.1) + rubocop-ast (1.50.0) parser (>= 3.3.7.2) prism (~> 1.7) - rubocop-rspec (3.9.0) + rubocop-rspec (3.10.2) lint_roller (~> 1.1) - rubocop (~> 1.81) + regexp_parser (>= 2.0) + rubocop (~> 1.86, >= 1.86.2) ruby-progressbar (1.13.0) thor (1.4.0) threaded (0.0.4) From ee44f22f1c67b2d9e01b2c00737416d021902c9c Mon Sep 17 00:00:00 2001 From: Manuel Fuchs Date: Mon, 13 Jul 2026 18:44:45 +0200 Subject: [PATCH 2/2] Fix RuboCop RSpec/MatchWithSimpleRegex offenses --- test/spec/settings_xml_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/spec/settings_xml_spec.rb b/test/spec/settings_xml_spec.rb index 86eca0b9..2dfd5f56 100644 --- a/test/spec/settings_xml_spec.rb +++ b/test/spec/settings_xml_spec.rb @@ -246,8 +246,8 @@ end app.deploy do - expect(clean_output(app.output)).not_to match(/remote: ! Warning: Using existing settings\.xml file\./) - expect(clean_output(app.output)).not_to match(/would normally be used as the settings\.xml configuration/) + expect(clean_output(app.output)).not_to include('remote: ! Warning: Using existing settings.xml file.') + expect(clean_output(app.output)).not_to include('would normally be used as the settings.xml configuration') expect(clean_output(app.output)).to( include("[BUILDPACK INTEGRATION TEST - SETTINGS TEST VALUE] #{existing_test_value}") )