From ae081f1ca13b7525a572c4e5b4def7b4984de885 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 31 Mar 2026 00:38:57 +0000 Subject: [PATCH 1/2] bundle update --- Gemfile.lock | 16 ++++++++-------- steep/Gemfile.lock | 14 +++++++------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 13b441168..5b5ddc4d8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,6 +1,6 @@ GIT remote: https://github.com/soutaro/steep.git - revision: 480d2288d3c560a51af5013780916d91cab34fe9 + revision: d9f52a5034986c2a00603ecdcf5a20fe6c899ed4 specs: steep (2.0.0.dev) activesupport (>= 5.1) @@ -13,7 +13,7 @@ GIT logger (>= 1.3.0) parser (>= 3.2) rainbow (>= 2.2.2, < 4.0) - rbs (~> 4.0.0.dev) + rbs (~> 4.0) securerandom (>= 0.1) strscan (>= 1.0.0) terminal-table (>= 2, < 5) @@ -54,7 +54,7 @@ GEM base64 (0.3.0) benchmark (0.5.0) benchmark-ips (2.14.0) - bigdecimal (4.0.1) + bigdecimal (4.1.0) concurrent-ruby (1.3.6) connection_pool (3.0.2) csv (3.3.5) @@ -64,7 +64,7 @@ GEM drb (2.2.3) erb (6.0.2) extconf_compile_commands_json (0.0.7) - ffi (1.17.3) + ffi (1.17.4) fileutils (1.8.0) goodcheck (3.1.0) marcel (>= 1.0, < 2.0) @@ -79,7 +79,7 @@ GEM prism (>= 1.3.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.19.2) + json (2.19.3) json-schema (6.2.0) addressable (~> 2.8) bigdecimal (>= 3.1, < 5) @@ -104,7 +104,7 @@ GEM nkf (0.2.0) ostruct (0.6.3) parallel (1.27.0) - parser (3.3.10.2) + parser (3.3.11.1) ast (~> 2.4.1) racc power_assert (3.0.1) @@ -161,9 +161,9 @@ GEM rubocop-ast (1.49.1) parser (>= 3.3.7.2) prism (~> 1.7) - rubocop-on-rbs (1.9.1) + rubocop-on-rbs (2.0.0) lint_roller (~> 1.1) - rbs (~> 3.5) + rbs (~> 4.0) rubocop (>= 1.72.1, < 2.0) zlib rubocop-rubycw (0.2.2) diff --git a/steep/Gemfile.lock b/steep/Gemfile.lock index a48694c1d..13a6adc07 100644 --- a/steep/Gemfile.lock +++ b/steep/Gemfile.lock @@ -1,7 +1,7 @@ GEM remote: https://rubygems.org/ specs: - activesupport (8.1.2.1) + activesupport (8.1.3) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.3.1) @@ -16,16 +16,16 @@ GEM uri (>= 0.13.1) ast (2.4.3) base64 (0.3.0) - bigdecimal (4.0.1) + bigdecimal (4.1.0) concurrent-ruby (1.3.6) connection_pool (3.0.2) csv (3.3.5) drb (2.2.3) - ffi (1.17.3) + ffi (1.17.4) fileutils (1.8.0) i18n (1.14.8) concurrent-ruby (~> 1.0) - json (2.19.2) + json (2.19.3) language_server-protocol (3.17.0.5) listen (3.10.0) logger @@ -36,7 +36,7 @@ GEM drb (~> 2.0) prism (~> 1.5) mutex_m (0.3.0) - parser (3.3.10.2) + parser (3.3.11.1) ast (~> 2.4.1) racc power_assert (3.0.1) @@ -46,10 +46,10 @@ GEM rb-fsevent (0.11.2) rb-inotify (0.11.1) ffi (~> 1.0) - rbs (3.10.3) + rbs (3.10.4) logger tsort - ruby-lsp (0.26.8) + ruby-lsp (0.26.9) language_server-protocol (~> 3.17.0) prism (>= 1.2, < 2.0) rbs (>= 3, < 5) From 36a7e8e38df9efd33db83c3f30f0308bdeb84bd9 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Wed, 1 Apr 2026 12:07:11 +0900 Subject: [PATCH 2/2] Skip bigdecimal validation --- Rakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rakefile b/Rakefile index ebc2abc6e..3388d609a 100644 --- a/Rakefile +++ b/Rakefile @@ -199,6 +199,9 @@ task :validate => :compile do libs << "rbs" end + libs.delete("bigdecimal-math") or raise + libs.delete("bigdecimal") or raise + libs.each do |lib| args = ["-r", lib]