diff --git a/README.md b/README.md index fb375daad..28475f7fe 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,12 @@ Available addons ---------------- addon | version | maintainers | summary --- | --- | --- | --- -[base_rest](base_rest/) | 14.0.4.8.3 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Develop your own high level REST APIs for Odoo thanks to this addon. +[base_rest](base_rest/) | 14.0.4.8.4 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Develop your own high level REST APIs for Odoo thanks to this addon. [base_rest_auth_api_key](base_rest_auth_api_key/) | 14.0.1.0.2 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Base Rest: Add support for the auth_api_key security policy into the openapi documentation [base_rest_auth_jwt](base_rest_auth_jwt/) | 14.0.1.1.0 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Base Rest: Add support for the auth_jwt security policy into the openapi documentation [base_rest_auth_user_service](base_rest_auth_user_service/) | 14.0.1.1.0 | | Login/logout from session using a REST call [base_rest_datamodel](base_rest_datamodel/) | 14.0.4.3.0 | | Datamodel binding for base_rest -[base_rest_demo](base_rest_demo/) | 14.0.4.2.4 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Demo addon for Base REST +[base_rest_demo](base_rest_demo/) | 14.0.4.2.5 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Demo addon for Base REST [base_rest_pydantic](base_rest_pydantic/) | 14.0.4.3.3 | | Pydantic binding for base_rest [datamodel](datamodel/) | 14.0.3.0.5 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | This addon allows you to define simple data models supporting serialization/deserialization [extendable](extendable/) | 14.0.1.0.1 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Extendable classes registry loader for Odoo diff --git a/base_rest/README.rst b/base_rest/README.rst index 7ea8d7cf9..f36ad418e 100644 --- a/base_rest/README.rst +++ b/base_rest/README.rst @@ -7,7 +7,7 @@ Base Rest !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:4dcc7d7ecd1b0925d3833b03e31a3ca205378816faa55cd09a53816c0c63ddc7 + !! source digest: sha256:cdf51157347c0dc804e85f42958f2b4405bb57b51d8620a48da5777fd612f8fd !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/base_rest/__manifest__.py b/base_rest/__manifest__.py index d9a35ea45..ee84a5643 100644 --- a/base_rest/__manifest__.py +++ b/base_rest/__manifest__.py @@ -6,7 +6,7 @@ "summary": """ Develop your own high level REST APIs for Odoo thanks to this addon. """, - "version": "14.0.4.8.3", + "version": "14.0.4.8.4", "development_status": "Beta", "license": "LGPL-3", "author": "ACSONE SA/NV, " "Odoo Community Association (OCA)", diff --git a/base_rest/static/description/index.html b/base_rest/static/description/index.html index a47439009..928eb317f 100644 --- a/base_rest/static/description/index.html +++ b/base_rest/static/description/index.html @@ -1,4 +1,3 @@ - @@ -9,10 +8,11 @@ /* :Author: David Goodger (goodger@python.org) -:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $ +:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $ :Copyright: This stylesheet has been placed in the public domain. Default cascading style sheet for the HTML output of Docutils. +Despite the name, some widely supported CSS2 features are used. See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to customize this style sheet. @@ -275,7 +275,7 @@ margin-left: 2em ; margin-right: 2em } -pre.code .ln { color: grey; } /* line numbers */ +pre.code .ln { color: gray; } /* line numbers */ pre.code, code { background-color: #eeeeee } pre.code .comment, code .comment { color: #5C6576 } pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } @@ -301,7 +301,7 @@ span.pre { white-space: pre } -span.problematic { +span.problematic, pre.problematic { color: red } span.section-subtitle { @@ -367,7 +367,7 @@

Base Rest

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:4dcc7d7ecd1b0925d3833b03e31a3ca205378816faa55cd09a53816c0c63ddc7 +!! source digest: sha256:cdf51157347c0dc804e85f42958f2b4405bb57b51d8620a48da5777fd612f8fd !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: LGPL-3 OCA/rest-framework Translate me on Weblate Try me on Runboat

This addon provides the basis to develop high level REST APIs for Odoo.

@@ -725,7 +725,9 @@

Contributors

Maintainers

This module is maintained by the OCA.

-Odoo Community Association + +Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

diff --git a/base_rest_demo/README.rst b/base_rest_demo/README.rst index 82b7cbeca..d27e8e90c 100644 --- a/base_rest_demo/README.rst +++ b/base_rest_demo/README.rst @@ -7,7 +7,7 @@ Base Rest Demo !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:7fe84965826b25e6b75b950ae1047e5cdb8058ef0a8c327066ed6c59efe7a479 + !! source digest: sha256:18ada17867ecd6bac566cdc520bf1de09b686d08af09b9675cd595361c050c69 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/base_rest_demo/__manifest__.py b/base_rest_demo/__manifest__.py index 0d3ec3940..1ca458a5e 100644 --- a/base_rest_demo/__manifest__.py +++ b/base_rest_demo/__manifest__.py @@ -5,7 +5,7 @@ "name": "Base Rest Demo", "summary": """ Demo addon for Base REST""", - "version": "14.0.4.2.4", + "version": "14.0.4.2.5", "development_status": "Beta", "license": "LGPL-3", "author": "ACSONE SA/NV, " "Odoo Community Association (OCA)", diff --git a/base_rest_demo/static/description/index.html b/base_rest_demo/static/description/index.html index ae91ae27b..d3373911a 100644 --- a/base_rest_demo/static/description/index.html +++ b/base_rest_demo/static/description/index.html @@ -1,4 +1,3 @@ - @@ -9,10 +8,11 @@ /* :Author: David Goodger (goodger@python.org) -:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $ +:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $ :Copyright: This stylesheet has been placed in the public domain. Default cascading style sheet for the HTML output of Docutils. +Despite the name, some widely supported CSS2 features are used. See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to customize this style sheet. @@ -275,7 +275,7 @@ margin-left: 2em ; margin-right: 2em } -pre.code .ln { color: grey; } /* line numbers */ +pre.code .ln { color: gray; } /* line numbers */ pre.code, code { background-color: #eeeeee } pre.code .comment, code .comment { color: #5C6576 } pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } @@ -301,7 +301,7 @@ span.pre { white-space: pre } -span.problematic { +span.problematic, pre.problematic { color: red } span.section-subtitle { @@ -367,7 +367,7 @@

Base Rest Demo

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:7fe84965826b25e6b75b950ae1047e5cdb8058ef0a8c327066ed6c59efe7a479 +!! source digest: sha256:18ada17867ecd6bac566cdc520bf1de09b686d08af09b9675cd595361c050c69 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: LGPL-3 OCA/rest-framework Translate me on Weblate Try me on Runboat

Demo addon to illustrate how to develop self documented REST services thanks @@ -442,7 +442,9 @@

Contributors

Maintainers

This module is maintained by the OCA.

-Odoo Community Association + +Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.