invenio-checks


Nameinvenio-checks JSON
Version 0.6.2 PyPI version JSON
download
home_pagehttps://github.com/inveniosoftware/invenio-checks
SummaryInvenio module to automated curation checks on records.
upload_time2025-07-14 20:32:50
maintainerNone
docs_urlNone
authorCERN
requires_python>=3.9
licenseMIT
keywords invenio rdm checks
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ..
    Copyright (C) 2025 CERN.

    Invenio-Checks 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-Checks
================

.. image:: https://github.com/inveniosoftware/invenio-checks/workflows/CI/badge.svg
        :target: https://github.com/inveniosoftware/invenio-checks/actions?query=workflow%3ACI

.. image:: https://img.shields.io/github/tag/inveniosoftware/invenio-checks.svg
        :target: https://github.com/inveniosoftware/invenio-checks/releases

.. image:: https://img.shields.io/pypi/dm/invenio-checks.svg
        :target: https://pypi.python.org/pypi/invenio-checks

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

Invenio module to automated curation checks on records.

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

..
    Copyright (C) 2025 CERN.

    Invenio-Checks 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 v0.6.2 (released 2025-07-14)

- chores: replaced importlib_xyz with importlib

Version v0.6.1 (released 2025-06-24)

- fix: components: fix feature flag application to direct methods only

Version v0.6.0 (released 2025-06-23)

- components: handle error-severity results on publish and draft review submit
- components: refactor feature flag application

Version v0.5.0 (released 2025-06-12)

- models: add index on `CheckRun.record_id`
- requests-ui: add warning in checks tab when there is a draft
- requests-ui: fix checks scoping in Jinja templates
- api: refactor checks lifecycle management
    * Hook-in to all draft lifecycle methods (publish, edit, discard, etc.).
    * Check runs now depend on either existing communities the record/drafts
      is included in, or from community requests having properly initialized
      them.

Version v0.4.0 (released 2025-06-05)

- installation: bump communities and draft-resources
- component: fetch parent community for inclusion requests
- component: improve communities fetching
- alembic: recipes
- models: add missing timestamp columns to CheckConfig

Version v0.3.1 (released 2025-05-20)

- requests-ui: handle multiple check runs of same type
    * Handles rendering of multiple check run results for the metadata
      check type.
    * Uses the first instance of file format checks.

Version v0.3.0 (released 2025-05-16)

- contrib: implement file formats check for open and scientific file formats
- global: pass CheckConfig object when running checks
    * Instead of just passing the `CheckConfig.params` when running a check,
      we now pass the entire object, since the check might want to use other
      fields (e.g. the `CheckConfig.severity`).
- global: move metadata checks to "contrib" directory

Version v0.2.2 (released 2025-03-28)

- views: explanation text in checks requests tab

Version v0.2.1 (released 2025-03-26)

- component: fix null constraint on CheckRun.state

Version v0.2.0 (released 2025-03-26)

- views: checks requests tab templates
- views: register blueprint
- component: use datetime.now with timezone.utc
- services: allow HTML links in description (SanitizedHTML)
- models: use JSONB for PostgreSQL
- ci: use `master` branch of PyPI publish

Version 0.1.0 (2025-03-21)

- Initial public release.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/inveniosoftware/invenio-checks",
    "name": "invenio-checks",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "invenio rdm checks",
    "author": "CERN",
    "author_email": "info@inveniosoftware.org",
    "download_url": "https://files.pythonhosted.org/packages/03/75/dce5ce97c55074f296e31e7e776994c631b505e5c183c9329e3f44db7d33/invenio_checks-0.6.2.tar.gz",
    "platform": "any",
    "description": "..\n    Copyright (C) 2025 CERN.\n\n    Invenio-Checks is free software; you can redistribute it and/or modify\n    it under the terms of the MIT License; see LICENSE file for more details.\n\n================\n Invenio-Checks\n================\n\n.. image:: https://github.com/inveniosoftware/invenio-checks/workflows/CI/badge.svg\n        :target: https://github.com/inveniosoftware/invenio-checks/actions?query=workflow%3ACI\n\n.. image:: https://img.shields.io/github/tag/inveniosoftware/invenio-checks.svg\n        :target: https://github.com/inveniosoftware/invenio-checks/releases\n\n.. image:: https://img.shields.io/pypi/dm/invenio-checks.svg\n        :target: https://pypi.python.org/pypi/invenio-checks\n\n.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-checks.svg\n        :target: https://github.com/inveniosoftware/invenio-checks/blob/master/LICENSE\n\nInvenio module to automated curation checks on records.\n\nFurther documentation is available on\nhttps://invenio-checks.readthedocs.io/\n\n..\n    Copyright (C) 2025 CERN.\n\n    Invenio-Checks is free software; you can redistribute it and/or modify\n    it under the terms of the MIT License; see LICENSE file for more details.\n\nChanges\n=======\n\nVersion v0.6.2 (released 2025-07-14)\n\n- chores: replaced importlib_xyz with importlib\n\nVersion v0.6.1 (released 2025-06-24)\n\n- fix: components: fix feature flag application to direct methods only\n\nVersion v0.6.0 (released 2025-06-23)\n\n- components: handle error-severity results on publish and draft review submit\n- components: refactor feature flag application\n\nVersion v0.5.0 (released 2025-06-12)\n\n- models: add index on `CheckRun.record_id`\n- requests-ui: add warning in checks tab when there is a draft\n- requests-ui: fix checks scoping in Jinja templates\n- api: refactor checks lifecycle management\n    * Hook-in to all draft lifecycle methods (publish, edit, discard, etc.).\n    * Check runs now depend on either existing communities the record/drafts\n      is included in, or from community requests having properly initialized\n      them.\n\nVersion v0.4.0 (released 2025-06-05)\n\n- installation: bump communities and draft-resources\n- component: fetch parent community for inclusion requests\n- component: improve communities fetching\n- alembic: recipes\n- models: add missing timestamp columns to CheckConfig\n\nVersion v0.3.1 (released 2025-05-20)\n\n- requests-ui: handle multiple check runs of same type\n    * Handles rendering of multiple check run results for the metadata\n      check type.\n    * Uses the first instance of file format checks.\n\nVersion v0.3.0 (released 2025-05-16)\n\n- contrib: implement file formats check for open and scientific file formats\n- global: pass CheckConfig object when running checks\n    * Instead of just passing the `CheckConfig.params` when running a check,\n      we now pass the entire object, since the check might want to use other\n      fields (e.g. the `CheckConfig.severity`).\n- global: move metadata checks to \"contrib\" directory\n\nVersion v0.2.2 (released 2025-03-28)\n\n- views: explanation text in checks requests tab\n\nVersion v0.2.1 (released 2025-03-26)\n\n- component: fix null constraint on CheckRun.state\n\nVersion v0.2.0 (released 2025-03-26)\n\n- views: checks requests tab templates\n- views: register blueprint\n- component: use datetime.now with timezone.utc\n- services: allow HTML links in description (SanitizedHTML)\n- models: use JSONB for PostgreSQL\n- ci: use `master` branch of PyPI publish\n\nVersion 0.1.0 (2025-03-21)\n\n- Initial public release.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Invenio module to automated curation checks on records.",
    "version": "0.6.2",
    "project_urls": {
        "Homepage": "https://github.com/inveniosoftware/invenio-checks"
    },
    "split_keywords": [
        "invenio",
        "rdm",
        "checks"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53841365fd1f88d6e90b3587a7f6f32d06b112ec1b0104734589099f9a20565e",
                "md5": "9202b13f98db7ba4a7eb9756449022d9",
                "sha256": "e516faba61979a921215dfbb6e7e1872acbd8e87e7cf0d95285552dff766107d"
            },
            "downloads": -1,
            "filename": "invenio_checks-0.6.2-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9202b13f98db7ba4a7eb9756449022d9",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.9",
            "size": 34016,
            "upload_time": "2025-07-14T20:32:49",
            "upload_time_iso_8601": "2025-07-14T20:32:49.851431Z",
            "url": "https://files.pythonhosted.org/packages/53/84/1365fd1f88d6e90b3587a7f6f32d06b112ec1b0104734589099f9a20565e/invenio_checks-0.6.2-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0375dce5ce97c55074f296e31e7e776994c631b505e5c183c9329e3f44db7d33",
                "md5": "d69dece66eeb93ddec6959e6476c7cdb",
                "sha256": "4485b57b98aca0c0d4df2e559907fd4a06e5617991782a3fad9aec0311d202f1"
            },
            "downloads": -1,
            "filename": "invenio_checks-0.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "d69dece66eeb93ddec6959e6476c7cdb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 42489,
            "upload_time": "2025-07-14T20:32:50",
            "upload_time_iso_8601": "2025-07-14T20:32:50.680100Z",
            "url": "https://files.pythonhosted.org/packages/03/75/dce5ce97c55074f296e31e7e776994c631b505e5c183c9329e3f44db7d33/invenio_checks-0.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-14 20:32:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "inveniosoftware",
    "github_project": "invenio-checks",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "invenio-checks"
}
        
Elapsed time: 0.41830s