diff --git a/CHANGELOG.md b/CHANGELOG.md index 2820dff..82c51fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,18 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [v2.0.0-SNAPSHOT] - 2022-02-28 +## [v2.0.0-SNAPSHOT] - 2022-06-08 + +#### Enhancements + +- [#22883] Integrate the configurations exposed by geoportal-client + +## [v1.4.0] - 2022-06-08 #### Enhancements -- [#22883] Integrate the configurations exposed by geoportal-client - +- [#23392] Implemented the "Clone Project" facility +- [#23457] Implemented the "Publish/UnPublish Project" facility ## [v1.3.0] - 2021-12-03 diff --git a/pom.xml b/pom.xml index 176e356..de7d8d1 100644 --- a/pom.xml +++ b/pom.xml @@ -41,7 +41,7 @@ org.gcube.distribution gcube-bom - 2.0.1 + 2.1.0-SNAPSHOT pom import diff --git a/src/main/java/org/gcube/application/geoportalcommon/shared/config/ACTION_ON_ITEM.java b/src/main/java/org/gcube/application/geoportalcommon/shared/config/ACTION_ON_ITEM.java index 7d4562d..f35b446 100644 --- a/src/main/java/org/gcube/application/geoportalcommon/shared/config/ACTION_ON_ITEM.java +++ b/src/main/java/org/gcube/application/geoportalcommon/shared/config/ACTION_ON_ITEM.java @@ -14,6 +14,8 @@ public enum ACTION_ON_ITEM { SHOW_METADATA("Show Metadata"), VIEW_REPORT("View the Report"), EDIT_PROJECT("Edit the Project"), + CLONE_PROJECT("Clone the Project"), + PUBLISH_UNPUBLISH_PROJECT("Publish/UnPublish the Project"), DELETE_PROJECT("Delete the Project"); String label; diff --git a/src/test/java/org/gcube/application/UCD_Tests.java b/src/test/java/org/gcube/application/UCD_Tests.java index cbb5397..d7caa9e 100644 --- a/src/test/java/org/gcube/application/UCD_Tests.java +++ b/src/test/java/org/gcube/application/UCD_Tests.java @@ -23,11 +23,11 @@ public class UCD_Tests { // private static String TOKEN = ""; //preVRE private static String CONTEXT = "/gcube/devsec/devVRE"; - private static String TOKEN = ""; // devVRE + private static String TOKEN = "8e74a17c-92f1-405a-b591-3a6090066248-98187548"; // devVRE private static String PROFILE_ID = "profiledConcessioni"; - //@Before + @Before public void getClient() { // assumeTrue(GCubeTest.isTestInfrastructureEnabled()); ScopeProvider.instance.set(CONTEXT); @@ -35,7 +35,7 @@ public class UCD_Tests { client = GeoportalClientCaller.useCaseDescriptors(); } - //@Test + @Test public void getList() throws Exception { ScopeProvider.instance.set(CONTEXT); SecurityTokenProvider.instance.set(TOKEN);