You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+33-1
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,37 @@ Changed
15
15
16
16
Fixed
17
17
18
+
## [1.4.0] - 2023-03-17
19
+
20
+
Added
21
+
- Creating resources from Zenodo JSON metadata has been added and is triggered by providing Content-Type 'application/vnd.zenodo.org+json' at POST /api/v1/dataresources/.
22
+
- Added support for using PIDs (prefix/suffix) as resource id without escaping while accessing them, e.g., GET /api/v1/dataresources/<prefix>/<suffix>
23
+
24
+
Changed
25
+
26
+
- ContentInformation metadata now returns own ETags different from the ETag of the parent resource.
27
+
- Creating resources from DataCite JSON metadata is now triggered by providing Content-Type 'application/vnd.datacite.org+json' at POST /api/v1/dataresources/.
28
+
- The allowed size of description content has been changed from 255 to 10240 characters (see 'Migration Remarks').
29
+
30
+
Fixed
31
+
32
+
- Creating resource from DataCite JSON metadata has been fixed.
33
+
- MediaType detection and providing mediaType by user now finally works for ContentInformation.
34
+
35
+
Security
36
+
37
+
* Bump service-base from 1.1.0 to 1.1.1
38
+
* Bump repo-core from 1.1.1 to 1.1.2
39
+
40
+
### Migration Remarks
41
+
42
+
For existing databases, a manual update is required to adjust the column size.
43
+
The query may depend on the used database system, for PostgreSQL this would be:
44
+
45
+
```
46
+
alter table description alter column description type character varying(10240);
0 commit comments