From cbe99d6712681c264ceb92eabba9d05292352a1d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:03:34 +0000 Subject: [PATCH] Bump the ruby-dependencies group with 2 updates (#1669) * Bump the ruby-dependencies group with 2 updates Bumps the ruby-dependencies group with 2 updates: [rspec-core](https://github.com/rspec/rspec-core) and [rubocop](https://github.com/rubocop/rubocop). Updates `rspec-core` from 3.13.1 to 3.13.2 - [Release notes](https://github.com/rspec/rspec-core/releases) - [Changelog](https://github.com/rspec/rspec-core/blob/main/Changelog.md) - [Commits](https://github.com/rspec/rspec-core/compare/v3.13.1...v3.13.2) Updates `rubocop` from 1.66.1 to 1.67.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.66.1...v1.67.0) --- updated-dependencies: - dependency-name: rspec-core dependency-type: direct:development update-type: version-update:semver-patch dependency-group: ruby-dependencies - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor dependency-group: ruby-dependencies ... Signed-off-by: dependabot[bot] * Bump the minimum Ruby version to 3.2 Since 3.1 is due to EOL soon. * Add explicit dependency on `logger` To work around: https://github.com/excon/excon/issues/860 And refresh the lockfile. --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ed Morley <501702+edmorley@users.noreply.github.com> --- Gemfile | 4 +++- Gemfile.lock | 10 ++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index 6bd480a3..ddaf2f60 100644 --- a/Gemfile +++ b/Gemfile @@ -2,10 +2,12 @@ source 'https://rubygems.org' -ruby '>= 3.1', '< 3.4' +ruby '>= 3.2', '< 3.4' group :test, :development do gem 'heroku_hatchet' + # Work around https://github.com/excon/excon/issues/860 + gem 'logger' gem 'parallel_split_test' gem 'rspec-core' gem 'rspec-expectations' diff --git a/Gemfile.lock b/Gemfile.lock index 126b0f21..0d99cf2d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -5,7 +5,7 @@ GEM base64 (0.2.0) diff-lcs (1.5.1) erubis (2.7.0) - excon (0.111.0) + excon (0.112.0) heroics (0.1.3) base64 erubis (~> 2.0) @@ -21,6 +21,7 @@ GEM threaded (~> 0) json (2.7.2) language_server-protocol (3.17.0.3) + logger (1.6.1) moneta (1.0.0) multi_json (1.15.0) parallel (1.26.3) @@ -39,7 +40,7 @@ GEM rate_throttle_client (0.1.2) regexp_parser (2.9.2) rrrretry (1.0.0) - rspec-core (3.13.1) + rspec-core (3.13.2) rspec-support (~> 3.13.0) rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) @@ -47,7 +48,7 @@ GEM rspec-retry (0.6.2) rspec-core (> 3.3) rspec-support (3.13.1) - rubocop (1.66.1) + rubocop (1.67.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -65,13 +66,14 @@ GEM thor (1.3.2) threaded (0.0.4) unicode-display_width (2.6.0) - webrick (1.8.1) + webrick (1.8.2) PLATFORMS ruby DEPENDENCIES heroku_hatchet + logger parallel_split_test rspec-core rspec-expectations