Releases: jillesvangurp/rankquest-studio
Add AI Query generation
Changes since the last release
- AI generated queries - easily add variations of an existing test case.
- Misc UX and styling updates & software upgrades
- Rankquest core now supports most Kotlin multiplatform targets
- Misc bug fixes and minor features.
1.1.0 and beyond
Note This release was the last one that I tagged. I've since stopped tagging releases and simply update the website whenever I have anything new implemented. Having version numbers on a website doesn't really make sense and I tend to keep everything working when I push new versions.
This release adds a new plugin: JsSearchPlugin.
You can use this to use javascript in the browser to query your search API. Simply write a function like this
// add your function to window
// so we can call it
window.rankquestSearch=
function(searchContext, numberOfItems) {
// use fetch to fetch some results
// from somewhere or do whatever
// you need to do with javascript
// construct a response that
// looks something like this
var response = {
"total":1,
"responseTime":"PT0.001S",
"searchResultList":[
{
"id":"1",
"label":"Title"
}
]
}
// return valid json as a string
return JSON.stringify(response)
}
You can paste it in the search plugin configuration and use it. Note. this only works in the browser and cannot be used with rankquest-cli.
1.0.0 Release
- fix bug with tag filtering not working on metrics
- updates and switch to kotlin 2.0 beta-1. We were using the k2 compiler anyway, so might as well use the latest version of that.
Tag filtering improvements
- Nicer tag filter
- Now also works for metrics!
tag filtering
- implement tag filtering in the test cases view. You could already tag your test cases and this adds a simple filter.
- misc styling improvements
- fritz2 update and other misc updates
1.0 RC2
- Comments for test cases separate from the comments for the search results in the test cases
- Simple tag editor for test cases
- Add some statistics to search metrics (standard deviation, min, max, etc.)
Rankquest 1.0 Release Candidate
After a few weeks of hard work, rankquest is now feature complete.
- This release adds support for configuring expected values for your metrics configuration. Metrics below the threshold are rendered red and above the threshold they are rendered green.
The expected values are also used in the new rankquest-cli which you can use to integrate rankquest in your CI builds.
1.0 beta 13
- implement star ratings on test cases, much easier to rate test cases this way. Five stars ought to be enough for anyone ..
- use bold to emphasize search context values in test cases. Much more readable like this.
1.0 beta 12
- fix a bug with koin initialization that prevented the application from starting
1.0 beta 11
- open graph meta tags
- es demo buttons now use the active search configuration so it can use a remote es if you want to
- misc small fixes for layout bugs and other tweaks
- documentation improvements