..
This file is part of Invenio.
Copyright (C) 2015-2018 CERN.
Invenio is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.
==============
Invenio-REST
==============
.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-rest.svg
:target: https://github.com/inveniosoftware/invenio-rest/blob/master/LICENSE
.. image:: https://github.com/inveniosoftware/invenio-rest/workflows/CI/badge.svg
:target: https://github.com/inveniosoftware/invenio-rest/actions
.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-rest.svg
:target: https://coveralls.io/r/inveniosoftware/invenio-rest
.. image:: https://img.shields.io/pypi/v/invenio-rest.svg
:target: https://pypi.org/pypi/invenio-rest
REST API module for Invenio.
Invenio-REST takes care of installing basic error handling on a Flask API
application, as well as initializing Flask-CORS for Cross-Origin Resources
Sharing (not enabled by default).
Further documentation is available on
https://invenio-rest.readthedocs.io/
..
This file is part of Invenio.
Copyright (C) 2015-2020 CERN.
Copyright (C) 2022 Northwestern University.
Copyright (C) 2024 Graz University of Technology.
Invenio is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.
Changes
=======
Version 2.0.0 (released 2024-12-03)
- fix: set_cookie needs a str
- fix: cookie_jar not in FlaskClient
- tests: update api usage of set_cookie
- fix: set_cookie needs a str
- chore: remove unused imports
- global: remove try except for jws
- setup: bump major dependencies
Version v1.5.0 (released 2024-12-02)
- global: make sentry-sdk optional
* Import-detects `sentry_sdk` so that we can remove the hard dependency.
Version 1.4.2 (release 2024-11-30)
- fix: no translation
Version 1.4.1 (release 2024-11-30)
- setup: change to reusable workflows
- setup: pin dependencies
Version 1.4.0 (released 2024-11-19)
- global: remove six usage
- global: use jws from invenio-base
- fix: forward compatibility with flask>=3.0
Version 1.3.1 (released 2024-07-17)
- csrf: improve token validation workflow
Version 1.3.0 (released 2023-10-17)
- Fixed sentry error id.
Version 1.2.8 (released 2022-01-13)
- Add support for ItsDangerous <2.1 (datetime aware/naive of date_signed)
Version 1.2.6 (released 2021-12-05)
- Add support for CSRF token rotation during a grace period to allow clients
transparently rotate the CSRF token without being prompted with CSRF errors.
Version 1.2.5 (released 2021-12-04)
- Fix issue with CSRF token being reset on every request.
Version 1.2.4 (released 2021-10-18)
- Support for Flask v2.0
Version 1.2.3 (released 2020-12-07)
- Fixes a bug with CSRF checking when the endpoint did not exist.
Version 1.2.2 (released 2020-09-27)
- Adds Cache-Control:'no-cache' header to 304 responses to
ensure that browsers will not cache responses client side
Version 1.2.1 (released 2020-05-08)
- The CSRF Middleware is now by default disabled.
- The ``CSRF_SECRET_SALT`` now defaults to ``invenio-csrf-token``.
- Added a new configuration variable: ``CSRF_FORCE_SECURE_REFERER``.
Version 1.2.0 (released 2020-03-10)
- Centralize dependency management via Invenio-Base.
Version 1.1.3 (released 2020-01-08)
- Set upper limit version of webargs, lower than 6.0.0.
Version 1.1.2 (released 2019-09-19)
- Bumps webargs to 5.5.0 (provides support for marshmallow 3).
Version 1.1.1 (released 2019-08-02)
- Bumps marshmallow to 2.15.2 (minimum required by webargs).
Version 1.1.0 (released 2019-07-31)
- Adds marshmallow 2 vs 3 compatibility functions.
Version 1.0.0 (released 2018-03-23)
- Initial public release.
Raw data
{
"_id": null,
"home_page": "https://github.com/inveniosoftware/invenio-rest",
"name": "invenio-rest",
"maintainer": null,
"docs_url": "https://pythonhosted.org/invenio-rest/",
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "invenio rest api module",
"author": "CERN",
"author_email": "info@inveniosoftware.org",
"download_url": "https://files.pythonhosted.org/packages/65/a7/dd9fb86746ead8a8cfa605bfb5608c76a445c0ea6d8a24636e71615c118f/invenio_rest-2.0.0.tar.gz",
"platform": "any",
"description": "..\n This file is part of Invenio.\n Copyright (C) 2015-2018 CERN.\n\n Invenio is free software; you can redistribute it and/or modify it\n under the terms of the MIT License; see LICENSE file for more details.\n\n==============\n Invenio-REST\n==============\n\n.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-rest.svg\n :target: https://github.com/inveniosoftware/invenio-rest/blob/master/LICENSE\n\n.. image:: https://github.com/inveniosoftware/invenio-rest/workflows/CI/badge.svg\n :target: https://github.com/inveniosoftware/invenio-rest/actions\n\n.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-rest.svg\n :target: https://coveralls.io/r/inveniosoftware/invenio-rest\n\n.. image:: https://img.shields.io/pypi/v/invenio-rest.svg\n :target: https://pypi.org/pypi/invenio-rest\n\nREST API module for Invenio.\n\nInvenio-REST takes care of installing basic error handling on a Flask API\napplication, as well as initializing Flask-CORS for Cross-Origin Resources\nSharing (not enabled by default).\n\nFurther documentation is available on\nhttps://invenio-rest.readthedocs.io/\n\n..\n This file is part of Invenio.\n Copyright (C) 2015-2020 CERN.\n Copyright (C) 2022 Northwestern University.\n Copyright (C) 2024 Graz University of Technology.\n\n Invenio is free software; you can redistribute it and/or modify it\n under the terms of the MIT License; see LICENSE file for more details.\n\nChanges\n=======\n\nVersion 2.0.0 (released 2024-12-03)\n\n- fix: set_cookie needs a str\n- fix: cookie_jar not in FlaskClient\n- tests: update api usage of set_cookie\n- fix: set_cookie needs a str\n- chore: remove unused imports\n- global: remove try except for jws\n- setup: bump major dependencies\n\nVersion v1.5.0 (released 2024-12-02)\n\n- global: make sentry-sdk optional\n * Import-detects `sentry_sdk` so that we can remove the hard dependency.\n\nVersion 1.4.2 (release 2024-11-30)\n\n- fix: no translation\n\nVersion 1.4.1 (release 2024-11-30)\n\n- setup: change to reusable workflows\n- setup: pin dependencies\n\nVersion 1.4.0 (released 2024-11-19)\n\n- global: remove six usage\n- global: use jws from invenio-base\n- fix: forward compatibility with flask>=3.0\n\nVersion 1.3.1 (released 2024-07-17)\n\n- csrf: improve token validation workflow\n\nVersion 1.3.0 (released 2023-10-17)\n\n- Fixed sentry error id.\n\nVersion 1.2.8 (released 2022-01-13)\n\n- Add support for ItsDangerous <2.1 (datetime aware/naive of date_signed)\n\nVersion 1.2.6 (released 2021-12-05)\n\n- Add support for CSRF token rotation during a grace period to allow clients\n transparently rotate the CSRF token without being prompted with CSRF errors.\n\nVersion 1.2.5 (released 2021-12-04)\n\n- Fix issue with CSRF token being reset on every request.\n\nVersion 1.2.4 (released 2021-10-18)\n\n- Support for Flask v2.0\n\nVersion 1.2.3 (released 2020-12-07)\n\n- Fixes a bug with CSRF checking when the endpoint did not exist.\n\nVersion 1.2.2 (released 2020-09-27)\n\n- Adds Cache-Control:'no-cache' header to 304 responses to\n ensure that browsers will not cache responses client side\n\nVersion 1.2.1 (released 2020-05-08)\n\n- The CSRF Middleware is now by default disabled.\n- The ``CSRF_SECRET_SALT`` now defaults to ``invenio-csrf-token``.\n- Added a new configuration variable: ``CSRF_FORCE_SECURE_REFERER``.\n\nVersion 1.2.0 (released 2020-03-10)\n\n- Centralize dependency management via Invenio-Base.\n\nVersion 1.1.3 (released 2020-01-08)\n\n- Set upper limit version of webargs, lower than 6.0.0.\n\nVersion 1.1.2 (released 2019-09-19)\n\n- Bumps webargs to 5.5.0 (provides support for marshmallow 3).\n\nVersion 1.1.1 (released 2019-08-02)\n\n- Bumps marshmallow to 2.15.2 (minimum required by webargs).\n\nVersion 1.1.0 (released 2019-07-31)\n\n- Adds marshmallow 2 vs 3 compatibility functions.\n\nVersion 1.0.0 (released 2018-03-23)\n\n- Initial public release.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "\"REST API module for Invenio.\"",
"version": "2.0.0",
"project_urls": {
"Homepage": "https://github.com/inveniosoftware/invenio-rest"
},
"split_keywords": [
"invenio",
"rest",
"api",
"module"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "b27c4941ed005f3f7d9216f50ceac5d75f06779a4b97e5675f7c25f50f6162da",
"md5": "1bb685809124edbbf6d7cf96714c3eb6",
"sha256": "4655f4385037b828f2c6784e1e00f148d0a4909b877b5d5b3154a56bd9a1e144"
},
"downloads": -1,
"filename": "invenio_rest-2.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1bb685809124edbbf6d7cf96714c3eb6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.7",
"size": 21484,
"upload_time": "2024-12-03T11:01:11",
"upload_time_iso_8601": "2024-12-03T11:01:11.189503Z",
"url": "https://files.pythonhosted.org/packages/b2/7c/4941ed005f3f7d9216f50ceac5d75f06779a4b97e5675f7c25f50f6162da/invenio_rest-2.0.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "65a7dd9fb86746ead8a8cfa605bfb5608c76a445c0ea6d8a24636e71615c118f",
"md5": "ef1dd5aeef322d40b1290793e46a4ef4",
"sha256": "8f705f9e7452b82f52383f6de5739da3a361f55db3467391884857b7aa3ed6be"
},
"downloads": -1,
"filename": "invenio_rest-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "ef1dd5aeef322d40b1290793e46a4ef4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 37047,
"upload_time": "2024-12-03T11:01:12",
"upload_time_iso_8601": "2024-12-03T11:01:12.260609Z",
"url": "https://files.pythonhosted.org/packages/65/a7/dd9fb86746ead8a8cfa605bfb5608c76a445c0ea6d8a24636e71615c118f/invenio_rest-2.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-03 11:01:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "inveniosoftware",
"github_project": "invenio-rest",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "invenio-rest"
}