Skip to content

2.5.0

Latest
Compare
Choose a tag to compare
@lepsalex lepsalex released this 22 Jan 17:35
· 34 commits to master since this release
24842f7

!!! 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, the Analysis and File 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