invenio-app-rdm 13.0.0rc9__py2.py3-none-any.whl → 13.0.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.
- invenio_app_rdm/__init__.py +1 -1
- invenio_app_rdm/records_ui/views/deposits.py +5 -3
- {invenio_app_rdm-13.0.0rc9.dist-info → invenio_app_rdm-13.0.1.dist-info}/METADATA +13 -1
- {invenio_app_rdm-13.0.0rc9.dist-info → invenio_app_rdm-13.0.1.dist-info}/RECORD +8 -8
- {invenio_app_rdm-13.0.0rc9.dist-info → invenio_app_rdm-13.0.1.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0rc9.dist-info → invenio_app_rdm-13.0.1.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0rc9.dist-info → invenio_app_rdm-13.0.1.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0rc9.dist-info → invenio_app_rdm-13.0.1.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
|
@@ -84,10 +84,12 @@ def get_form_pids_config(record=None):
|
|
|
84
84
|
optional_doi_transitions["message"] = optional_doi_transitions.get(
|
|
85
85
|
"message"
|
|
86
86
|
).format(sitename=sitename)
|
|
87
|
-
if
|
|
88
|
-
|
|
87
|
+
if (
|
|
88
|
+
"external" not in optional_doi_transitions["allowed_providers"]
|
|
89
|
+
and "not_needed"
|
|
90
|
+
not in optional_doi_transitions["allowed_providers"]
|
|
89
91
|
):
|
|
90
|
-
# In case we have locally managed provider as
|
|
92
|
+
# In case we have locally managed provider(s) as allowed ones, we need to
|
|
91
93
|
# select it by default. That is relevant for the case when the
|
|
92
94
|
# user creates a new version of the record and the previous version
|
|
93
95
|
# had a datacite DOI.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 13.0.
|
|
3
|
+
Version: 13.0.1
|
|
4
4
|
Summary: Invenio Research Data Management.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-app-rdm
|
|
6
6
|
Author: CERN
|
|
@@ -101,6 +101,18 @@ https://inveniordm.docs.cern.ch
|
|
|
101
101
|
Changes
|
|
102
102
|
=======
|
|
103
103
|
|
|
104
|
+
Version v13.0.1 (released 2025-07-31)
|
|
105
|
+
|
|
106
|
+
- fix(deposits): update doi default option only if managed
|
|
107
|
+
* Fix logic for selecting default DOI option in deposit form when creating new versions
|
|
108
|
+
* Only set managed DOI provider as default when external and not_needed are not in allowed providers
|
|
109
|
+
* Improves user experience when versioning records with DataCite DOIs
|
|
110
|
+
|
|
111
|
+
Version v13.0.0 (released 2025-07-23)
|
|
112
|
+
|
|
113
|
+
- Official release of InvenioRDM v13. Contains all pre-release changes. See
|
|
114
|
+
[release notes](https://inveniordm.docs.cern.ch/releases/v13/version-v13.0.0/)
|
|
115
|
+
|
|
104
116
|
Version v13.0.0rc9 (released 2025-07-23)
|
|
105
117
|
|
|
106
118
|
- fix(migration): wrong variable used
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=4Hx5n7RvVq-x0IaLAC1ioudUYMQNfakhMnTPPofid3w,697
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
3
|
invenio_app_rdm/config.py,sha256=MQYHg0C5p5xAphuGOh3lqxp7k9Dboi27uxn7WHkv2JU,52040
|
|
4
4
|
invenio_app_rdm/ext.py,sha256=K7syn5CU5If7yOclFeNOCZX_u5q6VB7NJEQVm41mlng,5286
|
|
@@ -86,7 +86,7 @@ invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/
|
|
|
86
86
|
invenio_app_rdm/records_ui/templates/semantic-ui/invenio_app_rdm/records/macros/version.html,sha256=eA8-n81XUezkwPXvcG5v2sgLPQNTgr7hB36-_Gr-tVI,758
|
|
87
87
|
invenio_app_rdm/records_ui/views/__init__.py,sha256=9DaDls04IQv7fYttDjLofIWGsRRjk-FwUYnIfxV3OWk,5840
|
|
88
88
|
invenio_app_rdm/records_ui/views/decorators.py,sha256=MUUmgGuigmFMigcpyJbNvM0yPKUyeAw5LE6MJ69BoFA,15883
|
|
89
|
-
invenio_app_rdm/records_ui/views/deposits.py,sha256=
|
|
89
|
+
invenio_app_rdm/records_ui/views/deposits.py,sha256=26rZSuR5AE8-uDwP6hbgmq6OtLi7BbEkFuZmr5ipb6A,22486
|
|
90
90
|
invenio_app_rdm/records_ui/views/filters.py,sha256=zKuqjM_Yb9MmBmloStjasASYCwVG7mUe0eolI2MtPXg,6998
|
|
91
91
|
invenio_app_rdm/records_ui/views/records.py,sha256=u3zvyMk5ADvzC6WhUlxFqjdJMIcuBAwh7PdV_TPg2KE,16454
|
|
92
92
|
invenio_app_rdm/redirector/__init__.py,sha256=AYCTGmfbmkHW3YJXMqXlWBXcBrUsta-QmL9ULX2bjwA,243
|
|
@@ -482,9 +482,9 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
482
482
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
483
483
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
484
484
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
485
|
-
invenio_app_rdm-13.0.
|
|
486
|
-
invenio_app_rdm-13.0.
|
|
487
|
-
invenio_app_rdm-13.0.
|
|
488
|
-
invenio_app_rdm-13.0.
|
|
489
|
-
invenio_app_rdm-13.0.
|
|
490
|
-
invenio_app_rdm-13.0.
|
|
485
|
+
invenio_app_rdm-13.0.1.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
486
|
+
invenio_app_rdm-13.0.1.dist-info/METADATA,sha256=ycl_PA7qy5IR7Yzr_AD0dtyr-3-1lQcuTp9u4bq9ynw,19087
|
|
487
|
+
invenio_app_rdm-13.0.1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
488
|
+
invenio_app_rdm-13.0.1.dist-info/entry_points.txt,sha256=rfzEeOEdtGy99NlpWzeW-32CoO5XrEpBvlZwLD2Th88,2158
|
|
489
|
+
invenio_app_rdm-13.0.1.dist-info/top_level.txt,sha256=quZejDUw2vLfKQboNIuVLJ9fxZifdnCT_s2PNf1dfmk,16
|
|
490
|
+
invenio_app_rdm-13.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|