zxcvbn-ruby 1.2.3 → 1.2.4
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.md +11 -3
- data/lib/zxcvbn/data.rb +1 -1
- data/lib/zxcvbn/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52ddbaaabcb2929e59d34d91104bce81b86f223428001218872294363d79f2ac
|
|
4
|
+
data.tar.gz: 5c488ab8d0dfbd6c46b2b5b05f3b878355e09babe09304c3653c9e45dcf64d02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ac904b4f3e4219981def358d1f7aa69870e9e33605c3696123e95f936d4880b39d2b5e1d5f323fd89ebc7b2ff43eaa93f22c598ac40ea20bdd768072a082162
|
|
7
|
+
data.tar.gz: f32d688a3ee53867c1f47f0e52527d3da4397e26c93854305ee5cbcf224e9dad104f087ab80174848b3765dd41a086a6fd33a4ab72a1b72d8ea05209aa88b289
|
data/CHANGELOG.md
CHANGED
|
@@ -6,13 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
[Unreleased]: https://github.com/envato/zxcvbn-ruby/compare/v1.2.
|
|
9
|
+
[Unreleased]: https://github.com/envato/zxcvbn-ruby/compare/v1.2.4...HEAD
|
|
10
|
+
|
|
11
|
+
## [1.2.4] - 2025-12-07
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Address security issues found by RuboCop ([#57])
|
|
15
|
+
|
|
16
|
+
[1.2.4]: https://github.com/envato/zxcvbn-ruby/compare/v1.2.3...v1.2.4
|
|
17
|
+
[#57]: https://github.com/envato/zxcvbn-ruby/pull/57
|
|
10
18
|
|
|
11
19
|
## [1.2.3] - 2025-12-07
|
|
12
20
|
|
|
13
21
|
### Changed
|
|
14
|
-
- Address linting issues ([#52])
|
|
15
|
-
- Address style issues ([#53], [#54], [#55])
|
|
22
|
+
- Address linting issues found by RuboCop ([#52])
|
|
23
|
+
- Address style issues found by RuboCop ([#53], [#54], [#55])
|
|
16
24
|
|
|
17
25
|
[1.2.3]: https://github.com/envato/zxcvbn-ruby/compare/v1.2.2...v1.2.3
|
|
18
26
|
[#52]: https://github.com/envato/zxcvbn-ruby/pull/52
|
data/lib/zxcvbn/data.rb
CHANGED
|
@@ -13,7 +13,7 @@ module Zxcvbn
|
|
|
13
13
|
'passwords' => read_word_list('passwords.txt'),
|
|
14
14
|
'surnames' => read_word_list('surnames.txt')
|
|
15
15
|
)
|
|
16
|
-
@adjacency_graphs = JSON.
|
|
16
|
+
@adjacency_graphs = JSON.parse(DATA_PATH.join('adjacency_graphs.json').read)
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
attr_reader :ranked_dictionaries, :adjacency_graphs
|
data/lib/zxcvbn/version.rb
CHANGED