This is an automated email from the ASF dual-hosted git repository.
bdelacretaz pushed a change to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-graphql-core.git.
from bdba990 Adding sonarqube badges as per SLING-9682
add ed77ae5 SLING-9655 - Caching support for the GraphQL core
add 1e4eaf9 SLING-9655 - Caching support for the GraphQL core
add 1cb7350 SLING-9655 - Caching support for the GraphQL core
add f735eb9 SLING-9655 - Caching support for the GraphQL core
add 6adfe39 SLING-9655 - remove unused dependencies
add 78ffa45 SLING-9655 - one more unused dependency
add 200a88f SLING-9655 - Caching support for the GraphQL core
add 647a7d5 SLING-9655 - Caching support for the GraphQL core
add e0949d3 SLING-9655 - check query results here as well
add 94484b1 SLING-9655 - Caching support for the GraphQL core
add 4181c57 SLING-9655 - Caching support for the GraphQL core
new f00e526 Merge pull request #2 from apache/feature/SLING-9655
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
README.md | 94 +++++++++
pom.xml | 60 +++---
.../graphql/api/cache/GraphQLCacheProvider.java | 54 ++++++
.../sling/graphql/api/cache/package-info.java | 22 +++
.../core/cache/SimpleGraphQLCacheProvider.java | 209 +++++++++++++++++++++
.../sling/graphql/core/servlet/GraphQLServlet.java | 135 ++++++++++++-
.../sling/graphql/core/servlet/QueryParser.java | 108 +++++++++++
.../sling/graphql/core/servlet/RequestParser.java | 77 --------
.../core/cache/SimpleGraphQLCacheProviderTest.java | 112 +++++++++++
.../graphql/core/it/GraphQLCoreTestSupport.java | 28 ++-
.../sling/graphql/core/it/GraphQLServletIT.java | 91 ++++++++-
.../graphql/core/servlet/GraphQLServletTest.java | 81 ++++++++
12 files changed, 949 insertions(+), 122 deletions(-)
create mode 100644
src/main/java/org/apache/sling/graphql/api/cache/GraphQLCacheProvider.java
create mode 100644
src/main/java/org/apache/sling/graphql/api/cache/package-info.java
create mode 100644
src/main/java/org/apache/sling/graphql/core/cache/SimpleGraphQLCacheProvider.java
create mode 100644
src/main/java/org/apache/sling/graphql/core/servlet/QueryParser.java
delete mode 100644
src/main/java/org/apache/sling/graphql/core/servlet/RequestParser.java
create mode 100644
src/test/java/org/apache/sling/graphql/core/cache/SimpleGraphQLCacheProviderTest.java
create mode 100644
src/test/java/org/apache/sling/graphql/core/servlet/GraphQLServletTest.java