Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This file is part of Invenio.
Copyright (C) 2016-2024 CERN.
Copyright (C) 2025 Graz University of Technology.
Copyright (C) 2025 KTH Royal Institute 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.
Expand All @@ -10,6 +11,12 @@
Changes
=======

Version 13.1.1 (released 2025-05-06)

- dependencies: update axios to version 1.8.2
- installation: add records-resources to requirements
- tests: disable warnings entirely in logs

Version 13.1.0 (released 2025-04-29)

- i18n: pulled translations
Expand Down
3 changes: 2 additions & 1 deletion invenio_communities/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# This file is part of Invenio.
# Copyright (C) 2016-2024 CERN.
# Copyright (C) 2024-2025 Graz University of Technology.
# Copyright (C) 2025 KTH Royal Institute 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.
Expand All @@ -12,6 +13,6 @@
from .ext import InvenioCommunities
from .proxies import current_communities

__version__ = "13.1.0"
__version__ = "13.1.1"

__all__ = ("InvenioCommunities", "current_communities")
5 changes: 3 additions & 2 deletions invenio_communities/webpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
#
# This file is part of Invenio.
# Copyright (C) 2016-2022 CERN.
# Copyright (C) 2025 KTH Royal Institute 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.

"""JS/CSS bundles for communities.

You include one of the bundles in a page like the example below (using
``comunities`` bundle as an example):
``communities`` bundle as an example):

.. code-block:: html

Expand Down Expand Up @@ -47,7 +48,7 @@
"@semantic-ui-react/css-patch": "^1.0.0",
"react-router-dom": "^6.3.0",
"react-invenio-forms": "^3.0.0",
"axios": "^0.21.0",
"axios": "^1.8.2",
"formik": "^2.1.0",
"i18next": "^20.3.0",
"@tinymce/tinymce-react": "^4.3.0",
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ install_requires =
invenio-search-ui>=2.4.0,<3.0.0
invenio-vocabularies>=3.0.0,<4.0.0
invenio-administration>=2.0.0,<3.0.0
invenio-records-resources>=5.10.0,<6.0.0

[options.extras_require]
tests =
Expand Down Expand Up @@ -134,4 +135,4 @@ ignore =
*-requirements.txt

[tool:pytest]
addopts = --black --isort --pydocstyle --ignore=docs --doctest-glob="*.rst" --doctest-modules --cov=invenio_communities --cov-report=term-missing
addopts = -p no:warnings --black --isort --pydocstyle --ignore=docs --doctest-glob="*.rst" --doctest-modules --cov=invenio_communities --cov-report=term-missing
Loading