Skip to content

Commit 2186821

Browse files
committed
πŸ“¦ release: v14.0.0b1.dev5
1 parent 6dc4654 commit 2186821

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

β€ŽCHANGES.rstβ€Ž

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,19 @@
1010
Changes
1111
=======
1212

13+
Version v14.0.0b1.dev5 (released 2025-10-14)
14+
15+
- fix(community-submission): add missing var in side bar template
16+
- fix(guest-access-request): handle broken expiration date payload value
17+
* this extra check prevents the request timeline UI from breaking when a
18+
request payload has a broken value, to make recovery easier
19+
* also, make eslint happy with a camel case variable name
20+
- fix(guest-access-request): handle more possible expiration date values
21+
* when the expiration date gets submitted, the value of the empty input
22+
field is typically the empty string rather than `null`
23+
* on the reading side, handle the case that the expiration date is set
24+
as a string value (since request payloads are generally strings)
25+
1326
Version v14.0.0b1.dev4 (released 2025-10-03)
1427

1528
- installation: relax invenio-collections dependency requirements

β€Žinvenio_app_rdm/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
#
1818
# See PEP 0440 for details - https://www.python.org/dev/peps/pep-0440
1919

20-
__version__ = "14.0.0b1.dev4"
20+
__version__ = "14.0.0b1.dev5"
2121

2222
__all__ = ("__version__",)

β€Žinvenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineEdit.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is part of InvenioRDM
2-
// Copyright (C) 2023 CERN.
2+
// Copyright (C) 2023-2025 CERN.
33
//
44
// Invenio App RDM is free software; you can redistribute it and/or modify it
55
// under the terms of the MIT License; see LICENSE file for more details.

β€Žinvenio_app_rdm/theme/assets/semantic-ui/js/invenio_app_rdm/requests/timeline/AccessRequestTimelineRead.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is part of InvenioRDM
2-
// Copyright (C) 2023 CERN.
2+
// Copyright (C) 2023-2025 CERN.
33
//
44
// Invenio App RDM is free software; you can redistribute it and/or modify it
55
// under the terms of the MIT License; see LICENSE file for more details.

0 commit comments

Comments
Β (0)