Skip to content

Commit 38e6c09

Browse files
Bump rubocop from 1.66.1 to 1.75.7 (#3504)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marie Lucca <[email protected]>
1 parent ff8da15 commit 38e6c09

File tree

3 files changed

+23
-17
lines changed

3 files changed

+23
-17
lines changed

.github/workflows/demo-preview-cleanup.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
preview_env_ids_to_delete.each_with_index do |pr_id, index|
2323
puts "Deleting preview environment #{index + 1}/#{preview_env_ids_to_delete.size}"
24-
system "az container delete -n 'primer-view-components-preview-#{pr_id}' -g primer -y &> /dev/null"
24+
system "az container delete -n 'primer-view-components-preview-#{pr_id}' -g primer -y &> File::NULL"
2525
end
2626

2727
puts "Deleted #{preview_env_ids_to_delete.size} preview environments"

Gemfile.lock

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ GEM
4545
public_suffix (>= 2.0.2, < 7.0)
4646
allocation_stats (0.1.5)
4747
ansi (1.5.0)
48-
ast (2.4.2)
48+
ast (2.4.3)
4949
base64 (0.2.0)
5050
benchmark (0.4.0)
5151
benchmark-ips (2.14.0)
@@ -114,10 +114,11 @@ GEM
114114
pp (>= 0.6.0)
115115
rdoc (>= 4.0.0)
116116
reline (>= 0.4.2)
117-
json (2.7.2)
117+
json (2.12.2)
118118
kramdown (2.5.1)
119119
rexml (>= 3.3.9)
120-
language_server-protocol (3.17.0.3)
120+
language_server-protocol (3.17.0.5)
121+
lint_roller (1.1.0)
121122
listen (3.9.0)
122123
rb-fsevent (~> 0.10, >= 0.10.3)
123124
rb-inotify (~> 0.9, >= 0.9.10)
@@ -153,13 +154,14 @@ GEM
153154
nokogiri (1.18.8-x86_64-linux-gnu)
154155
racc (~> 1.4)
155156
octicons (19.15.1)
156-
parallel (1.26.3)
157-
parser (3.3.5.0)
157+
parallel (1.27.0)
158+
parser (3.3.8.0)
158159
ast (~> 2.4.1)
159160
racc
160161
pp (0.6.2)
161162
prettyprint
162163
prettyprint (0.2.0)
164+
prism (1.4.0)
163165
psych (5.2.6)
164166
date
165167
stringio
@@ -203,23 +205,25 @@ GEM
203205
rdoc (6.13.1)
204206
psych (>= 4.0.0)
205207
redcarpet (3.6.1)
206-
regexp_parser (2.9.2)
208+
regexp_parser (2.10.0)
207209
reline (0.6.1)
208210
io-console (~> 0.5)
209211
rexml (3.4.1)
210212
rouge (4.5.2)
211-
rubocop (1.66.1)
213+
rubocop (1.75.7)
212214
json (~> 2.3)
213-
language_server-protocol (>= 3.17.0)
215+
language_server-protocol (~> 3.17.0.2)
216+
lint_roller (~> 1.1.0)
214217
parallel (~> 1.10)
215218
parser (>= 3.3.0.2)
216219
rainbow (>= 2.2.2, < 4.0)
217-
regexp_parser (>= 2.4, < 3.0)
218-
rubocop-ast (>= 1.32.2, < 2.0)
220+
regexp_parser (>= 2.9.3, < 3.0)
221+
rubocop-ast (>= 1.44.0, < 2.0)
219222
ruby-progressbar (~> 1.7)
220-
unicode-display_width (>= 2.4.0, < 3.0)
221-
rubocop-ast (1.32.3)
222-
parser (>= 3.3.1.0)
223+
unicode-display_width (>= 2.4.0, < 4.0)
224+
rubocop-ast (1.44.1)
225+
parser (>= 3.3.7.2)
226+
prism (~> 1.4)
223227
rubocop-github (0.20.0)
224228
rubocop (>= 1.37)
225229
rubocop-performance (>= 1.15)
@@ -271,7 +275,9 @@ GEM
271275
timecop (0.9.10)
272276
tzinfo (2.0.6)
273277
concurrent-ruby (~> 1.0)
274-
unicode-display_width (2.6.0)
278+
unicode-display_width (3.1.4)
279+
unicode-emoji (~> 4.0, >= 4.0.4)
280+
unicode-emoji (4.0.4)
275281
uri (1.0.3)
276282
useragent (0.16.11)
277283
view_component (4.0.0.alpha5)

test/test_helpers/ips_test_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def assert_more_ips(faster, slower, msg = nil)
2222
def suppress_output
2323
original_stderr = $stderr.clone
2424
original_stdout = $stdout.clone
25-
$stderr.reopen(File.new("/dev/null", "w"))
26-
$stdout.reopen(File.new("/dev/null", "w"))
25+
$stderr.reopen(File.new("File::NULL", "w"))
26+
$stdout.reopen(File.new("File::NULL", "w"))
2727
yield
2828
ensure
2929
$stdout.reopen(original_stdout)

0 commit comments

Comments
 (0)