-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1546 from NCEAS/develop
2.16.1 First Merge from develop to main
- Loading branch information
Showing
11 changed files
with
109 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Metacat: Data Preservation and Discovery System | ||
|
||
Version: 2.16.0 Release | ||
Version: 2.16.1 Release | ||
|
||
Send feedback and bugs to: [email protected] | ||
http://github.com/NCEAS/metacat | ||
|
@@ -67,9 +67,14 @@ for the next release. | |
|
||
## Release Notes | ||
|
||
### Release Notes for 2.16.1 | ||
Bugs fixed in this release: | ||
* Upgrade some library jar files to fix severe security vulnerabilities | ||
* Metacat cannot create objects without DOI setting enabled | ||
|
||
### Release Notes for 2.16.0 | ||
New features and bugs fixed in this release: | ||
* Upgrade some library jar files to fix critical security threats | ||
* Upgrade some library jar files to fix critical security vulnerabilities | ||
* Refactor the DOI service to use the plug-in architecture | ||
* CN subjects cannot query private objects | ||
* Users with the write permission cannot update system metadata | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* Ensure xml_catalog sequence is at table max | ||
*/ | ||
|
||
SELECT setval('xml_catalog_id_seq', (SELECT max(catalog_id) from xml_catalog)); | ||
|
||
/* | ||
* update the database version | ||
*/ | ||
UPDATE db_version SET status=0; | ||
|
||
INSERT INTO db_version (version, status, date_created) | ||
VALUES ('2.16.1', 1, CURRENT_DATE); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters