From 807015f5147ee6c6347717fddc3ced38e269e2ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 14:02:26 +0000 Subject: [PATCH 1/2] Bump rubocop from 1.89.0 to 1.90.0 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.89.0 to 1.90.0. - [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.89.0...v1.90.0) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.90.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2d6f5fb..c88df7d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -25,8 +25,8 @@ GEM rainbow (3.1.1) rake (13.4.2) regexp_parser (2.12.0) - rubocop (1.89.0) - json (~> 2.3) + rubocop (1.90.0) + json (>= 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) parallel (>= 1.10) From 017d2663e6d3f5c1d2bbb190d20877fcfe4f7a10 Mon Sep 17 00:00:00 2001 From: William Storey Date: Tue, 1 Sep 2026 20:08:12 +0000 Subject: [PATCH 2/2] Fix RuboCop 1.90.0 offenses The new Style/DirectiveScope cop wants disable-next instead of a disable/enable pair around a single statement. Co-Authored-By: Claude Fable 5.1 --- test/test_decoder.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_decoder.rb b/test/test_decoder.rb index 72de891..95b211e 100644 --- a/test/test_decoder.rb +++ b/test/test_decoder.rb @@ -129,7 +129,7 @@ def test_pointer validate_type_decoding('pointers', pointers) end - # rubocop:disable Style/ClassVars + # rubocop:disable-next Style/ClassVars @@strings = { "\x40".b => '', "\x41\x31".b => '1', @@ -154,7 +154,6 @@ def test_pointer "\x5e\x06\xb3".b + ("\x78".b * 2000) => 'x' * 2000, "\x5f\x00\x10\x53".b + ("\x78".b * 70_000) => 'x' * 70_000, } - # rubocop:enable Style/ClassVars def test_string values = validate_type_decoding('string', @@strings)