14
0

- Update to 3.7.0:

* add KeycloakAdmin.get_idp()
  * Update dynamic client using registration access token
  * add an optional search criteria to the get_realm_roles function
  * added KeycloakAdmin.update_client_authz_resource()
  * Implement missing admin method create_client_authz_scope_based_permission()
    and create_client_authz_policy()
  * Add query to get users group method and permit pagination
  * Changes the exchange token API
  * do not swap realm for user_realm when logging in with a client service
    account
  * Fixes `Authorization.load_config` breaking if a scope based permission
    is linked with anything other than a role based policy.
  * Add get and delete methods for client authz resources
  * loose requests pgk and remove urllib3 as dependency
  * Check if _s exists in ConnectionManager before deleting it
  * deprecation warnings in keycloak_admin.py
  * Add UMA policy management and permission tickets
  * add initial access token support and policy delete method
  * Check if applyPolicies exists in the config
  * implement cache clearing API
  * get_group_by_path uses Keycloak API to load
  * add Keycloak UMA client
  * update header if token is given
  * init KeycloakAdmin with token
  * added default realm roles handlers
  * fix testing create_client_authz_scopes parameters
  * option for enabling users
  * helping functions for disabling users
- Add patch fix-version.patch:

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-keycloak?expand=0&rev=6
This commit is contained in:
2024-02-14 01:32:43 +00:00
committed by Git OBS Bridge
parent 96a71ecc90
commit b5aa4cdc17
5 changed files with 68 additions and 14 deletions

View File

@@ -1,3 +1,39 @@
-------------------------------------------------------------------
Wed Feb 14 01:32:07 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 3.7.0:
* add KeycloakAdmin.get_idp()
* Update dynamic client using registration access token
* add an optional search criteria to the get_realm_roles function
* added KeycloakAdmin.update_client_authz_resource()
* Implement missing admin method create_client_authz_scope_based_permission()
and create_client_authz_policy()
* Add query to get users group method and permit pagination
* Changes the exchange token API
* do not swap realm for user_realm when logging in with a client service
account
* Fixes `Authorization.load_config` breaking if a scope based permission
is linked with anything other than a role based policy.
* Add get and delete methods for client authz resources
* loose requests pgk and remove urllib3 as dependency
* Check if _s exists in ConnectionManager before deleting it
* deprecation warnings in keycloak_admin.py
* Add UMA policy management and permission tickets
* add initial access token support and policy delete method
* Check if applyPolicies exists in the config
* implement cache clearing API
* get_group_by_path uses Keycloak API to load
* add Keycloak UMA client
* update header if token is given
* init KeycloakAdmin with token
* added default realm roles handlers
* fix testing create_client_authz_scopes parameters
* option for enabling users
* helping functions for disabling users
- Add patch fix-version.patch:
* Set a version in pyproject.toml.
- Switch to github tarball.
-------------------------------------------------------------------
Tue Dec 13 18:49:15 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>