All Versions
42
Latest Version
Avg Release Cycle
29 days
Latest Release
-

Changelog History
Page 3

  • v1.3.0 Changes

    October 18, 2015
    • โœจ Enhancements
      • Improved the efficiency of the common password check for the strong_password function
      • Added more information to the Mix build errors
    • ๐Ÿ”„ Changes
      • Forcing compilation of C code in dev and prod environments
  • v1.2.0 Changes

    September 26, 2015
    • โœจ Enhancements
      • Added a common option to the strong_password check. This checks for passwords that are easy to guess, or common
      • Improved random password generator - added a check to ensure it is strong and set the minimum length to 8 characters
  • v1.1.4 Changes

    September 25, 2015
    • ๐Ÿ› Bug fix
      • Removed random_bytes function. Now calling :crypto.strong_rand_bytes directly
  • v1.1.0 Changes

    July 28, 2015
    • ๐Ÿ”„ Changes
      • Divided the strong password check into two parts: minimum length and check for punctuation characters and digits
      • Removed configutation values for password length for generated passwords and minimum length of passwords for the password check
  • v1.0.5 Changes

    July 14, 2015
    • ๐Ÿ› Bug fix
      • Replaced Mix.Shell.info with IO.binwrite to prevent compile errors with certain character encodings
  • v1.0.1 Changes

    May 31, 2015
    • โœจ Enhancements
      • Enabled the create_user function to be used with atoms as keys as well as strings
  • v1.0.0 Changes

    May 20, 2015
    • ๐Ÿ”„ Changes
      • Renamed signup_user, function to check password strength before hashing the password, to create_user
    • โœจ Enhancements
      • Added create_user function which takes a map, removes the "password" entry and adds a "password_hash" entry
  • v0.11.0 Changes

    May 19, 2015
    • ๐Ÿ”„ Changes
      • Renamed hashpwsalt/2 to signup_user/1
  • v0.10.0 Changes

    May 14, 2015
    • ๐Ÿ”„ Changes
      • Removed log_rounds, or rounds, parameter for the function hashpwsalt
      • Added option to check password (for strength) in the function hashpwsalt (hashpwsalt/2)
  • v0.9.0 Changes

    May 08, 2015
    • โœจ Enhancements
      • Added random password generator
      • Added optional check to test if passwords have digits and punctuation characters
    • ๐Ÿ› Bug fixes
      • Added information about password strength and password policies to the documentation