invenio-rest


Nameinvenio-rest JSON
Version 1.4.0 PyPI version JSON
download
home_pagehttps://github.com/inveniosoftware/invenio-rest
Summary"REST API module for Invenio."
upload_time2024-11-19 09:31:44
maintainerNone
docs_urlhttps://pythonhosted.org/invenio-rest/
authorCERN
requires_python>=3.7
licenseMIT
keywords invenio rest api module
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ..
    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.

    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 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/a6/08/ea2dda593099445a8491ecfade64896cec2f7589da75959cec1dac5d1ea8/invenio-rest-1.4.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\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 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\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "\"REST API module for Invenio.\"",
    "version": "1.4.0",
    "project_urls": {
        "Homepage": "https://github.com/inveniosoftware/invenio-rest"
    },
    "split_keywords": [
        "invenio",
        "rest",
        "api",
        "module"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afd7d9d702f5f5152261ccadb42be828d2d2e3666c0791a759c6c83b183b3e28",
                "md5": "86a11367cffeb8ef784de486fce5ea4d",
                "sha256": "b7b9b9811695f4b754ba128c9be8a98afecb4d9b94c7911411aa1b34a3e99546"
            },
            "downloads": -1,
            "filename": "invenio_rest-1.4.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "86a11367cffeb8ef784de486fce5ea4d",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 21247,
            "upload_time": "2024-11-19T09:31:43",
            "upload_time_iso_8601": "2024-11-19T09:31:43.234098Z",
            "url": "https://files.pythonhosted.org/packages/af/d7/d9d702f5f5152261ccadb42be828d2d2e3666c0791a759c6c83b183b3e28/invenio_rest-1.4.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a608ea2dda593099445a8491ecfade64896cec2f7589da75959cec1dac5d1ea8",
                "md5": "8a4848b79704b9813d2a9b24c88c8e9e",
                "sha256": "ce4182c1cdda6e2336399f43b792a2946d930ced80343552775b58b5b1318370"
            },
            "downloads": -1,
            "filename": "invenio-rest-1.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8a4848b79704b9813d2a9b24c88c8e9e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 35043,
            "upload_time": "2024-11-19T09:31:44",
            "upload_time_iso_8601": "2024-11-19T09:31:44.844901Z",
            "url": "https://files.pythonhosted.org/packages/a6/08/ea2dda593099445a8491ecfade64896cec2f7589da75959cec1dac5d1ea8/invenio-rest-1.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-19 09:31:44",
    "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"
}
        
Elapsed time: 0.55742s