Skip to content

Commit bb1bf9b

Browse files
committed
0.6.1
1 parent 56217ee commit bb1bf9b

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
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.6.1
4+
5+
* Fix a deprecation warning in Rails
6+
[#157](https://github.com/testdouble/cypress-rails/pull/157)
7+
38
## 0.6.0
49

510
* Update initializer task to generate valid Cypress v10+ configurations

Gemfile.lock

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

88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
actionpack (7.0.5)
12-
actionview (= 7.0.5)
13-
activesupport (= 7.0.5)
11+
actionpack (7.0.6)
12+
actionview (= 7.0.6)
13+
activesupport (= 7.0.6)
1414
rack (~> 2.0, >= 2.2.4)
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.5)
19-
activesupport (= 7.0.5)
18+
actionview (7.0.6)
19+
activesupport (= 7.0.6)
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.5)
24+
activesupport (7.0.6)
2525
concurrent-ruby (~> 1.0, >= 1.0.2)
2626
i18n (>= 1.6, < 2)
2727
minitest (>= 5.1)
@@ -40,27 +40,28 @@ GEM
4040
mini_portile2 (2.8.2)
4141
minitest (5.15.0)
4242
nio4r (2.5.9)
43-
nokogiri (1.15.2)
43+
nokogiri (1.15.3)
4444
mini_portile2 (~> 2.8.2)
4545
racc (~> 1.4)
4646
parallel (1.22.1)
4747
parser (3.1.2.0)
4848
ast (~> 2.4.1)
4949
puma (6.3.0)
5050
nio4r (~> 2.0)
51-
racc (1.6.2)
51+
racc (1.7.1)
5252
rack (2.2.7)
5353
rack-test (2.1.0)
5454
rack (>= 1.3)
55-
rails-dom-testing (2.0.3)
56-
activesupport (>= 4.2.0)
55+
rails-dom-testing (2.1.1)
56+
activesupport (>= 5.0.0)
57+
minitest
5758
nokogiri (>= 1.6)
5859
rails-html-sanitizer (1.6.0)
5960
loofah (~> 2.21)
6061
nokogiri (~> 1.14)
61-
railties (7.0.5)
62-
actionpack (= 7.0.5)
63-
activesupport (= 7.0.5)
62+
railties (7.0.6)
63+
actionpack (= 7.0.6)
64+
activesupport (= 7.0.6)
6465
method_source
6566
rake (>= 12.2)
6667
thor (~> 1.0)

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.6.0)
4+
cypress-rails (0.6.1)
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.6.0"
2+
VERSION = "0.6.1"
33
end

0 commit comments

Comments
 (0)