-
-
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 #1406 from NCEAS/dev-2.12
Dev 2.12
- Loading branch information
Showing
10 changed files
with
44 additions
and
100 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.12.0 Release | ||
Version: 2.12.1 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.12.1: | ||
Bugs fixed in this release: | ||
* Patch a security bug | ||
|
||
### Release Notes for 2.12.0: | ||
New features and bugs fixed in this release: | ||
* Support a new format id - portal, which will be used on the MetacatUI portal service | ||
|
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,12 @@ | ||
/* | ||
* 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.12.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