Skip to content

Commit bc10864

Browse files
authored
v1.8.1 (#250)
1 parent ffa2d23 commit bc10864

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.8.1
4+
5+
### Fixed
6+
7+
- Fix issue with Rails 8 lazy loading routes (#247)
8+
39
## 1.8.0
410

511
### Added

Rakefile

+4-6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ load("rails/tasks/statistics.rake")
1818

1919
require "bundler/gem_tasks"
2020

21-
require "rake/testtask"
22-
23-
Rake::TestTask.new(:test) do |t|
24-
t.libs << "test"
25-
t.pattern = "test/**/*_test.rb"
26-
t.verbose = false
21+
task(:test) do
22+
puts("Use `bin/rails test`")
23+
puts("-" * 80)
24+
system("bin/rails test")
2725
end
2826

2927
task(default: :test)

lib/passwordless/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
module Passwordless
44
# :nodoc:
5-
VERSION = "1.8.0"
5+
VERSION = "1.8.1"
66
end

test/dummy/config/environments/test.rb

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
# config.action_view.annotate_rendered_view_with_filenames = true
6060

6161
host = "www.example.com"
62+
config.hosts << host
6263
config.action_mailer.default_url_options = {host: host}
6364
routes.default_url_options[:host] = host
6465
end

test/dummy/db/schema.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# It's strongly recommended that you check this file into your version control system.
1212

13-
ActiveRecord::Schema[7.2].define(version: 2023_06_21_085550) do
13+
ActiveRecord::Schema[8.0].define(version: 2023_06_21_085550) do
1414
create_table "admins", force: :cascade do |t|
1515
t.string "email"
1616
t.datetime "created_at", null: false

0 commit comments

Comments
 (0)