diff --git a/CHANGELOG.md b/CHANGELOG.md index 2988c2f26b..b856737821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [v1.0.13](https://github.com/stargate/stargate/tree/v1.0.13) (2021-03-03) + +[Full Changelog](https://github.com/stargate/stargate/compare/v1.0.12...v1.0.13) + +**Fixed bugs:** + +- Querying GraphQL API with `limit` fails [\#716](https://github.com/stargate/stargate/issues/716) +- Require authorization to read DML schemas [\#731](https://github.com/stargate/stargate/pull/731) ([olim7t](https://github.com/olim7t)) + +**Closed issues:** + +- REST API select \* from table [\#727](https://github.com/stargate/stargate/issues/727) + +**Merged pull requests:** + +- Bumping version for next release [\#724](https://github.com/stargate/stargate/pull/724) ([github-actions[bot]](https://github.com/apps/github-actions)) +- General cleanup of RestApiv2Test [\#723](https://github.com/stargate/stargate/pull/723) ([dougwettlaufer](https://github.com/dougwettlaufer)) +- Fix handling of LIMIT in query builder \(fixes \#716\) [\#719](https://github.com/stargate/stargate/pull/719) ([olim7t](https://github.com/olim7t)) + ## [v1.0.12](https://github.com/stargate/stargate/tree/v1.0.12) (2021-02-27) [Full Changelog](https://github.com/stargate/stargate/compare/v1.0.11...v1.0.12) diff --git a/auth-api/pom.xml b/auth-api/pom.xml index 3125b869b1..5f4b7ab127 100644 --- a/auth-api/pom.xml +++ b/auth-api/pom.xml @@ -5,7 +5,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.auth.api auth-api diff --git a/auth-jwt-service/pom.xml b/auth-jwt-service/pom.xml index 0bb5aed2ec..11642f169a 100644 --- a/auth-jwt-service/pom.xml +++ b/auth-jwt-service/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.auth.jwt auth-jwt-service diff --git a/auth-table-based-service/pom.xml b/auth-table-based-service/pom.xml index 18b5bb890a..3d3c8caf90 100644 --- a/auth-table-based-service/pom.xml +++ b/auth-table-based-service/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.auth.table auth-table-based-service diff --git a/authnz/pom.xml b/authnz/pom.xml index 3e63b90922..682a8494ec 100644 --- a/authnz/pom.xml +++ b/authnz/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.auth authnz diff --git a/config-store-api/pom.xml b/config-store-api/pom.xml index 23776fee10..b2deffa564 100644 --- a/config-store-api/pom.xml +++ b/config-store-api/pom.xml @@ -3,7 +3,7 @@ stargate io.stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT 4.0.0 io.stargate.config-store diff --git a/config-store-yaml/pom.xml b/config-store-yaml/pom.xml index 28c6df9960..620c1801c6 100644 --- a/config-store-yaml/pom.xml +++ b/config-store-yaml/pom.xml @@ -3,7 +3,7 @@ stargate io.stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT 4.0.0 io.stargate.config.store.yaml diff --git a/core/pom.xml b/core/pom.xml index 57b867ea60..e535f758c2 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -4,7 +4,7 @@ stargate io.stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.core core diff --git a/cql/pom.xml b/cql/pom.xml index a7d52e9139..f355f26660 100644 --- a/cql/pom.xml +++ b/cql/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.cql cql diff --git a/graphqlapi/pom.xml b/graphqlapi/pom.xml index 8b6991132e..076b4d4c6e 100644 --- a/graphqlapi/pom.xml +++ b/graphqlapi/pom.xml @@ -5,7 +5,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.graphql graphqlapi diff --git a/health-checker/pom.xml b/health-checker/pom.xml index 6bbf432402..6f50f625fc 100644 --- a/health-checker/pom.xml +++ b/health-checker/pom.xml @@ -5,7 +5,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.health health-checker diff --git a/persistence-api/pom.xml b/persistence-api/pom.xml index f00780d437..3c097cf50c 100644 --- a/persistence-api/pom.xml +++ b/persistence-api/pom.xml @@ -5,7 +5,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.db persistence-api diff --git a/persistence-cassandra-3.11/pom.xml b/persistence-cassandra-3.11/pom.xml index 167c27b178..3b971c0d44 100644 --- a/persistence-cassandra-3.11/pom.xml +++ b/persistence-cassandra-3.11/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.db.cassandra persistence-cassandra-3.11 diff --git a/persistence-cassandra-4.0/pom.xml b/persistence-cassandra-4.0/pom.xml index 9f852fe231..453c6add78 100644 --- a/persistence-cassandra-4.0/pom.xml +++ b/persistence-cassandra-4.0/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.db.cassandra persistence-cassandra-4.0 diff --git a/persistence-common/pom.xml b/persistence-common/pom.xml index 71fc389424..f7ee60ae0b 100644 --- a/persistence-common/pom.xml +++ b/persistence-common/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.db persistence-common diff --git a/persistence-dse-6.8/pom.xml b/persistence-dse-6.8/pom.xml index f4522278a8..c238b6084f 100644 --- a/persistence-dse-6.8/pom.xml +++ b/persistence-dse-6.8/pom.xml @@ -5,7 +5,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.db.dse persistence-dse-6.8 diff --git a/persistence-test/pom.xml b/persistence-test/pom.xml index 8baeb23d74..c7bcc5b9e3 100644 --- a/persistence-test/pom.xml +++ b/persistence-test/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.db persistence-test diff --git a/pom.xml b/pom.xml index 2fc04149aa..4734f87b36 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT pom ${project.groupId}:${project.artifactId} Core modules for Stargate diff --git a/rate-limiting-global/pom.xml b/rate-limiting-global/pom.xml index 9e16a09c63..651c3c9acf 100644 --- a/rate-limiting-global/pom.xml +++ b/rate-limiting-global/pom.xml @@ -3,7 +3,7 @@ stargate io.stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT 4.0.0 io.stargate.db.limiter.global diff --git a/restapi/pom.xml b/restapi/pom.xml index 0fba78d68a..c1affc30ad 100644 --- a/restapi/pom.xml +++ b/restapi/pom.xml @@ -5,7 +5,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.web restapi diff --git a/stargate-starter/pom.xml b/stargate-starter/pom.xml index 31365ac410..c938717d5a 100644 --- a/stargate-starter/pom.xml +++ b/stargate-starter/pom.xml @@ -5,7 +5,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.starter stargate-starter diff --git a/testing-services/pom.xml b/testing-services/pom.xml index e0a0a946ac..79a4a0cbf9 100644 --- a/testing-services/pom.xml +++ b/testing-services/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.it testing-services diff --git a/testing/pom.xml b/testing/pom.xml index a3f13dda38..d5fdf1ba64 100644 --- a/testing/pom.xml +++ b/testing/pom.xml @@ -4,7 +4,7 @@ io.stargate stargate - 1.0.13-SNAPSHOT + 1.0.14-SNAPSHOT io.stargate.it testing