Sha256: df16ab490c844e77ab2b7f3165cc732d7124214117a73bca6da039e5f5605917

Contents?: true

Size: 1.13 KB

Versions: 46

Compression:

Stored size: 1.13 KB

Contents

= New Features

* A disallow_common_passwords feature has been added.  This feature
  by default will disallow the 10,000 most common passwords:

    enable :disallow_common_passwords

  You can supply your own file containing common passwords separated
  by newlines ("\n"):

    most_common_passwords_file '/path/to/file'

  You can also supply a password dictionary directly as any object
  that responds to include?:

    most_common_passwords some_password_dictionary_object

  The reason only the 10,000 most common passwords are used by
  default is larger password files would significantly bloat the
  size of the gem.  Also, because the most common passwords are kept
  in memory by default for performance reasons, larger password
  files can bloat the memory usage of the process (the
  disallow_common_passwords feature should use around 500KB of
  memory by default).  For very large password dictionaries,
  consider using a custom object that does not keep all common
  passwords in memory.
  
= Other Improvements

* Rodauth no longer uses the Rack::Request#[] method to get
  parameter values.  This method is deprecated in Rack 2.  

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
rodauth-2.36.0 doc/release_notes/1.16.0.txt
rodauth-2.34.0 doc/release_notes/1.16.0.txt
rodauth-2.33.0 doc/release_notes/1.16.0.txt
rodauth-2.32.0 doc/release_notes/1.16.0.txt
rodauth-2.31.0 doc/release_notes/1.16.0.txt
rodauth-2.30.0 doc/release_notes/1.16.0.txt
rodauth-2.29.0 doc/release_notes/1.16.0.txt
rodauth-2.28.0 doc/release_notes/1.16.0.txt
rodauth-2.27.0 doc/release_notes/1.16.0.txt
rodauth-2.26.1 doc/release_notes/1.16.0.txt
rodauth-2.26.0 doc/release_notes/1.16.0.txt
rodauth-2.25.0 doc/release_notes/1.16.0.txt
rodauth-2.24.0 doc/release_notes/1.16.0.txt
rodauth-2.23.0 doc/release_notes/1.16.0.txt
rodauth-2.22.0 doc/release_notes/1.16.0.txt
rodauth-2.21.0 doc/release_notes/1.16.0.txt
rodauth-2.20.0 doc/release_notes/1.16.0.txt
rodauth-2.19.0 doc/release_notes/1.16.0.txt
rodauth-2.18.0 doc/release_notes/1.16.0.txt
rodauth-2.17.0 doc/release_notes/1.16.0.txt