diff --git a/CHANGELOG.md b/CHANGELOG.md index dbb21cfd..52535e39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## Unreleased + +* Updates rubocop to [1.63.5](https://github.com/rubocop/rubocop/releases/tag/v1.63.5) +* Updates standard-performance to [1.4.0](https://github.com/standardrb/standard-performance/releases/tag/v1.4.0) + ## 1.35.1 * Corrects rubocop constraint to the patch version, not minor version. diff --git a/Gemfile.lock b/Gemfile.lock index 935e0348..5d0e9671 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -4,9 +4,9 @@ PATH standard (1.35.1) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.62.0) + rubocop (~> 1.63.0) standard-custom (~> 1.0.0) - standard-performance (~> 1.3) + standard-performance (~> 1.4) GEM remote: https://rubygems.org/ @@ -30,7 +30,7 @@ GEM rake (13.0.6) regexp_parser (2.8.2) rexml (3.2.6) - rubocop (1.62.1) + rubocop (1.63.5) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -43,9 +43,9 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.31.2) parser (>= 3.3.0.4) - rubocop-performance (1.20.1) + rubocop-performance (1.21.0) rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) simplecov (0.22.0) docile (~> 1.1) @@ -56,9 +56,9 @@ GEM standard-custom (1.0.2) lint_roller (~> 1.0) rubocop (~> 1.50) - standard-performance (1.3.0) + standard-performance (1.4.0) lint_roller (~> 1.1) - rubocop-performance (~> 1.20.1) + rubocop-performance (~> 1.21.0) unicode-display_width (2.5.0) PLATFORMS diff --git a/config/base.yml b/config/base.yml index ae33aca7..9ac5b2e1 100644 --- a/config/base.yml +++ b/config/base.yml @@ -1303,6 +1303,9 @@ Style/MagicCommentFormat: Style/MapCompactWithConditionalBlock: Enabled: true +Style/MapIntoArray: + Enabled: false + Style/MapToHash: Enabled: false diff --git a/standard.gemspec b/standard.gemspec index 8930a766..d19a0017 100644 --- a/standard.gemspec +++ b/standard.gemspec @@ -23,11 +23,11 @@ Gem::Specification.new do |spec| spec.require_paths = ["lib"] spec.metadata["rubygems_mfa_required"] = "true" - spec.add_dependency "rubocop", "~> 1.62.0" + spec.add_dependency "rubocop", "~> 1.63.0" spec.add_dependency "lint_roller", "~> 1.0" spec.add_dependency "standard-custom", "~> 1.0.0" - spec.add_dependency "standard-performance", "~> 1.3" + spec.add_dependency "standard-performance", "~> 1.4" # not semver: first three are lsp protocol version, last is patch spec.add_dependency "language_server-protocol", "~> 3.17.0.2"