devise-argon2 2.0.2 → 2.0.3
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/.github/workflows/test.yml +22 -7
- data/.gitignore +2 -1
- data/CHANGELOG.md +5 -0
- data/Gemfile +7 -2
- data/lib/devise-argon2/model.rb +5 -0
- data/lib/devise-argon2/version.rb +1 -1
- data/spec/devise-argon2_spec.rb +34 -0
- data/spec/rails_app/app/active_record/old_user.rb +1 -1
- data/spec/rails_app/app/active_record/user.rb +1 -1
- data/spec/rails_app/app/mongoid/old_user.rb +1 -1
- data/spec/rails_app/app/mongoid/user.rb +1 -1
- data/spec/rails_app/db/migrate/20250319085725_add_recoverable_fields_to_users.rb +6 -0
- data/spec/rails_app/db/migrate/20250319085738_add_recoverable_fields_to_old_users.rb +6 -0
- data/spec/rails_app/db/schema.rb +5 -2
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d16c11636eaa7c98ef99536fdb71ed654c7ec37d9fbc9c1b16fa9da33b0a462
|
4
|
+
data.tar.gz: 208892689f1d8702ac262b4bd40dda7631102932c88d90b0be3e79290999ea0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 305e754064c5b079e9a96fc921c3907b712514b42f1ce63cc58e19e3f55c1008ba6ca5b85ea3bbd272e71cfe3219321a5966168529f50a440d544afde385c3ad
|
7
|
+
data.tar.gz: '0292c12e1fef0d399574181f76bc10b33b73fc122a579de94446f7f633e0ff597e4395f52c65e611dfedb6d7494c817835ffbd63aa4a757f408de793bfd55005'
|
data/.github/workflows/test.yml
CHANGED
@@ -7,8 +7,8 @@ jobs:
|
|
7
7
|
runs-on: ubuntu-latest
|
8
8
|
strategy:
|
9
9
|
matrix:
|
10
|
-
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3']
|
11
|
-
rails-version: ['~> 6.1', '~> 7.0', '~> 7.1', '~> 7.2', '8.0
|
10
|
+
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
|
11
|
+
rails-version: ['~> 6.1', '~> 7.0', '~> 7.1', '~> 7.2', '~> 8.0']
|
12
12
|
argon2-version: ['2.2', '2.3']
|
13
13
|
orm:
|
14
14
|
- adapter: active_record
|
@@ -25,19 +25,25 @@ jobs:
|
|
25
25
|
ruby-version: '2.7'
|
26
26
|
- rails-version: '~> 7.2'
|
27
27
|
ruby-version: '3.0'
|
28
|
-
- rails-version: '8.0
|
28
|
+
- rails-version: '~> 8.0'
|
29
29
|
ruby-version: '2.7'
|
30
|
-
- rails-version: '8.0
|
30
|
+
- rails-version: '~> 8.0'
|
31
31
|
ruby-version: '3.0'
|
32
|
-
- rails-version: '8.0
|
32
|
+
- rails-version: '~> 8.0'
|
33
33
|
ruby-version: '3.1'
|
34
|
+
- rails-version: '~> 6.1'
|
35
|
+
ruby-version: '3.4'
|
34
36
|
- orm:
|
35
37
|
adapter: mongoid
|
36
|
-
rails-version: '8.0
|
38
|
+
rails-version: '~> 8.0'
|
37
39
|
- orm:
|
38
40
|
adapter: mongoid
|
39
41
|
mongoid-version: 8.0.8
|
40
42
|
ruby-version: '3.3'
|
43
|
+
- orm:
|
44
|
+
adapter: mongoid
|
45
|
+
mongoid-version: 8.0.8
|
46
|
+
ruby-version: '3.4'
|
41
47
|
- orm:
|
42
48
|
adapter: mongoid
|
43
49
|
mongoid-version: 8.0.8
|
@@ -46,6 +52,10 @@ jobs:
|
|
46
52
|
adapter: mongoid
|
47
53
|
mongoid-version: 7.5.4
|
48
54
|
ruby-version: '3.3'
|
55
|
+
- orm:
|
56
|
+
adapter: mongoid
|
57
|
+
mongoid-version: 7.5.4
|
58
|
+
ruby-version: '3.4'
|
49
59
|
- orm:
|
50
60
|
adapter: mongoid
|
51
61
|
mongoid-version: 7.5.4
|
@@ -63,12 +73,17 @@ jobs:
|
|
63
73
|
mongoid-version: 7.5.4
|
64
74
|
rails-version: '~> 7.1'
|
65
75
|
env:
|
66
|
-
RAILS_VERSION: ${{ matrix.rails-version || '~>
|
76
|
+
RAILS_VERSION: ${{ matrix.rails-version || '~> 8.0'}}
|
67
77
|
MONGOID_VERSION: ${{ matrix.orm.mongoid-version || '8.1.6'}}
|
68
78
|
ORM: ${{ matrix.orm.adapter }}
|
69
79
|
ARGON2_VERSION: ${{ matrix.argon2-version }}
|
70
80
|
DEVISE_VERSION: ${{ matrix.devise-version || '~> 4.9' }}
|
71
81
|
steps:
|
82
|
+
- name: Login to Docker Hub
|
83
|
+
uses: docker/login-action@v3
|
84
|
+
with:
|
85
|
+
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
86
|
+
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
72
87
|
- uses: actions/checkout@v4
|
73
88
|
- name: Set up Ruby ${{ matrix.ruby-version }}
|
74
89
|
uses: ruby/setup-ruby@v1
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
@@ -5,7 +5,7 @@ gemspec
|
|
5
5
|
gem 'rspec'
|
6
6
|
gem 'simplecov'
|
7
7
|
gem 'activerecord'
|
8
|
-
gem 'rails', ENV['RAILS_VERSION'] || '~>
|
8
|
+
gem 'rails', ENV['RAILS_VERSION'] || '~> 8.0'
|
9
9
|
gem 'argon2', ENV['ARGON2_VERSION'] || '~> 2.3'
|
10
10
|
gem 'devise', ENV['DEVISE_VERSION'] || '~> 4.9'
|
11
11
|
|
@@ -13,8 +13,13 @@ if ENV['ORM'] == 'mongoid'
|
|
13
13
|
gem 'mongoid', ENV['MONGOID_VERSION'] || '~> 7.5'
|
14
14
|
end
|
15
15
|
|
16
|
-
if ENV['RAILS_VERSION'] == '8.0
|
16
|
+
if ENV['RAILS_VERSION'] == '~> 8.0'
|
17
17
|
gem 'sqlite3', '~> 2.1'
|
18
18
|
else
|
19
19
|
gem 'sqlite3', '~> 1.6', '>= 1.6.6'
|
20
20
|
end
|
21
|
+
|
22
|
+
if ['~> 6.1', '~> 7.0'].include? ENV['RAILS_VERSION']
|
23
|
+
gem 'concurrent-ruby', '1.3.4'
|
24
|
+
end
|
25
|
+
|
data/lib/devise-argon2/model.rb
CHANGED
data/spec/devise-argon2_spec.rb
CHANGED
@@ -302,4 +302,38 @@ describe Devise::Models::Argon2 do
|
|
302
302
|
)
|
303
303
|
end
|
304
304
|
end
|
305
|
+
|
306
|
+
describe 'password reset' do
|
307
|
+
NEW_PASSWORD = 'new password'
|
308
|
+
|
309
|
+
shared_examples 'ways of resetting the password' do
|
310
|
+
it 'can be done via password_reset' do
|
311
|
+
user.reset_password(NEW_PASSWORD, NEW_PASSWORD)
|
312
|
+
expect(user.valid_password?(NEW_PASSWORD)).to be true
|
313
|
+
end
|
314
|
+
|
315
|
+
it 'can be done via password=' do
|
316
|
+
user.password = NEW_PASSWORD
|
317
|
+
expect(user.valid_password?(NEW_PASSWORD)).to be true
|
318
|
+
end
|
319
|
+
end
|
320
|
+
|
321
|
+
context 'encrypted_password is hashed with the current version of devise-argon2' do
|
322
|
+
include_examples 'ways of resetting the password'
|
323
|
+
end
|
324
|
+
|
325
|
+
context 'encrypted_password is hashed with version 1 of devise-argon2' do
|
326
|
+
let(:user) { OldUser.new(password: CORRECT_PASSWORD) }
|
327
|
+
|
328
|
+
before do
|
329
|
+
Devise.argon2_options.merge!({ migrate_from_devise_argon2_v1: true })
|
330
|
+
user.password_salt = 'devise-argon2 v1 salt'
|
331
|
+
user.encrypted_password = ::Argon2::Password.create(
|
332
|
+
"#{CORRECT_PASSWORD}#{user.password_salt}#{Devise.pepper}"
|
333
|
+
)
|
334
|
+
end
|
335
|
+
|
336
|
+
include_examples 'ways of resetting the password'
|
337
|
+
end
|
338
|
+
end
|
305
339
|
end
|
data/spec/rails_app/db/schema.rb
CHANGED
@@ -10,13 +10,15 @@
|
|
10
10
|
#
|
11
11
|
# It's strongly recommended that you check this file into your version control system.
|
12
12
|
|
13
|
-
ActiveRecord::Schema.define(version:
|
13
|
+
ActiveRecord::Schema.define(version: 2025_03_19_085738) do
|
14
14
|
create_table "old_users", force: :cascade do |t|
|
15
15
|
t.string "email", default: "", null: false
|
16
16
|
t.string "encrypted_password", default: "", null: false
|
17
17
|
t.string "password_salt"
|
18
18
|
t.datetime "created_at", null: false
|
19
19
|
t.datetime "updated_at", null: false
|
20
|
+
t.string "reset_password_token"
|
21
|
+
t.datetime "reset_password_sent_at"
|
20
22
|
t.index ["email"], name: "index_old_users_on_email", unique: true
|
21
23
|
end
|
22
24
|
|
@@ -25,7 +27,8 @@ ActiveRecord::Schema.define(version: 2023_10_04_084147) do
|
|
25
27
|
t.string "encrypted_password", default: "", null: false
|
26
28
|
t.datetime "created_at", null: false
|
27
29
|
t.datetime "updated_at", null: false
|
30
|
+
t.string "reset_password_token"
|
31
|
+
t.datetime "reset_password_sent_at"
|
28
32
|
t.index ["email"], name: "index_users_on_email", unique: true
|
29
33
|
end
|
30
|
-
|
31
34
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise-argon2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tamas Erdos
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: devise
|
@@ -81,6 +81,8 @@ files:
|
|
81
81
|
- spec/rails_app/config/routes.rb
|
82
82
|
- spec/rails_app/db/migrate/20230617201921_devise_create_users.rb
|
83
83
|
- spec/rails_app/db/migrate/20231004084147_devise_create_old_users.rb
|
84
|
+
- spec/rails_app/db/migrate/20250319085725_add_recoverable_fields_to_users.rb
|
85
|
+
- spec/rails_app/db/migrate/20250319085738_add_recoverable_fields_to_old_users.rb
|
84
86
|
- spec/rails_app/db/schema.rb
|
85
87
|
- spec/spec_helper.rb
|
86
88
|
homepage: https://github.com/erdostom/devise-argon2
|
@@ -103,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
105
|
- !ruby/object:Gem::Version
|
104
106
|
version: '0'
|
105
107
|
requirements: []
|
106
|
-
rubygems_version: 3.
|
108
|
+
rubygems_version: 3.1.6
|
107
109
|
signing_key:
|
108
110
|
specification_version: 4
|
109
111
|
summary: Enables Devise to hash passwords with Argon2id
|
@@ -131,5 +133,7 @@ test_files:
|
|
131
133
|
- spec/rails_app/config/routes.rb
|
132
134
|
- spec/rails_app/db/migrate/20230617201921_devise_create_users.rb
|
133
135
|
- spec/rails_app/db/migrate/20231004084147_devise_create_old_users.rb
|
136
|
+
- spec/rails_app/db/migrate/20250319085725_add_recoverable_fields_to_users.rb
|
137
|
+
- spec/rails_app/db/migrate/20250319085738_add_recoverable_fields_to_old_users.rb
|
134
138
|
- spec/rails_app/db/schema.rb
|
135
139
|
- spec/spec_helper.rb
|