Skip to content

Commit

Permalink
docs: updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ergo committed Feb 18, 2018
1 parent 685f0ef commit 37e4a86
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

2018-02-19
----------
* Release 0.7.3
* Use pbkdf2_sha256 by default (bcypt hashes will work and will be migrated on first login for users)

** Important **
By default `check_password` will migrate your existing bcrypt hashes to pbkdf2_sha256, if you want to keep bcrypt,
you can either pass `passwordmanager_schemes` list to `ziggurat_model_init` or use your own passwordmanager.

2018-02-17
----------

Expand Down
24 changes: 24 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Changelog
=========

2018-02-19
----------
* Release 0.7.3
* Use pbkdf2_sha256 by default (bcypt hashes will work and will be migrated on first login for users)

** Important **
By default `check_password` will migrate your existing bcrypt hashes to pbkdf2_sha256, if you want to keep bcrypt,
you can either pass `passwordmanager_schemes` list to `ziggurat_model_init` or use your own passwordmanager.

2018-02-17
----------

* Release 0.7.2
* Fixed some minor issues that resulted in bad migrations when someone used `autogenerate in alembic`
* Added a way to read sqlalchemy.url from environment variable (thanks René Jochum)

2017-02-19
----------

* Release 0.7.1
* fixed tree ordering for nested elements
* fixed `perm_by_group_and_perm_name` method


2016-11-25
----------

Expand Down
12 changes: 2 additions & 10 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ Install the package:
$ pip install ziggurat_foundations
You will also need to install one of supported bcrypt backends
like `bcrypt` or `py-bcrypt` (this is default solution ziggurat_foundations
expects).

.. code-block:: bash
$ pip install bcrypt
Now it's time to initialize your model structure with alembic.

Expand Down Expand Up @@ -191,6 +184,5 @@ inside your models file, to extend your existing models (if following the basic
.. hint::

Because some systems can't utilize bcypt password manager you can pass your own
passlib compatible password manager to ziggurat_model_init, it will be used
instead of creating default one.
Default password manager will use `pbkdf2_sha256`, but if you want different configuration
pass passlib compatible password manager to ziggurat_model_init.

0 comments on commit 37e4a86

Please sign in to comment.