invenio-vocabularies 2.3.1__py2.py3-none-any.whl → 6.3.1__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of invenio-vocabularies might be problematic. Click here for more details.
- invenio_vocabularies/__init__.py +2 -2
- invenio_vocabularies/administration/__init__.py +10 -0
- invenio_vocabularies/administration/views/__init__.py +10 -0
- invenio_vocabularies/administration/views/vocabularies.py +45 -0
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/package.json +1 -7
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/CustomAwardForm.js +80 -64
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingField.js +49 -41
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/FundingModal.js +5 -7
- invenio_vocabularies/assets/semantic-ui/js/invenio_vocabularies/src/contrib/forms/Funding/NoAwardResults.js +3 -3
- invenio_vocabularies/cli.py +31 -44
- invenio_vocabularies/config.py +68 -4
- invenio_vocabularies/contrib/affiliations/affiliations.py +11 -0
- invenio_vocabularies/contrib/affiliations/api.py +1 -2
- invenio_vocabularies/contrib/affiliations/config.py +13 -2
- invenio_vocabularies/contrib/affiliations/datastreams.py +186 -0
- invenio_vocabularies/contrib/affiliations/jsonschemas/affiliations/affiliation-v1.0.0.json +38 -1
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/affiliations/mappings/os-v1/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/affiliations/mappings/os-v2/affiliations/affiliation-v2.0.0.json +171 -0
- invenio_vocabularies/contrib/affiliations/mappings/v7/affiliations/affiliation-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/affiliations/schema.py +17 -3
- invenio_vocabularies/contrib/affiliations/services.py +1 -2
- invenio_vocabularies/contrib/awards/awards.py +17 -5
- invenio_vocabularies/contrib/awards/datastreams.py +241 -7
- invenio_vocabularies/contrib/awards/jsonschemas/awards/award-v1.0.0.json +38 -0
- invenio_vocabularies/contrib/awards/mappings/os-v1/awards/award-v1.0.0.json +51 -2
- invenio_vocabularies/contrib/awards/mappings/os-v2/awards/award-v1.0.0.json +51 -2
- invenio_vocabularies/contrib/awards/mappings/v7/awards/award-v1.0.0.json +51 -2
- invenio_vocabularies/contrib/awards/schema.py +16 -1
- invenio_vocabularies/contrib/awards/serializer.py +8 -1
- invenio_vocabularies/contrib/awards/services.py +1 -2
- invenio_vocabularies/contrib/common/__init__.py +9 -0
- invenio_vocabularies/contrib/common/openaire/__init__.py +9 -0
- invenio_vocabularies/contrib/common/openaire/datastreams.py +84 -0
- invenio_vocabularies/contrib/common/ror/__init__.py +9 -0
- invenio_vocabularies/contrib/common/ror/datastreams.py +220 -0
- invenio_vocabularies/contrib/funders/config.py +11 -2
- invenio_vocabularies/contrib/funders/datastreams.py +40 -62
- invenio_vocabularies/contrib/funders/funders.py +3 -1
- invenio_vocabularies/contrib/funders/jsonschemas/funders/funder-v1.0.0.json +36 -1
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/funders/mappings/os-v1/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/funders/mappings/os-v2/funders/funder-v2.0.0.json +156 -0
- invenio_vocabularies/contrib/funders/mappings/v7/funders/funder-v1.0.0.json +22 -1
- invenio_vocabularies/contrib/funders/schema.py +8 -0
- invenio_vocabularies/contrib/funders/serializer.py +2 -1
- invenio_vocabularies/contrib/names/config.py +5 -3
- invenio_vocabularies/contrib/names/datastreams.py +172 -4
- invenio_vocabularies/contrib/names/jsonschemas/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/mappings/os-v1/names/name-v2.0.0.json +150 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/mappings/os-v2/names/name-v2.0.0.json +150 -0
- invenio_vocabularies/contrib/names/mappings/v7/names/name-v1.0.0.json +3 -0
- invenio_vocabularies/contrib/names/names.py +15 -3
- invenio_vocabularies/contrib/names/permissions.py +20 -0
- invenio_vocabularies/contrib/names/s3client.py +44 -0
- invenio_vocabularies/contrib/names/schema.py +14 -0
- invenio_vocabularies/contrib/subjects/config.py +9 -3
- invenio_vocabularies/contrib/subjects/datastreams.py +61 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/euroscivoc/datastreams.py +171 -0
- invenio_vocabularies/contrib/subjects/jsonschemas/subjects/subject-v1.0.0.json +31 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v1/subjects/subject-v1.0.0.json +35 -0
- invenio_vocabularies/contrib/subjects/mappings/os-v2/subjects/subject-v1.0.0.json +35 -0
- invenio_vocabularies/contrib/subjects/mappings/v7/subjects/subject-v1.0.0.json +35 -0
- invenio_vocabularies/contrib/subjects/mesh/__init__.py +9 -0
- invenio_vocabularies/contrib/subjects/mesh/datastreams.py +43 -0
- invenio_vocabularies/contrib/subjects/schema.py +47 -5
- invenio_vocabularies/contrib/subjects/subjects.py +10 -0
- invenio_vocabularies/datastreams/datastreams.py +61 -13
- invenio_vocabularies/datastreams/factories.py +1 -2
- invenio_vocabularies/datastreams/readers.py +138 -29
- invenio_vocabularies/datastreams/tasks.py +37 -0
- invenio_vocabularies/datastreams/transformers.py +17 -27
- invenio_vocabularies/datastreams/writers.py +116 -14
- invenio_vocabularies/datastreams/xml.py +34 -0
- invenio_vocabularies/ext.py +59 -5
- invenio_vocabularies/factories.py +137 -0
- invenio_vocabularies/jobs.py +133 -0
- invenio_vocabularies/proxies.py +2 -2
- invenio_vocabularies/records/jsonschemas/vocabularies/definitions-v1.0.0.json +7 -0
- invenio_vocabularies/records/jsonschemas/vocabularies/vocabulary-v1.0.0.json +1 -4
- invenio_vocabularies/records/mappings/os-v1/vocabularies/vocabulary-v1.0.0.json +3 -3
- invenio_vocabularies/records/mappings/os-v2/vocabularies/vocabulary-v1.0.0.json +3 -3
- invenio_vocabularies/records/mappings/v7/vocabularies/vocabulary-v1.0.0.json +3 -3
- invenio_vocabularies/records/models.py +2 -4
- invenio_vocabularies/records/pidprovider.py +1 -2
- invenio_vocabularies/records/systemfields/relations.py +2 -2
- invenio_vocabularies/resources/__init__.py +9 -1
- invenio_vocabularies/resources/config.py +105 -0
- invenio_vocabularies/resources/resource.py +31 -41
- invenio_vocabularies/resources/schema.py +2 -1
- invenio_vocabularies/services/__init__.py +5 -2
- invenio_vocabularies/services/config.py +179 -0
- invenio_vocabularies/services/custom_fields/__init__.py +6 -2
- invenio_vocabularies/services/custom_fields/subject.py +82 -0
- invenio_vocabularies/services/custom_fields/vocabulary.py +5 -3
- invenio_vocabularies/services/permissions.py +3 -1
- invenio_vocabularies/services/results.py +110 -0
- invenio_vocabularies/services/schema.py +11 -2
- invenio_vocabularies/services/service.py +46 -94
- invenio_vocabularies/services/tasks.py +1 -1
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/subjects.html +23 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabularies-list.html +12 -0
- invenio_vocabularies/templates/semantic-ui/invenio_vocabularies/vocabulary-details.html +71 -0
- invenio_vocabularies/translations/af/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ar/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/bg/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ca/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/cs/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/da/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/de/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/de_AT/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/de_DE/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/el/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/en/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/en_AT/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/en_HU/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/es/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/es_CU/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/es_MX/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/et/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/et_EE/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fa/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fa_IR/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fr_CI/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/fr_FR/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/gl/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hi_IN/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hu/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/hu_HU/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/it/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ja/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ka/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/lt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/messages.pot +95 -48
- invenio_vocabularies/translations/ne/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/no/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pl/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/pt/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ro/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/ru/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/rw/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sv/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/sv_SE/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/tr/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/uk/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/uk_UA/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
- invenio_vocabularies/views.py +12 -26
- invenio_vocabularies/webpack.py +3 -3
- {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/METADATA +150 -6
- {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/RECORD +165 -132
- {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/WHEEL +1 -1
- {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/entry_points.txt +17 -0
- {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/AUTHORS.rst +0 -0
- {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/LICENSE +0 -0
- {invenio_vocabularies-2.3.1.dist-info → invenio_vocabularies-6.3.1.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
invenio_vocabularies/views.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2020-
|
|
3
|
+
# Copyright (C) 2020-2024 CERN.
|
|
4
|
+
# Copyright (C) 2023 Graz University of Technology.
|
|
4
5
|
#
|
|
5
6
|
# Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
6
7
|
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
@@ -10,31 +11,9 @@
|
|
|
10
11
|
|
|
11
12
|
from flask import Blueprint
|
|
12
13
|
|
|
13
|
-
blueprint = Blueprint(
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
@blueprint.record_once
|
|
17
|
-
def init(state):
|
|
18
|
-
"""Init app."""
|
|
19
|
-
app = state.app
|
|
20
|
-
# Register services - cannot be done in extension because
|
|
21
|
-
# Invenio-Records-Resources might not have been initialized.
|
|
22
|
-
sregistry = app.extensions["invenio-records-resources"].registry
|
|
23
|
-
ext = app.extensions["invenio-vocabularies"]
|
|
24
|
-
sregistry.register(ext.affiliations_service, service_id="affiliations")
|
|
25
|
-
sregistry.register(ext.awards_service, service_id="awards")
|
|
26
|
-
sregistry.register(ext.funders_service, service_id="funders")
|
|
27
|
-
sregistry.register(ext.names_service, service_id="names")
|
|
28
|
-
sregistry.register(ext.subjects_service, service_id="subjects")
|
|
29
|
-
sregistry.register(ext.service, service_id="vocabularies")
|
|
30
|
-
# Register indexers
|
|
31
|
-
iregistry = app.extensions["invenio-indexer"].registry
|
|
32
|
-
iregistry.register(ext.affiliations_service.indexer, indexer_id="affiliations")
|
|
33
|
-
iregistry.register(ext.awards_service.indexer, indexer_id="awards")
|
|
34
|
-
iregistry.register(ext.funders_service.indexer, indexer_id="funders")
|
|
35
|
-
iregistry.register(ext.names_service.indexer, indexer_id="names")
|
|
36
|
-
iregistry.register(ext.subjects_service.indexer, indexer_id="subjects")
|
|
37
|
-
iregistry.register(ext.service.indexer, indexer_id="vocabularies")
|
|
14
|
+
blueprint = Blueprint(
|
|
15
|
+
"invenio_vocabularies_ext", __name__, template_folder="./templates"
|
|
16
|
+
)
|
|
38
17
|
|
|
39
18
|
|
|
40
19
|
def create_blueprint_from_app(app):
|
|
@@ -65,3 +44,10 @@ def create_names_blueprint_from_app(app):
|
|
|
65
44
|
def create_subjects_blueprint_from_app(app):
|
|
66
45
|
"""Create app blueprint."""
|
|
67
46
|
return app.extensions["invenio-vocabularies"].subjects_resource.as_blueprint()
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def create_list_blueprint_from_app(app):
|
|
50
|
+
"""Create app blueprint."""
|
|
51
|
+
return app.extensions[
|
|
52
|
+
"invenio-vocabularies"
|
|
53
|
+
].vocabulary_admin_resource.as_blueprint()
|
invenio_vocabularies/webpack.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2019-
|
|
3
|
+
# Copyright (C) 2019-2024 CERN.
|
|
4
4
|
# Copyright (C) 2019-2022 Northwestern University.
|
|
5
5
|
# Copyright (C) 2022 TU Wien.
|
|
6
6
|
# Copyright (C) 2022 Graz University of Technology.
|
|
@@ -34,8 +34,8 @@ theme = WebpackThemeBundle(
|
|
|
34
34
|
"react-dnd-html5-backend": "^11.1.0",
|
|
35
35
|
"react-dropzone": "^11.0.0",
|
|
36
36
|
"react-i18next": "^11.11.0",
|
|
37
|
-
"react-invenio-forms": "^
|
|
38
|
-
"react-searchkit": "^
|
|
37
|
+
"react-invenio-forms": "^4.0.0",
|
|
38
|
+
"react-searchkit": "^3.0.0",
|
|
39
39
|
"yup": "^0.32.0",
|
|
40
40
|
},
|
|
41
41
|
aliases={
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: invenio-vocabularies
|
|
3
|
-
Version:
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 6.3.1
|
|
4
|
+
Summary: Invenio module for managing vocabularies.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-vocabularies
|
|
6
6
|
Author: CERN
|
|
7
7
|
Author-email: info@inveniosoftware.org
|
|
@@ -11,22 +11,31 @@ Platform: any
|
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Requires-Python: >=3.7
|
|
13
13
|
Requires-Dist: invenio-i18n <3.0.0,>=2.0.0
|
|
14
|
-
Requires-Dist: invenio-records-resources <
|
|
14
|
+
Requires-Dist: invenio-records-resources <7.0.0,>=6.0.0
|
|
15
|
+
Requires-Dist: invenio-administration <3.0.0,>=2.0.0
|
|
16
|
+
Requires-Dist: invenio-jobs <2.0.0,>=1.0.0
|
|
15
17
|
Requires-Dist: lxml >=4.5.0
|
|
16
18
|
Requires-Dist: PyYAML >=5.4.1
|
|
19
|
+
Requires-Dist: regex >=2024.7.24
|
|
20
|
+
Requires-Dist: rdflib >=7.0.0
|
|
17
21
|
Provides-Extra: elasticsearch7
|
|
18
22
|
Requires-Dist: invenio-search[elasticsearch7] <3.0.0,>=2.1.0 ; extra == 'elasticsearch7'
|
|
19
23
|
Provides-Extra: mysql
|
|
24
|
+
Provides-Extra: oaipmh
|
|
25
|
+
Requires-Dist: invenio-oaipmh-scythe >=0.13.0 ; extra == 'oaipmh'
|
|
20
26
|
Provides-Extra: opensearch1
|
|
21
27
|
Requires-Dist: invenio-search[opensearch1] <3.0.0,>=2.1.0 ; extra == 'opensearch1'
|
|
22
28
|
Provides-Extra: opensearch2
|
|
23
29
|
Requires-Dist: invenio-search[opensearch2] <3.0.0,>=2.1.0 ; extra == 'opensearch2'
|
|
24
30
|
Provides-Extra: postgresql
|
|
31
|
+
Provides-Extra: s3fs
|
|
32
|
+
Requires-Dist: s3fs >=2024.6.1 ; extra == 's3fs'
|
|
25
33
|
Provides-Extra: sqlite
|
|
26
34
|
Provides-Extra: tests
|
|
27
|
-
Requires-Dist: pytest-black >=0.
|
|
28
|
-
Requires-Dist: invenio-app <2.0.0,>=1.
|
|
35
|
+
Requires-Dist: pytest-black-ng >=0.4.0 ; extra == 'tests'
|
|
36
|
+
Requires-Dist: invenio-app <2.0.0,>=1.4.0 ; extra == 'tests'
|
|
29
37
|
Requires-Dist: invenio-db[mysql,postgresql] <2.0.0,>=1.0.14 ; extra == 'tests'
|
|
38
|
+
Requires-Dist: pytest-httpserver >=1.0.10 ; extra == 'tests'
|
|
30
39
|
Requires-Dist: pytest-invenio <3.0.0,>=2.1.0 ; extra == 'tests'
|
|
31
40
|
Requires-Dist: Sphinx >=4.5 ; extra == 'tests'
|
|
32
41
|
|
|
@@ -65,7 +74,7 @@ Further documentation is available on
|
|
|
65
74
|
https://invenio-vocabularies.readthedocs.io/
|
|
66
75
|
|
|
67
76
|
..
|
|
68
|
-
Copyright (C) 2020-
|
|
77
|
+
Copyright (C) 2020-2024 CERN.
|
|
69
78
|
|
|
70
79
|
Invenio-Vocabularies is free software; you can redistribute it and/or
|
|
71
80
|
modify it under the terms of the MIT License; see LICENSE file for more
|
|
@@ -74,6 +83,141 @@ https://invenio-vocabularies.readthedocs.io/
|
|
|
74
83
|
Changes
|
|
75
84
|
=======
|
|
76
85
|
|
|
86
|
+
Version v6.3.1 (released 2024-10-11)
|
|
87
|
+
|
|
88
|
+
- jobs: pass since as string to task
|
|
89
|
+
|
|
90
|
+
Version v6.3.0 (released 2024-10-11)
|
|
91
|
+
|
|
92
|
+
- awards: get program from CORDIS
|
|
93
|
+
- fix: add 'en' title if missing ROR
|
|
94
|
+
- fix: since not passed to args
|
|
95
|
+
- jobs: add process funders job
|
|
96
|
+
|
|
97
|
+
Version v6.2.1 (released 2024-10-10)
|
|
98
|
+
|
|
99
|
+
- webpack: bump react-searchkit due to axios upgrade
|
|
100
|
+
|
|
101
|
+
Version v6.2.0 (released 2024-10-10)
|
|
102
|
+
|
|
103
|
+
- tests: update axios version (needed only for local js tests)
|
|
104
|
+
|
|
105
|
+
Version v6.1.0 (released 2024-10-10)
|
|
106
|
+
|
|
107
|
+
- jobs: define invenio job wrapper for ROR affiliation data stream
|
|
108
|
+
- awards: remove subj props from jsonschema
|
|
109
|
+
|
|
110
|
+
Version v6.0.0 (released 2024-10-03)
|
|
111
|
+
|
|
112
|
+
- datastreams: writers: add option to not insert
|
|
113
|
+
- subjects: added euroscivoc datastream
|
|
114
|
+
- affiliations: OpenAIRE transformer and writer adding PIC identifier
|
|
115
|
+
- awards: added subjects and participating organizations from CORDIS datastreams
|
|
116
|
+
- names: add permission check to names search
|
|
117
|
+
|
|
118
|
+
Version v5.1.0 (released 2024-09-25)
|
|
119
|
+
|
|
120
|
+
- funders: tune search boost for acronyms
|
|
121
|
+
* Add and `acronym.keyword` field to the funders mapping.
|
|
122
|
+
* Apply to funders the same field boosting as in affiliations.
|
|
123
|
+
|
|
124
|
+
Version v5.0.3 (released 2024-09-06)
|
|
125
|
+
|
|
126
|
+
- services: skip index rebuilding
|
|
127
|
+
|
|
128
|
+
Version v5.0.2 (released 2024-08-28)
|
|
129
|
+
|
|
130
|
+
- ror: use datePublished as fallback date for dataset timestamp
|
|
131
|
+
|
|
132
|
+
Version v5.0.1 (released 2024-08-27)
|
|
133
|
+
|
|
134
|
+
- mapping: fix normalizer
|
|
135
|
+
|
|
136
|
+
Version v5.0.0 (released 2024-08-22)
|
|
137
|
+
|
|
138
|
+
- affiliations: dd analyzers and filters to improve results when searching affiliations
|
|
139
|
+
|
|
140
|
+
Version v4.4.0 (released 2024-08-09)
|
|
141
|
+
|
|
142
|
+
- services: use and adjust vnd.inveniordm.v1+json http accept header
|
|
143
|
+
|
|
144
|
+
Version v4.3.0 (released 2024-08-05)
|
|
145
|
+
|
|
146
|
+
- names: make names_exclude_regex configurable
|
|
147
|
+
- names: validate entry full names
|
|
148
|
+
- names: add orcid public data sync
|
|
149
|
+
|
|
150
|
+
Version v4.2.0 (released 2024-07-24)
|
|
151
|
+
|
|
152
|
+
- ror: check last update; use ld+json for metadata (#367)
|
|
153
|
+
- tasks: remove import funders task
|
|
154
|
+
- funders: add and export custom transformer
|
|
155
|
+
- affiliations: add and export custom transformer
|
|
156
|
+
- datastreams: implement asynchronous writer
|
|
157
|
+
|
|
158
|
+
Version v4.1.1 (released 2024-07-15)
|
|
159
|
+
|
|
160
|
+
- installation: use invenio-oaipmh-scythe from PyPI
|
|
161
|
+
|
|
162
|
+
Version v4.1.0 (released 2024-07-15)
|
|
163
|
+
|
|
164
|
+
- readers: make OAI-PMH an optional extra
|
|
165
|
+
- schema: add administration UI attributes
|
|
166
|
+
- ror: fix duplicate acronymns and aliases
|
|
167
|
+
- affiliations: fix title search
|
|
168
|
+
- datastreams: have yaml writer output utf8
|
|
169
|
+
- datastreams: add configs for funders and affiliations
|
|
170
|
+
- affiliations: add datastreams
|
|
171
|
+
- datastreams: move ror transformer to common
|
|
172
|
+
- vocabulary-types: services, resources, and administration UI (#310)
|
|
173
|
+
- config: add OpenAIRE mapping for "Latvian Council of Science"
|
|
174
|
+
- funders: fix country name display (#343)
|
|
175
|
+
- Initial implementation of OAIPMHReader (#329)
|
|
176
|
+
- global: add "tags" field to all vocabularies
|
|
177
|
+
|
|
178
|
+
Version 4.0.0 (released 2024-06-04)
|
|
179
|
+
|
|
180
|
+
- datastreams: implement factories for generating vocabulary configurations
|
|
181
|
+
- datastreams: added ROR HTTP reader
|
|
182
|
+
- funders: use ROR v2 dump instead of v1
|
|
183
|
+
- datastreams: added celery task for funders using ROR HTTP reader
|
|
184
|
+
- datastreams: add OpenAIRE Project HTTP Reader
|
|
185
|
+
- datastreams: fix OpenAIRE graph dataset parsing
|
|
186
|
+
- installation: upgrade invenio-records-resources
|
|
187
|
+
|
|
188
|
+
Version 3.4.0 (released 2024-04-19)
|
|
189
|
+
|
|
190
|
+
- templates: add subject fields UI template (#303)
|
|
191
|
+
|
|
192
|
+
Version 3.3.0 (released 2024-04-16)
|
|
193
|
+
|
|
194
|
+
- assets: add overridable awards and funding
|
|
195
|
+
|
|
196
|
+
Version 3.2.0 (released 2024-03-22)
|
|
197
|
+
|
|
198
|
+
- funding: add country and ror to funder search results
|
|
199
|
+
- init: move record_once to finalize_app (removes deprecation on `before_first_request`)
|
|
200
|
+
- installation: upgrade invenio-app
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
Version 3.1.0 (released 2024-03-05)
|
|
204
|
+
|
|
205
|
+
- custom_fields: added subject field
|
|
206
|
+
- custom_fields: add pid_field to custom fields
|
|
207
|
+
- mappings: change "dynamic" values to string
|
|
208
|
+
- ci: upgrade tests matrix
|
|
209
|
+
- bumps react-invenio-forms
|
|
210
|
+
|
|
211
|
+
Version 3.0.0 (released 2024-01-30)
|
|
212
|
+
|
|
213
|
+
- installation: bump invenio-records-resources
|
|
214
|
+
|
|
215
|
+
Version 2.4.0 (2023-12-07)
|
|
216
|
+
|
|
217
|
+
- schema: add validation for affiliations
|
|
218
|
+
- mappings: add a text subfield for award acronyms
|
|
219
|
+
- config: add new TWCF funder
|
|
220
|
+
|
|
77
221
|
Version 2.3.1 (2023-11-01)
|
|
78
222
|
|
|
79
223
|
- contrib: add affiliation suggestion by id
|