summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2011-06-04 01:33:57 -0400
committerEli Collins <elic@assurancetechnologies.com>2011-06-04 01:33:57 -0400
commitd915c25dcfcf02c88b78bbcb5dae3a8a44d14ccf (patch)
treec153d6321b2af7331fb8f7d1e2995ae92e125bdd /CHANGES
parent4c2cc7645212952daedc9080c20c32083fbeb7ce (diff)
downloadpasslib-d915c25dcfcf02c88b78bbcb5dae3a8a44d14ccf.tar.gz
bugfix: changed CryptPolicy to use SafeConfigParser (as it really should have all along)
* this may break parsing of some files which have "vary_rounds = 10%", that should now read "vary_rounds = 10%%". * currently detecting that case, and falling back to old behavior + userwarning * passlib 1.6 will let this be fatal.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 4dce9d8..7ad6576 100644
--- a/CHANGES
+++ b/CHANGES
@@ -11,6 +11,16 @@ Release History
* added support for Cryptacular's PBKDF2 format
* added support for using BCryptor as BCrypt backend
+ CryptContext
+ * interpolation deprecation:
+
+ CryptPolicy.from_file() / .from_string() now
+ use SafeConfigParser instead of ConfigParser.
+ This may cause some existing config files containing unescaped ``%``
+ to result in errors; passlib 1.5 will demote these to warnings,
+ but any extant config files should be updated,
+ as the errors will be fatal in passlib 1.6.
+
Documentation
* added quickstart guide to documentation