Skip to content

Commit fca075c

Browse files
authored
Merge pull request #1371 from Crown-Commercial-Service/dependabot/bundler/rubocop-77ec5ec5cb
build(deps-dev): bump rubocop from 1.84.2 to 1.85.0 in the rubocop group
2 parents 7e10541 + 782b0b6 commit fca075c

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ group :development, :test do
6666
gem 'dotenv-rails', '~> 3.2.0'
6767
gem 'i18n-tasks', '~> 1.1.2'
6868
gem 'rspec-rails', '~> 8.0.3'
69-
gem 'rubocop', '~> 1.84.2'
69+
gem 'rubocop', '~> 1.85.0'
7070
gem 'rubocop-performance', '~> 1.26.1'
7171
gem 'rubocop-rails', '~> 2.34.3'
7272
gem 'rubocop-rspec', '~> 3.9.0'

Gemfile.lock

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ GEM
8282
securerandom (>= 0.3)
8383
tzinfo (~> 2.0, >= 2.0.5)
8484
uri (>= 0.13.1)
85+
addressable (2.8.9)
86+
public_suffix (>= 2.0.2, < 8.0)
8587
ast (2.4.3)
8688
aws-eventstream (1.4.0)
8789
aws-partitions (1.1220.0)
@@ -183,6 +185,9 @@ GEM
183185
jsbundling-rails (1.3.1)
184186
railties (>= 6.0.0)
185187
json (2.18.1)
188+
json-schema (6.1.0)
189+
addressable (~> 2.8)
190+
bigdecimal (>= 3.1, < 5)
186191
jwt (3.1.2)
187192
base64
188193
language_server-protocol (3.17.0.5)
@@ -202,6 +207,8 @@ GEM
202207
net-pop
203208
net-smtp
204209
marcel (1.1.0)
210+
mcp (0.7.1)
211+
json-schema (>= 4.1)
205212
mime-types (3.3.1)
206213
mime-types-data (~> 3.2015)
207214
mime-types-data (3.2020.0512)
@@ -234,7 +241,7 @@ GEM
234241
nokogiri (1.19.1-x86_64-linux-musl)
235242
racc (~> 1.4)
236243
parallel (1.27.0)
237-
parser (3.3.10.1)
244+
parser (3.3.10.2)
238245
ast (~> 2.4.1)
239246
racc
240247
pg (1.6.3)
@@ -253,6 +260,7 @@ GEM
253260
psych (5.3.1)
254261
date
255262
stringio
263+
public_suffix (7.0.2)
256264
puma (7.2.0)
257265
nio4r (~> 2.0)
258266
raabro (1.4.0)
@@ -351,10 +359,11 @@ GEM
351359
rspec-mocks (~> 3.13)
352360
rspec-support (~> 3.13)
353361
rspec-support (3.13.7)
354-
rubocop (1.84.2)
362+
rubocop (1.85.0)
355363
json (~> 2.3)
356364
language_server-protocol (~> 3.17.0.2)
357365
lint_roller (~> 1.1.0)
366+
mcp (~> 0.6)
358367
parallel (~> 1.10)
359368
parser (>= 3.3.0.2)
360369
rainbow (>= 2.2.2, < 4.0)
@@ -464,7 +473,7 @@ DEPENDENCIES
464473
rollbar (~> 3.7.0)
465474
roo (~> 3.0.0)
466475
rspec-rails (~> 8.0.3)
467-
rubocop (~> 1.84.2)
476+
rubocop (~> 1.85.0)
468477
rubocop-performance (~> 1.26.1)
469478
rubocop-rails (~> 2.34.3)
470479
rubocop-rspec (~> 3.9.0)

spec/controllers/api/v1/openid_connect_controller_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@
122122
let(:access_token) { 'AccessToken' }
123123

124124
before do
125-
get_user_struct = Struct.new(:user_attributes, keyword_init: true)
126-
user_attribute_struct = Struct.new(:name, :value, keyword_init: true)
125+
get_user_struct = Struct.new(:user_attributes)
126+
user_attribute_struct = Struct.new(:name, :value)
127127

128128
allow(Aws::CognitoIdentityProvider::Client).to receive(:new).and_return(cognito_identity_provider_client)
129129
allow(cognito_identity_provider_client).to receive(:get_user).with({ access_token: }).and_return(

0 commit comments

Comments
 (0)