rodauth 2.20.0 → 2.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG +38 -442
- data/README.rdoc +15 -3
- data/doc/base.rdoc +1 -0
- data/doc/guides/internals.rdoc +11 -0
- data/doc/guides/paths.rdoc +3 -0
- data/doc/login_password_requirements_base.rdoc +1 -1
- data/doc/release_notes/2.21.0.txt +28 -0
- data/doc/release_notes/2.22.0.txt +43 -0
- data/doc/release_notes/2.23.0.txt +15 -0
- data/doc/reset_password.rdoc +16 -16
- data/doc/reset_password_notify.rdoc +17 -0
- data/lib/rodauth/features/active_sessions.rb +4 -2
- data/lib/rodauth/features/base.rb +25 -7
- data/lib/rodauth/features/change_password_notify.rb +2 -22
- data/lib/rodauth/features/email_auth.rb +1 -16
- data/lib/rodauth/features/http_basic_auth.rb +1 -1
- data/lib/rodauth/features/internal_request.rb +1 -1
- data/lib/rodauth/features/json.rb +2 -4
- data/lib/rodauth/features/jwt_cors.rb +1 -1
- data/lib/rodauth/features/lockout.rb +2 -18
- data/lib/rodauth/features/otp.rb +1 -1
- data/lib/rodauth/features/remember.rb +1 -1
- data/lib/rodauth/features/reset_password.rb +1 -16
- data/lib/rodauth/features/reset_password_notify.rb +16 -0
- data/lib/rodauth/features/sms_codes.rb +1 -1
- data/lib/rodauth/features/verify_account.rb +3 -20
- data/lib/rodauth/features/verify_account_grace_period.rb +13 -1
- data/lib/rodauth/version.rb +1 -1
- data/lib/rodauth.rb +27 -0
- data/templates/reset-password-notify-email.str +2 -0
- data/templates/webauthn-remove.str +1 -0
- metadata +13 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rodauth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Evans
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sequel
|
@@ -286,6 +286,7 @@ extra_rdoc_files:
|
|
286
286
|
- doc/recovery_codes.rdoc
|
287
287
|
- doc/remember.rdoc
|
288
288
|
- doc/reset_password.rdoc
|
289
|
+
- doc/reset_password_notify.rdoc
|
289
290
|
- doc/session_expiration.rdoc
|
290
291
|
- doc/single_session.rdoc
|
291
292
|
- doc/sms_codes.rdoc
|
@@ -335,6 +336,9 @@ extra_rdoc_files:
|
|
335
336
|
- doc/release_notes/2.19.0.txt
|
336
337
|
- doc/release_notes/2.2.0.txt
|
337
338
|
- doc/release_notes/2.20.0.txt
|
339
|
+
- doc/release_notes/2.21.0.txt
|
340
|
+
- doc/release_notes/2.22.0.txt
|
341
|
+
- doc/release_notes/2.23.0.txt
|
338
342
|
- doc/release_notes/2.3.0.txt
|
339
343
|
- doc/release_notes/2.4.0.txt
|
340
344
|
- doc/release_notes/2.5.0.txt
|
@@ -442,6 +446,9 @@ files:
|
|
442
446
|
- doc/release_notes/2.19.0.txt
|
443
447
|
- doc/release_notes/2.2.0.txt
|
444
448
|
- doc/release_notes/2.20.0.txt
|
449
|
+
- doc/release_notes/2.21.0.txt
|
450
|
+
- doc/release_notes/2.22.0.txt
|
451
|
+
- doc/release_notes/2.23.0.txt
|
445
452
|
- doc/release_notes/2.3.0.txt
|
446
453
|
- doc/release_notes/2.4.0.txt
|
447
454
|
- doc/release_notes/2.5.0.txt
|
@@ -451,6 +458,7 @@ files:
|
|
451
458
|
- doc/release_notes/2.9.0.txt
|
452
459
|
- doc/remember.rdoc
|
453
460
|
- doc/reset_password.rdoc
|
461
|
+
- doc/reset_password_notify.rdoc
|
454
462
|
- doc/session_expiration.rdoc
|
455
463
|
- doc/single_session.rdoc
|
456
464
|
- doc/sms_codes.rdoc
|
@@ -500,6 +508,7 @@ files:
|
|
500
508
|
- lib/rodauth/features/recovery_codes.rb
|
501
509
|
- lib/rodauth/features/remember.rb
|
502
510
|
- lib/rodauth/features/reset_password.rb
|
511
|
+
- lib/rodauth/features/reset_password_notify.rb
|
503
512
|
- lib/rodauth/features/session_expiration.rb
|
504
513
|
- lib/rodauth/features/single_session.rb
|
505
514
|
- lib/rodauth/features/sms_codes.rb
|
@@ -543,6 +552,7 @@ files:
|
|
543
552
|
- templates/recovery-codes.str
|
544
553
|
- templates/remember.str
|
545
554
|
- templates/reset-password-email.str
|
555
|
+
- templates/reset-password-notify-email.str
|
546
556
|
- templates/reset-password-request.str
|
547
557
|
- templates/reset-password.str
|
548
558
|
- templates/sms-auth.str
|
@@ -596,7 +606,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
596
606
|
- !ruby/object:Gem::Version
|
597
607
|
version: '0'
|
598
608
|
requirements: []
|
599
|
-
rubygems_version: 3.3.
|
609
|
+
rubygems_version: 3.3.7
|
600
610
|
signing_key:
|
601
611
|
specification_version: 4
|
602
612
|
summary: Authentication and Account Management Framework for Rack Applications
|