diff --git a/README.md b/README.md index 45cdf010..9b093faf 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ addon | version | maintainers | summary [datamodel](datamodel/) | 16.0.1.0.1 | [![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/) | 16.0.1.0.1 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Extendable classes registry loader for Odoo [extendable_fastapi](extendable_fastapi/) | 16.0.2.1.1 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Allows the use of extendable into fastapi apps -[fastapi](fastapi/) | 16.0.1.2.5 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Odoo FastAPI endpoint +[fastapi](fastapi/) | 16.0.1.2.6 | [![lmignon](https://github.com/lmignon.png?size=30px)](https://github.com/lmignon) | Odoo FastAPI endpoint [fastapi_auth_jwt](fastapi_auth_jwt/) | 16.0.1.0.3 | [![sbidoul](https://github.com/sbidoul.png?size=30px)](https://github.com/sbidoul) | JWT bearer token authentication for FastAPI. [fastapi_auth_jwt_demo](fastapi_auth_jwt_demo/) | 16.0.2.0.1 | [![sbidoul](https://github.com/sbidoul.png?size=30px)](https://github.com/sbidoul) | Test/demo module for fastapi_auth_jwt. [graphql_base](graphql_base/) | 16.0.1.0.1 | [![sbidoul](https://github.com/sbidoul.png?size=30px)](https://github.com/sbidoul) | Base GraphQL/GraphiQL controller diff --git a/fastapi/README.rst b/fastapi/README.rst index c287f07d..049a0700 100644 --- a/fastapi/README.rst +++ b/fastapi/README.rst @@ -7,7 +7,7 @@ Odoo FastAPI !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:de5a0e0642df22387984fd10d2e54007b88126bacdb22e9e8b637c6187abaeeb + !! source digest: sha256:77f043567efc3ac58200e6ee2eeb3c05179c999ac4b665581dbe16019f6e31d1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png @@ -1468,6 +1468,19 @@ WebSockets and to stream large responses. Changelog ========= +16.0.1.2.6 (2024-02-20) +~~~~~~~~~~~~~~~~~~~~~~~ + +**Bugfixes** + +- Fix compatibility issues with the latest Odoo version + + From https://github.com/odoo/odoo/commit/cb1d057dcab28cb0b0487244ba99231ee292502e + the original werkzeug HTTPRequest class has been wrapped in a new class to keep + under control the attributes developers use. This changes take care of this + new implementation but also keep compatibility with the old ones. (`#414 `_) + + 16.0.1.2.5 (2024-01-17) ~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/fastapi/__manifest__.py b/fastapi/__manifest__.py index b2bff08e..b07cc4e2 100644 --- a/fastapi/__manifest__.py +++ b/fastapi/__manifest__.py @@ -5,7 +5,7 @@ "name": "Odoo FastAPI", "summary": """ Odoo FastAPI endpoint""", - "version": "16.0.1.2.5", + "version": "16.0.1.2.6", "license": "LGPL-3", "author": "ACSONE SA/NV,Odoo Community Association (OCA)", "maintainers": ["lmignon"], diff --git a/fastapi/readme/HISTORY.rst b/fastapi/readme/HISTORY.rst index 54d0c7f1..37405615 100644 --- a/fastapi/readme/HISTORY.rst +++ b/fastapi/readme/HISTORY.rst @@ -1,3 +1,16 @@ +16.0.1.2.6 (2024-02-20) +~~~~~~~~~~~~~~~~~~~~~~~ + +**Bugfixes** + +- Fix compatibility issues with the latest Odoo version + + From https://github.com/odoo/odoo/commit/cb1d057dcab28cb0b0487244ba99231ee292502e + the original werkzeug HTTPRequest class has been wrapped in a new class to keep + under control the attributes developers use. This changes take care of this + new implementation but also keep compatibility with the old ones. (`#414 `_) + + 16.0.1.2.5 (2024-01-17) ~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/fastapi/readme/newsfragments/414.bugfix b/fastapi/readme/newsfragments/414.bugfix deleted file mode 100644 index 995a1fc1..00000000 --- a/fastapi/readme/newsfragments/414.bugfix +++ /dev/null @@ -1,6 +0,0 @@ -Fix compatibility issues with the latest Odoo version - -From https://github.com/odoo/odoo/commit/cb1d057dcab28cb0b0487244ba99231ee292502e -the original werkzeug HTTPRequest class has been wrapped in a new class to keep -under control the attributes developers use. This changes take care of this -new implementation but also keep compatibility with the old ones. diff --git a/fastapi/static/description/index.html b/fastapi/static/description/index.html index 6d439c4d..b26d3007 100644 --- a/fastapi/static/description/index.html +++ b/fastapi/static/description/index.html @@ -1,4 +1,3 @@ - @@ -367,7 +366,7 @@

Odoo FastAPI

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:de5a0e0642df22387984fd10d2e54007b88126bacdb22e9e8b637c6187abaeeb +!! source digest: sha256:77f043567efc3ac58200e6ee2eeb3c05179c999ac4b665581dbe16019f6e31d1 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

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

This addon provides the basis to smoothly integrate the FastAPI @@ -432,18 +431,19 @@

Odoo FastAPI

  • Known issues / Roadmap
  • Changelog
  • -
  • Bug Tracker
  • -
  • Credits @@ -1703,7 +1703,19 @@

    Known issues / Roadmap

    Changelog

    -

    16.0.1.2.5 (2024-01-17)

    +

    16.0.1.2.6 (2024-02-20)

    +

    Bugfixes

    + +
    +
    +

    16.0.1.2.5 (2024-01-17)

    Bugfixes

    • Odoo has done an update and now, it checks domains of ir.rule on creation and modification.

      @@ -1713,8 +1725,8 @@

      16.0.1.2.5 (2024-01-17)

    -
    -

    16.0.1.2.3 (2023-12-21)

    +
    +

    16.0.1.2.3 (2023-12-21)

    Bugfixes

    • In case of exception in endpoint execution, close the database cursor after rollback.

      @@ -1723,8 +1735,8 @@

      16.0.1.2.3 (2023-12-21)

    -
    -

    16.0.1.2.2 (2023-12-12)

    +
    +

    16.0.1.2.2 (2023-12-12)

    Bugfixes

    • When using the ‘FastAPITransactionCase’ class, allows to specify a specific @@ -1738,8 +1750,8 @@

      16.0.1.2.2 (2023-12-12)

      ‘authenticated_partner_impl’ method, an error is raised. (#396)
    -
    -

    16.0.1.2.1 (2023-11-03)

    +
    +

    16.0.1.2.1 (2023-11-03)

    Bugfixes

    • Fix a typo in the Field declaration of the ‘count’ attribute of the ‘PagedCollection’ schema.

      @@ -1747,8 +1759,8 @@

      16.0.1.2.1 (2023-11-03)

    -
    -

    16.0.1.2.0 (2023-10-13)

    +
    +

    16.0.1.2.0 (2023-10-13)

    Features

    • The field total in the PagedCollection schema is replaced by the field count. @@ -1762,7 +1774,7 @@

      16.0.1.2.0 (2023-10-13)

    -

    Bug Tracker

    +

    Bug Tracker

    Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed @@ -1770,21 +1782,21 @@

    Bug Tracker

    Do not contact contributors directly about support or help with technical issues.

    -

    Credits

    +

    Credits

    -

    Authors

    +

    Authors

    • ACSONE SA/NV
    -

    Maintainers

    +

    Maintainers

    This module is maintained by the OCA.

    Odoo Community Association

    OCA, or the Odoo Community Association, is a nonprofit organization whose