Skip to content

Commit a05758c

Browse files
committed
0.5.5
1 parent eeab7f0 commit a05758c

File tree

4 files changed

+28
-23
lines changed

4 files changed

+28
-23
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## 0.5.5
4+
5+
* Add Puma 6 support
6+
[#136](https://github.com/testdouble/cypress-rails/pull/136)
7+
38
## 0.5.4
49

510
* Fix Rails 5 support

Gemfile.lock

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
PATH
22
remote: .
33
specs:
4-
cypress-rails (0.5.4)
4+
cypress-rails (0.5.5)
55
puma (>= 3.8.0)
66
railties (>= 5.2.0)
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
actionpack (7.0.3)
12-
actionview (= 7.0.3)
13-
activesupport (= 7.0.3)
11+
actionpack (7.0.4)
12+
actionview (= 7.0.4)
13+
activesupport (= 7.0.4)
1414
rack (~> 2.0, >= 2.2.0)
1515
rack-test (>= 0.6.3)
1616
rails-dom-testing (~> 2.0)
1717
rails-html-sanitizer (~> 1.0, >= 1.2.0)
18-
actionview (7.0.3)
19-
activesupport (= 7.0.3)
18+
actionview (7.0.4)
19+
activesupport (= 7.0.4)
2020
builder (~> 3.1)
2121
erubi (~> 1.4)
2222
rails-dom-testing (~> 2.0)
2323
rails-html-sanitizer (~> 1.1, >= 1.2.0)
24-
activesupport (7.0.3)
24+
activesupport (7.0.4)
2525
concurrent-ruby (~> 1.0, >= 1.0.2)
2626
i18n (>= 1.6, < 2)
2727
minitest (>= 5.1)
@@ -30,36 +30,36 @@ GEM
3030
builder (3.2.4)
3131
concurrent-ruby (1.1.10)
3232
crass (1.0.6)
33-
erubi (1.10.0)
34-
i18n (1.10.0)
33+
erubi (1.11.0)
34+
i18n (1.12.0)
3535
concurrent-ruby (~> 1.0)
36-
loofah (2.18.0)
36+
loofah (2.19.0)
3737
crass (~> 1.0.2)
3838
nokogiri (>= 1.5.9)
3939
method_source (1.0.0)
4040
mini_portile2 (2.8.0)
4141
minitest (5.15.0)
4242
nio4r (2.5.8)
43-
nokogiri (1.13.6)
43+
nokogiri (1.13.8)
4444
mini_portile2 (~> 2.8.0)
4545
racc (~> 1.4)
4646
parallel (1.22.1)
4747
parser (3.1.2.0)
4848
ast (~> 2.4.1)
49-
puma (5.6.4)
49+
puma (6.0.0)
5050
nio4r (~> 2.0)
5151
racc (1.6.0)
52-
rack (2.2.3)
53-
rack-test (1.1.0)
54-
rack (>= 1.0, < 3)
52+
rack (2.2.4)
53+
rack-test (2.0.2)
54+
rack (>= 1.3)
5555
rails-dom-testing (2.0.3)
5656
activesupport (>= 4.2.0)
5757
nokogiri (>= 1.6)
58-
rails-html-sanitizer (1.4.2)
58+
rails-html-sanitizer (1.4.3)
5959
loofah (~> 2.3)
60-
railties (7.0.3)
61-
actionpack (= 7.0.3)
62-
activesupport (= 7.0.3)
60+
railties (7.0.4)
61+
actionpack (= 7.0.4)
62+
activesupport (= 7.0.4)
6363
method_source
6464
rake (>= 12.2)
6565
thor (~> 1.0)
@@ -87,10 +87,10 @@ GEM
8787
rubocop (= 1.29.1)
8888
rubocop-performance (= 1.13.3)
8989
thor (1.2.1)
90-
tzinfo (2.0.4)
90+
tzinfo (2.0.5)
9191
concurrent-ruby (~> 1.0)
9292
unicode-display_width (2.1.0)
93-
zeitwerk (2.5.4)
93+
zeitwerk (2.6.1)
9494

9595
PLATFORMS
9696
ruby

example/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
cypress-rails (0.5.4)
4+
cypress-rails (0.5.5)
55
puma (>= 3.8.0)
66
railties (>= 5.2.0)
77

lib/cypress-rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module CypressRails
2-
VERSION = "0.5.4"
2+
VERSION = "0.5.5"
33
end

0 commit comments

Comments
 (0)