Skip to content

Commit 69804c4

Browse files
Bump devise from 4.9.4 to 5.0.0 (#5488)
* Bump devise from 4.9.4 to 5.0.0 Bumps [devise](https://github.com/heartcombo/devise) from 4.9.4 to 5.0.0. - [Release notes](https://github.com/heartcombo/devise/releases) - [Changelog](https://github.com/heartcombo/devise/blob/main/CHANGELOG.md) - [Commits](heartcombo/devise@v4.9.4...v5.0.0) --- updated-dependencies: - dependency-name: devise dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Fix specs --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Daniel Orner <daniel.orner@flipp.com>
1 parent d4d8695 commit 69804c4

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Gemfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ GEM
111111
net-http-persistent (~> 4.0)
112112
nokogiri (~> 1, >= 1.10.8)
113113
base64 (0.3.0)
114-
bcrypt (3.1.20)
114+
bcrypt (3.1.21)
115115
benchmark (0.5.0)
116116
better_errors (2.10.1)
117117
erubi (>= 1.0.0)
@@ -189,10 +189,10 @@ GEM
189189
delayed_job (> 2.0.3)
190190
rack-protection (>= 1.5.5)
191191
sinatra (>= 1.4.4)
192-
devise (4.9.4)
192+
devise (5.0.0)
193193
bcrypt (~> 3.0)
194194
orm_adapter (~> 0.1)
195-
railties (>= 4.1.0)
195+
railties (>= 7.0)
196196
responders
197197
warden (~> 1.2.3)
198198
devise_invitable (2.0.11)
@@ -587,9 +587,9 @@ GEM
587587
io-console (~> 0.5)
588588
request_store (1.7.0)
589589
rack (>= 1.4)
590-
responders (3.1.1)
591-
actionpack (>= 5.2)
592-
railties (>= 5.2)
590+
responders (3.2.0)
591+
actionpack (>= 7.0)
592+
railties (>= 7.0)
593593
rexml (3.4.4)
594594
rolify (6.0.1)
595595
rouge (4.1.2)

spec/system/log_in_system_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
fill_in "user_email", with: "deactivated@example.com"
3535
fill_in "user_password", with: DEFAULT_USER_PASSWORD
3636
find('input[name="commit"]').click
37-
expect(page).to have_content("Invalid Email or password")
37+
expect(page).to have_content("Invalid email or password")
3838
end
3939
end
4040

spec/system/sign_in_system_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
fill_in "Password", with: 'invalid_password'
1515
click_button "Log in"
1616

17-
expect(page).to have_content('Invalid Email or password.')
17+
expect(page).to have_content('Invalid email or password.')
1818
end
1919
end
2020

0 commit comments

Comments
 (0)