Skip to content

Commit

Permalink
prepare release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesfize committed Aug 7, 2024
1 parent 7016271 commit 584b203
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ providers_config = # Declare identity providers used to log into your app
[
# Default identity provider (comes with UH-AM)
{
"module" : "pypnusershub.auth.providers.default.DefaultConfiguration",
"module" : "pypnusershub.auth.providers.default.LocalProvider",
"id_provider":"local_provider"
},
# you can add other identity providers that works with OpenID protocol (and many others !)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.5
3.0.0
25 changes: 25 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
CHANGELOG
*********

3.0.0 (2024-08-07)
------------------

**🚀 Nouveautés**

- Enrichissement des modes de connexions avec l'implémentation de `AuthManager` (#93). Plusieurs protocoles
de connexions sont disponibles : par défaut, OpenID, OpenIDConnect, UsersHub-authentification-module externe.

**⚠️ Notes de version**

- Remplacer l'initialisation du `login_manager` par celle du `auth_manager` lors de l'initialisation de votre
application Flask comme dans l'exemple ci-dessous :
```python
from pypnusershub.auth import auth_manager
providers_config = [
{
"module" : "pypnusershub.auth.providers.default.LocalProvider",
"id_provider":"local_provider"
},
]
auth_manager.init_app(app,providers_declaration=providers_config)
```



2.1.5 (2024-05-23)
------------------

Expand Down

0 comments on commit 584b203

Please sign in to comment.