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
The Croissant metadata export format has been updated from version 1.0 to 1.1.
4
+
5
+
Summary statistics (mean, min, max, etc.) are now included for tabular files that were successfully ingested.
6
+
7
+
You can download an example Croissant file from the [Supported Metadata Export Formats](https://dataverse-guide--12214.org.readthedocs.build/en/12214/user/dataset-management.html#supported-metadata-export-formats) section of the guides.
8
+
9
+
Minor backward-incompatible changes were made, which are noted below.
10
+
11
+
See #12014 and #12214
12
+
13
+
## Backward Incompatible Changes
14
+
15
+
Generally speaking, see the [API Changelog](https://guides.dataverse.org/en/latest/api/changelog.html) for a list of backward-incompatible API changes.
16
+
17
+
Minor changes in the `croissant` format are noted in the [API changelog](https://dataverse-guide--12214.org.readthedocs.build/en/12214/api/changelog.html).
18
+
19
+
## Upgrade Instructions
20
+
21
+
1. Re-export metadata export formats
22
+
23
+
We re-export because the Croissant format was updated.
Incremental improvements have been made to the process of registering dataset metadata with DataCite. If your instance is using DataCite, please make sure you have a valid DataCite REST API url configured, since it is now required.
2
+
3
+
The JVM option(s) in question are `dataverse.pid.*.datacite.rest-api-url` if the recommended, new-style pid configuration is used, or `doi.dataciterestapiurlstring` if the legacy settings are in place. In the latter case however, this may be a good occasion to switch to the new configuration setup.
4
+
5
+
For instances using registered DataCite authorities in production the url should be:
Fixed a problem with S3 direct upload to datasets which using lower- or mixed-case PID authority/identifier in the database and to datasets using an alternative identifier for file storage.
# Language change for file.deaccessionDialog.reason.selectItem.notValid
2
+
3
+
"Not a valid dataset." is being changed to "Not valid. This dataset does not comply with repository policies."
4
+
This is the default English language version. For installations using customized languages, replacing the Bundle.properties file, please follow these manual instructions to make this modification, if desired.
5
+
6
+
Make the change to the Bundle_##.properties file with the new verbiage. Either locally or as an update to [dataverse-language-packs Repo](https://github.com/GlobalDataverseCommunityConsortium/dataverse-language-packs/tree/develop)
7
+
8
+
The SQL statements to modify the datasets is:
9
+
10
+
-`UPDATE dvobject SET indextime=null WHERE id in (SELECT dataset_id FROM datasetversion WHERE deaccessionnote='Not a valid dataset.');`
11
+
12
+
-`UPDATE datasetversion SET deaccessionnote='Not valid. This dataset does not comply with repository policies.' WHERE deaccessionnote='Not a valid dataset.';`
13
+
14
+
Once the database is updated the Solr indexes need to be rebuilt using the following Admin API:
Copy file name to clipboardExpand all lines: doc/sphinx-guides/source/api/changelog.rst
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,11 @@ This API changelog is experimental and we would love feedback on its usefulness.
7
7
:local:
8
8
:depth: 1
9
9
10
+
v6.11
11
+
-----
12
+
13
+
- The Croissant :ref:`metadata export format <metadata-export-formats>` has been updated from version 1.0 to 1.1, which is reflected in the ``conformsTo`` property. ``@vocab`` and ``sc`` properties now use "http" as `recommended <https://github.com/mlcommons/croissant/pull/929#pullrequestreview-3079137662>`_. The unused ``wd`` property has been dropped.
14
+
10
15
v6.10
11
16
-----
12
17
- The following GET APIs will now return ``400`` if a required Guestbook Response is not supplied. A Guestbook Response can be passed to these APIs in the JSON body using a POST call. See the notes under :ref:`basic-file-access` and :ref:`download-by-dataset-by-version` for details.
Assign a default role to a user creating a dataset in a Dataverse collection ``id`` where ``roleAlias`` is the database alias of the role to be assigned:
528
+
Assign a default role to a user creating a dataset in a Dataverse collection ``id`` where ``roleAlias`` is the database alias of the role to be assigned (requires ``ManageDataversePermissions``):
529
529
530
530
.. code-block:: bash
531
531
@@ -544,6 +544,27 @@ The fully expanded example above (without environment variables) looks like this
544
544
545
545
Note: You may use "none" as the ``ROLE_ALIAS``. This will prevent a user who creates a dataset from having any role on that dataset. It is not recommended for Dataverse collections with human contributors.
@@ -8852,51 +8873,58 @@ Note that this API is probably only useful for testing.
8852
8873
MyData
8853
8874
------
8854
8875
8855
-
The MyData API is used to get a list of just the datasets, dataverses or datafiles an authenticated user can edit.
8876
+
The MyData API is used to get a list of just the datasets, collections (dataverses), or datafiles an authenticated user has a role on.
8856
8877
8857
-
The API excludes dataverses linked to an harvesting client. This results in `a known issue <https://github.com/IQSS/dataverse/issues/11083>`_ where regular datasets in harvesting dataverses are missing from the results.
8878
+
The API excludes collections linked to an harvesting client. This results in `a known issue <https://github.com/IQSS/dataverse/issues/11083>`_ where regular datasets in harvesting collections are missing from the results.
``dvobject_types`` Type of object, several possible values among: ``DataFile`` , ``Dataset`` & ``Dataverse`` .
8886
-
8887
-
``published_states`` State of the object, several possible values among:``Published`` , ``Unpublished`` , ``Draft`` , ``Deaccessioned`` & ``In+Review`` .
8888
-
8889
-
``per_page`` Number of results returned per page.
8890
-
8891
-
``metadata_fields`` Includes the requested fields for each dataset in the response. Multiple "metadata_fields" parameters can be used to include several fields. See :doc:`search` for further information on this parameter.
8896
+
The fully expanded example above (without environment variables) looks like this:
8892
8897
8893
-
``show_collections`` Whether or not to include a list of parent and linked collections for each dataset search result.
8898
+
.. code-block:: bash
8894
8899
8895
-
``sort`` The sort field. Supported values include "name", "date" and "relevance".
0 commit comments