diff --git a/README.md b/README.md index 7d0d29c9c2..ae01ce6743 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ addon | version | maintainers | summary [auth_api_key_server_env](auth_api_key_server_env/) | 16.0.1.0.0 | | Configure api keys via server env. This can be very useful to avoid mixing your keys between your various environments when restoring databases. All you have to do is to add a new section to your configuration file according to the following convention: [auth_jwt](auth_jwt/) | 16.0.1.1.0 | [![sbidoul](https://github.com/sbidoul.png?size=30px)](https://github.com/sbidoul) | JWT bearer token authentication. [auth_jwt_demo](auth_jwt_demo/) | 16.0.1.1.1 | [![sbidoul](https://github.com/sbidoul.png?size=30px)](https://github.com/sbidoul) | Test/demo module for auth_jwt. +[auth_jwt_server_env](auth_jwt_server_env/) | 16.0.1.0.0 | | This addon adds auth.jwt.validator fields to server env [auth_ldaps](auth_ldaps/) | 16.0.1.0.0 | | Allows to use LDAP over SSL authentication [auth_oidc](auth_oidc/) | 16.0.1.0.2 | [![sbidoul](https://github.com/sbidoul.png?size=30px)](https://github.com/sbidoul) | Allow users to login through OpenID Connect Provider [auth_oidc_environment](auth_oidc_environment/) | 16.0.1.0.0 | | This module allows to use server env for OIDC configuration diff --git a/auth_jwt_server_env/static/description/icon.png b/auth_jwt_server_env/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/auth_jwt_server_env/static/description/icon.png differ diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 58adf0c56b..2a1abaf1c9 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -16.0.20231010.0 \ No newline at end of file +16.0.20231130.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index aaba697774..ddd7973cf8 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -13,6 +13,7 @@ 'odoo-addon-auth_api_key_server_env>=16.0dev,<16.1dev', 'odoo-addon-auth_jwt>=16.0dev,<16.1dev', 'odoo-addon-auth_jwt_demo>=16.0dev,<16.1dev', + 'odoo-addon-auth_jwt_server_env>=16.0dev,<16.1dev', 'odoo-addon-auth_ldaps>=16.0dev,<16.1dev', 'odoo-addon-auth_oidc>=16.0dev,<16.1dev', 'odoo-addon-auth_oidc_environment>=16.0dev,<16.1dev',