diff --git a/CHANGELOG.md b/CHANGELOG.md index 6831f7f..4b76a28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm # Changelog for gCube Catalogue (gCat) API +## [v2.3.0-SNAPSHOT] + +- Aligned constants name used as query parameters +- Added query parameter constant used in item listing to get the whole item instead of just the name [#23691] + + ## [v2.2.0] - Added support to manage configurations [#22658] diff --git a/pom.xml b/pom.xml index 4338468..0629a73 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ org.gcube.data-catalogue gcat-api - 2.2.0 + 2.3.0-SNAPSHOT gCube Catalogue (gCat) API gCube Catalogue (gCat) API is a library containing classes shared across gcat* components diff --git a/src/main/java/org/gcube/gcat/api/GCatConstants.java b/src/main/java/org/gcube/gcat/api/GCatConstants.java index fcdb246..4787a87 100644 --- a/src/main/java/org/gcube/gcat/api/GCatConstants.java +++ b/src/main/java/org/gcube/gcat/api/GCatConstants.java @@ -18,7 +18,8 @@ public class GCatConstants { public static final String OFFSET_QUERY_PARAMETER = "offset"; public static final String COUNT_QUERY_PARAMETER = "count"; public static final String OWN_ONLY_QUERY_PARAMETER = "own_only"; - + public static final String ALL_FIELDS_QUERY_PARAMETER = "all_fields"; + public static final String COUNT_KEY = "count"; public static final String ORGANIZATION_PARAMETER = "organization";