Metadata-Version: 2.1
Name: invenio-app
Version: 1.2.2
Summary: WSGI, Celery and CLI applications for Invenio flavours.
Home-page: https://github.com/inveniosoftware/invenio-app
Author: CERN
Author-email: info@inveniosoftware.org
License: MIT
Keywords: invenio applications
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Development Status :: 5 - Production/Stable
Requires-Dist: flask-celeryext (>=0.2.2)
Requires-Dist: flask-limiter (>=1.0.1)
Requires-Dist: flask-shell-ipython (>=0.3.1)
Requires-Dist: flask-talisman (<0.5.1,>=0.3.2)
Requires-Dist: invenio-base (>=1.1.0)
Requires-Dist: invenio-cache (>=1.0.0)
Requires-Dist: invenio-config (>=1.0.0)
Provides-Extra: all
Requires-Dist: Sphinx (>=1.8.0) ; extra == 'all'
Requires-Dist: check-manifest (>=0.25) ; extra == 'all'
Requires-Dist: coverage (>=4.5.3) ; extra == 'all'
Requires-Dist: isort (>=4.3.21) ; extra == 'all'
Requires-Dist: pydocstyle (>=3.0.0) ; extra == 'all'
Requires-Dist: pytest-cov (>=2.7.1) ; extra == 'all'
Requires-Dist: pytest-pep8 (>=1.0.6) ; extra == 'all'
Requires-Dist: pytest (<5.0.0,>=4.6.4) ; extra == 'all'
Requires-Dist: redis (>=2.10.5) ; extra == 'all'
Requires-Dist: mock (>=2.0.0) ; extra == 'all'
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.8.0) ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: check-manifest (>=0.25) ; extra == 'tests'
Requires-Dist: coverage (>=4.5.3) ; extra == 'tests'
Requires-Dist: isort (>=4.3.21) ; extra == 'tests'
Requires-Dist: pydocstyle (>=3.0.0) ; extra == 'tests'
Requires-Dist: pytest-cov (>=2.7.1) ; extra == 'tests'
Requires-Dist: pytest-pep8 (>=1.0.6) ; extra == 'tests'
Requires-Dist: pytest (<5.0.0,>=4.6.4) ; extra == 'tests'
Requires-Dist: redis (>=2.10.5) ; extra == 'tests'
Requires-Dist: mock (>=2.0.0) ; extra == 'tests'

..
    This file is part of Invenio.
    Copyright (C) 2017-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-App
=============

.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-app.svg
        :target: https://github.com/inveniosoftware/invenio-app/blob/master/LICENSE

.. image:: https://img.shields.io/travis/inveniosoftware/invenio-app.svg
        :target: https://travis-ci.org/inveniosoftware/invenio-app

.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-app.svg
        :target: https://coveralls.io/r/inveniosoftware/invenio-app

.. image:: https://img.shields.io/pypi/v/invenio-app.svg
        :target: https://pypi.org/pypi/invenio-app

WSGI, Celery and CLI applications for Invenio flavours.

Further documentation is available on
https://invenio-app.readthedocs.io/


..
    This file is part of Invenio.
    Copyright (C) 2017-2019 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.

Changes
=======

Version 1.2.2 (released 2019-08-29)

- Unpins Invenio packages versions.

Version 1.2.1 (released 2019-08-21)

- Exempts the "/ping" view from rate limiting.

Version 1.2.0 (released 2019-07-29)

- Fixes issue with instance_path and static_folder being globals. Depends on
  change in Invenio-Base v1.1.0

- Improves rate limiting function to have limits per guest and per
  authenticated users.

Version 1.1.1 (released 2019-07-15)

- Fixes a security issue where APP_ALLOWED_HOSTS was not always being checked,
  and thus could allow host header injection attacks.

  NOTE: you should never route requests to your application with a wrong host
  header. The APP_ALLOWED_HOSTS exists as an extra protective measure, because
  it is easy to misconfigure your web server.

  The root cause was that Werkzeug's trusted host feature only works when
  request.host is being evaluated. This means that for instance when only
  url_for (part of the routing system) is used, then the host header check is
  not performed.

Version 1.1.0 (released 2018-12-14)

- The Flask-DebugToolbar extension is now automatically registered if
  installed.

Version 1.0.5 (released 2018-12-05)

- Add health check view

- Fix response headers assertion in tests

Version 1.0.4 (released 2018-10-11)

- Fix Content Security Policy headers when set empty in DEBUG mode.

Version 1.0.3 (released 2018-10-08)

- Fix Content Security Policy headers when running in DEBUG mode.

Version 1.0.2 (released 2018-08-24)

- Allows use of Flask-DebugToolbar when running in DEBUG mode.

Version 1.0.1 (released 2018-06-29)

- Pin Flask-Talisman.

Version 1.0.0 (released 2018-03-23)

- Initial public release.


