password_blacklist 0.2.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b22608c95dc5fc7c604b0349bad2c825aac95031
4
- data.tar.gz: 55947678be70c1b81654a0540e925021ef26f8c8
2
+ SHA256:
3
+ metadata.gz: bccd4f7a39e75a1053ace700211a5e30c68dcc5753d021ec55aae6a9faadc018
4
+ data.tar.gz: 337741f0cf3ce246c45221ca6180e57b218cda12031e6cf64a622e65a2abf29f
5
5
  SHA512:
6
- metadata.gz: bac235c02a7a44cbe068f2d67954c6603971506fb09d9270fa0cc7e88f2229238884624accc90e160fd3a33f2af36b094b59c7fa6a4e02d168c559c03b665642
7
- data.tar.gz: 16c2ed87337175d5e54bcc59bd4ba397db6f3b9ca6f210bb11a63d10b759b34322df3df911e40695442b02cd070a735e9d57fbc4138d750aa8f6819911cf0ff5
6
+ metadata.gz: b08c5b6cd3a24ffde9bf093178fcd07c9989fb757a010f26a72c15b840fbb4debf1697cf5763f001d2a35bf083c4b422d98ef230307066eaae43abfb9db29acd
7
+ data.tar.gz: '0947210ee42bb23cffb955c9d9b82f7644cacd14d464294ed0dfa69c2ab6d7ee3fbeb5cfafe086e14b2801ef79bd2649c2f14042ed4cb083fd5ce8e47639d762'
data/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ 0.4.1 / 2022-04-02
2
+ ------
3
+ * Added a post-install message and deprecation message regarding renaming
4
+ this library.
5
+ * No other functional changes.
6
+
7
+ 0.4.0 / 2021-08-10
8
+ ------
9
+ Support Ruby 3.0. Thanks matssigge!
10
+ Update simplecov and coveralls development dependency versions. Thanks matssigge!
11
+ Update rake and bundler development dependency versions.
12
+ Fix benchmark code.
13
+ Add memory profiler to compare String, Array and Set.
14
+
15
+ 0.3.0 / 2017-07-13
16
+ ------
17
+ Use the "Probable-Wordlists" (https://github.com/berzerk0/Probable-Wordlists) wordlist. Thanks olbrich!
18
+
1
19
  0.2.0 / 2017-07-12
2
20
  ------
3
21
  Ignore password case sensitivity when testing a password. Thanks olbrich!
data/README.md CHANGED
@@ -3,7 +3,8 @@
3
3
 
4
4
  [![Build Status](https://travis-ci.org/gchan/password_blacklist.svg?branch=master)](https://travis-ci.org/gchan/password_blacklist) [![Coverage Status](https://coveralls.io/repos/gchan/password_blacklist/badge.svg?branch=master)](https://coveralls.io/r/gchan/password_blacklist?branch=master) [![Code Climate](https://codeclimate.com/github/gchan/password_blacklist/badges/gpa.svg)](https://codeclimate.com/github/gchan/password_blacklist)
5
5
 
6
- Check the presence of a string in a blacklist of the top 100,000 commonly used passwords (sourced from Mark Burnett's [ten million password release](https://xato.net/today-i-am-releasing-ten-million-passwords-b6278bbe7495)).
6
+ Check the presence of a string in a blacklist of the top 95,000 commonly used passwords (sourced from berzerk0
7
+ 's [Probable-Wordlists](https://github.com/berzerk0/Probable-Wordlists)).
7
8
 
8
9
  This very simple Ruby library can be integrated into your registration/authentication system to prevent users from setting commonly used (and easy to guess) passwords.
9
10
 
@@ -79,8 +80,10 @@ Bug reports and pull requests are welcome on GitHub at https://www.github.com/gc
79
80
  4. Push to the branch (`git push origin my-new-feature`)
80
81
  5. Create a new Pull Request
81
82
 
82
- ## License
83
+ ## Licenses
83
84
 
84
85
  password_blacklist is Copyright (c) 2017 Gordon Chan and is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
85
86
 
87
+ Top95Thousand-probable.txt is licensed under CC BY-SA 4.0 (Creative Commons Attribution-ShareAlike 4.0 International)
88
+
86
89
  [![Analytics](https://ga-beacon.appspot.com/UA-70790190-2/password_blacklist/README.md?flat)](https://github.com/igrigorik/ga-beacon)