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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62e582cfff03a7e2075efea27771a6e8a542e799546b67ab7e342df77fc503e5
4
- data.tar.gz: 9ac56545038db446e0dac7421f8d5ebc22bdb62abc808ba9801f18fbaf474257
3
+ metadata.gz: 52ddbaaabcb2929e59d34d91104bce81b86f223428001218872294363d79f2ac
4
+ data.tar.gz: 5c488ab8d0dfbd6c46b2b5b05f3b878355e09babe09304c3653c9e45dcf64d02
5
5
  SHA512:
6
- metadata.gz: 15a3f510c69b660169c08e7552f04ba5072db4865977aa436e3b673cd2053dadd0af5a5d143ea936a86993c1cbe48653957384bf97aac7056d80d31a99c986a9
7
- data.tar.gz: 6c69b9142475710c4ce02ccbef7da7faaa4c54426118d29383f55d20c1b9c1d62459bd8de842f37830b22568ba41cb4a5717dc6531d9c4edb7625691cf3d1229
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.3...HEAD
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.load(DATA_PATH.join('adjacency_graphs.json').read)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Zxcvbn
4
- VERSION = '1.2.3'
4
+ VERSION = '1.2.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zxcvbn-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Hodgkiss