!!! BREAKING CHANGES !!!
- New GQL query response format to support better paging and sort (full details found in
src/main/resources/schema.graphqls
), this is only a top-level change, theAnalysis
andFile
entities response remains unchanged :
Excerpt from Schema
type SearchResultInfo {
contentCount: String!
hasNextFrom: String!
totalHits: String!
}
type AnalysesSearchResult {
content: [Analysis!]
info: SearchResultInfo!
}
New Features
- New Aggregation query in GQL (currently only counts, plans for expansion in future releases):
type AggregationResult {
totalHits: String!
}
Misc
- Migrated Jenkins to use GitHub Packages