Skip to content

Commit 58fdca2

Browse files
Bump all dev dependencies
This commit bumps all development dependencies, and removes pessimistic version constraints where possible now that we've got a Gemfile.lock checked in. We had to keep the constraint for Rails for now, since Rails 7 is not compatible with Ruby 2.6. We can bump Rails if we drop Ruby 2.6. None of this affects the released gem, so as long as tests still pass we are in good shape.
1 parent 446cbe3 commit 58fdca2

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

Gemfile.lock

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,18 @@ PATH
99
GEM
1010
remote: https://rubygems.org/
1111
specs:
12-
actionview (5.2.6)
13-
activesupport (= 5.2.6)
12+
actionview (6.1.4.4)
13+
activesupport (= 6.1.4.4)
1414
builder (~> 3.1)
1515
erubi (~> 1.4)
1616
rails-dom-testing (~> 2.0)
17-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
18-
activesupport (5.2.6)
17+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
18+
activesupport (6.1.4.4)
1919
concurrent-ruby (~> 1.0, >= 1.0.2)
20-
i18n (>= 0.7, < 2)
21-
minitest (~> 5.1)
22-
tzinfo (~> 1.1)
20+
i18n (>= 1.6, < 2)
21+
minitest (>= 5.1)
22+
tzinfo (~> 2.0)
23+
zeitwerk (~> 2.3)
2324
ast (2.4.2)
2425
builder (3.2.4)
2526
concurrent-ruby (1.1.9)
@@ -44,7 +45,7 @@ GEM
4445
rails-html-sanitizer (1.4.2)
4546
loofah (~> 2.3)
4647
rainbow (3.1.1)
47-
rake (12.3.3)
48+
rake (13.0.6)
4849
regexp_parser (2.2.0)
4950
rexml (3.2.5)
5051
rubocop (1.24.1)
@@ -66,18 +67,18 @@ GEM
6667
rack (>= 1.1)
6768
rubocop (>= 1.7.0, < 2.0)
6869
ruby-progressbar (1.11.0)
69-
thread_safe (0.3.6)
70-
tzinfo (1.2.9)
71-
thread_safe (~> 0.1)
70+
tzinfo (2.0.4)
71+
concurrent-ruby (~> 1.0)
7272
unicode-display_width (2.1.0)
73+
zeitwerk (2.5.3)
7374

7475
PLATFORMS
7576
x86_64-darwin-20
7677

7778
DEPENDENCIES
78-
actionview (~> 5.0)
79-
minitest (~> 5.14)
80-
rake (~> 12.0)
79+
actionview (~> 6.1)
80+
minitest
81+
rake
8182
rubocop-github!
8283

8384
BUNDLED WITH

rubocop-github.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Gem::Specification.new do |s|
1414
s.add_dependency "rubocop-performance"
1515
s.add_dependency "rubocop-rails"
1616

17-
s.add_development_dependency "actionview", "~> 5.0"
18-
s.add_development_dependency "minitest", "~> 5.14"
19-
s.add_development_dependency "rake", "~> 12.0"
17+
s.add_development_dependency "actionview", "~> 6.1"
18+
s.add_development_dependency "minitest"
19+
s.add_development_dependency "rake"
2020

2121
s.required_ruby_version = ">= 2.5.0"
2222

0 commit comments

Comments
 (0)