-
-
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 #1550 from NCEAS/develop
First merge for 2.16.2 from develop to main
- Loading branch information
Showing
8 changed files
with
32 additions
and
14 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.1 Release | ||
Version: 2.16.2 Release | ||
|
||
Send feedback and bugs to: [email protected] | ||
http://github.com/NCEAS/metacat | ||
|
@@ -67,6 +67,10 @@ for the next release. | |
|
||
## Release Notes | ||
|
||
### Release Notes for 2.16.2 | ||
Bugs fixed in this release: | ||
* Upgrade some library jar files to fix severe security vulnerabilities | ||
|
||
### Release Notes for 2.16.1 | ||
Bugs fixed in this release: | ||
* Upgrade some library jar files to fix severe security vulnerabilities | ||
|
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.2', 1, CURRENT_DATE); |