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: doc/release-notes/6.3-release-notes.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -25,14 +25,14 @@ Multiple improvements have ben made to they way Solr indexing and searching is d
25
25
26
26
- Before the search feature flag ("avoid-expensive...") can be turned on, the indexing flag must be enabled, and a full reindex performed. Otherwise publicly available objects are NOT going to be shown in search results.
27
27
28
-
- A features flag called "reduce-solr-deletes" has been added to improve how datafiles are indexed. When the flag is enabled,
28
+
- A features flag called "reduce-solr-deletes" has been added to improve how datafiles are indexed. When the flag is enabled,
29
29
Dataverse wil avoid pre-emptively deleting existing solr documents for the files prior to sending updated information. This
30
30
should improve performance and will allow additional optimizations going forward.
31
31
32
32
- The /api/admin/index/status and /api/admin/index/clear-orphans calls
33
33
(see https://guides.dataverse.org/en/latest/admin/solr-search-index.html#index-and-database-consistency)
34
34
will now find and remove (respectively) additional permissions related solr documents that were not being detected before.
35
-
Reducing the overall number of documents will improve solr performance and large sites may wish to periodically call the
35
+
Reducing the overall number of documents will improve solr performance and large sites may wish to periodically call the
36
36
clear-orphans API.
37
37
38
38
See also #10554#10579
@@ -51,7 +51,7 @@ The Dataverse Software now supports file-level retention periods. The ability to
51
51
52
52
Dataverse can now handle more than 50,000 items when generating sitemap files, splitting the content across multiple files to comply with the Sitemap protocol.
53
53
54
-
For details see https://dataverse-guide--10321.org.readthedocs.build/en/10321/installation/config.html#creating-a-sitemap-and-submitting-it-to-search-engines
54
+
For details see https://dataverse-guide--10321.org.readthedocs.build/en/10321/installation/config.html#creating-a-sitemap-and-submitting-it-to-search-engines
55
55
56
56
See also [#8936](https://github.com/IQSS/dataverse/pull/8936) and [#10321](https://github.com/IQSS/dataverse/pull/10321)
57
57
@@ -134,8 +134,8 @@ See also [#10022](https://github.com/IQSS/dataverse/pull/10022)
134
134
135
135
### Feature Flag To Remove the Required “Reason” Field in the “Return to Author” Dialog
136
136
137
-
A reason field, that is required to not be empty, was added in v6.2. Installations that handle author communications through email or another system may prefer to not be required to use this new field. v6.3 includes a new
138
-
disable-return-to-author-reason feature flag that can be enabled to drop the reason field from the dialog and make sending a reason optional in the api/datasets/{id}/returnToAuthor call.
137
+
A reason field, that is required to not be empty, was added in v6.2. Installations that handle author communications through email or another system may prefer to not be required to use this new field. v6.3 includes a new
138
+
disable-return-to-author-reason feature flag that can be enabled to drop the reason field from the dialog and make sending a reason optional in the api/datasets/{id}/returnToAuthor call.
139
139
140
140
See also [#10137](https://github.com/IQSS/dataverse/pull/10137)
141
141
@@ -162,7 +162,7 @@ See also [#10415](https://github.com/IQSS/dataverse/pull/10415)
162
162
163
163
### MIT and Apache 2.0 Licenses Added
164
164
165
-
New files have been added to import the MIT and Apache 2.0 Licenses to Dataverse:
165
+
New files have been added to import the MIT and Apache 2.0 Licenses to Dataverse:
166
166
167
167
- licenseMIT.json
168
168
- licenseApache-2.0.json
@@ -193,7 +193,7 @@ See also [#10561](https://github.com/IQSS/dataverse/pull/10561)
193
193
194
194
### Additional Facet Settings
195
195
196
-
Extra settings have been added giving an instance admin more choices in selectively limiting the availability of search facets on the Collection and Dataset pages.
196
+
Extra settings have been added giving an instance admin more choices in selectively limiting the availability of search facets on the Collection and Dataset pages.
197
197
198
198
See the [Disable Solr Facets](https://guides.dataverse.org/en/6.3/installation/config.html#DisableSolrFacets) sections of the Config Guide for more info.
199
199
@@ -213,7 +213,7 @@ See also [#10503](https://github.com/IQSS/dataverse/pull/10503)
213
213
214
214
### Re-Addition of ‘Cell Counting’ to Life Science Block
215
215
216
-
Re-adding value `cell counting` to Life Science metadata block's Measurement Type vocabularies accidentally removed in `v5.1`.
216
+
Re-adding value `cell counting` to Life Science metadata block's Measurement Type vocabularies accidentally removed in `v5.1`.
217
217
218
218
### Incomplete Metadata Bug Fix
219
219
@@ -390,7 +390,7 @@ Move the current Payara directory out of the way:
390
390
Download the new Payara version 6.2024.6 (from https://www.payara.fish/downloads/payara-platform-community-edition/), and unzip it in its place:
391
391
392
392
```shell
393
-
cd /usr/local
393
+
cd /usr/local
394
394
unzip payara-6.2024.6.zip
395
395
```
396
396
@@ -412,7 +412,7 @@ Make sure that you have the following `--add-opens` options in your `payara6/gla
412
412
413
413
(Note that you likely already have the `java.base/java.io` option there, but without the `[17|]` prefix. Make sure to replace it with the version above)
414
414
415
-
Start Payara:
415
+
Start Payara:
416
416
417
417
```shell
418
418
sudo service payara start
@@ -485,7 +485,7 @@ If you choose to enable this new feature, set the optional feature flag (jvm opt
485
485
curl http://localhost:8080/api/admin/index
486
486
```
487
487
488
-
Note: if you choose to perform a migration of your `keywordValue` metadata fields (section below), that will require a reindex as well, so do that first.
488
+
Note: if you choose to perform a migration of your `keywordValue` metadata fields (section below), that will require a reindex as well, so do that first.
489
489
490
490
## Notes for Dataverse Installation Administrators
0 commit comments