From 1e0291109f53c903597af553ea6a6ed78c657047 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 00:29:55 +0000 Subject: [PATCH 1/2] Bump rubocop from 1.62.1 to 1.65.1 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.62.1 to 1.65.1. - [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.62.1...v1.65.1) --- updated-dependencies: - dependency-name: rubocop 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 9023a8c7..98569209 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -84,13 +84,13 @@ GEM regexp_parser (2.9.2) rexml (3.3.6) strscan - rubocop (1.62.1) + rubocop (1.65.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) + regexp_parser (>= 2.4, < 3.0) rexml (>= 3.2.5, < 4.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (~> 1.7) From 663c946595335eb37dca6e72017220deced3c574 Mon Sep 17 00:00:00 2001 From: Ian Delahorne Date: Wed, 28 Aug 2024 17:41:31 -0700 Subject: [PATCH 2/2] Appease linter --- test/adapters/grpc/echo_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/adapters/grpc/echo_service.rb b/test/adapters/grpc/echo_service.rb index 82b87823..3fc38d64 100644 --- a/test/adapters/grpc/echo_service.rb +++ b/test/adapters/grpc/echo_service.rb @@ -62,7 +62,7 @@ class EchoStubReturnOp < EchoStub # https://github.com/grpc/grpc/blob/v1.46.3/src/ruby/lib/grpc/generic/service.rb#L157-L159 def initialize(host, creds, **kw) @default_metadata = { return_op: true } - super(host, creds, **kw) + super end # https://github.com/grpc/grpc/blob/v1.46.3/src/ruby/lib/grpc/generic/service.rb#L168-L188