Skip to content

Releases: jillesvangurp/rankquest-studio

1.1.0 and beyond

26 Nov 11:25
Compare
Choose a tag to compare

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

18 Nov 13:53
Compare
Choose a tag to compare
  • 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

11 Nov 14:29
Compare
Choose a tag to compare
  • Nicer tag filter
  • Now also works for metrics!

tag filtering

11 Nov 14:04
Compare
Choose a tag to compare
  • 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

10 Oct 16:02
Compare
Choose a tag to compare
  • 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

02 Oct 10:20
Compare
Choose a tag to compare

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

24 Sep 21:39
Compare
Choose a tag to compare
  • 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

24 Sep 20:57
Compare
Choose a tag to compare
  • fix a bug with koin initialization that prevented the application from starting

1.0 beta 11

24 Sep 09:25
Compare
Choose a tag to compare
  • 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

1.0 Beta 8 Release for Meetup

14 Sep 15:00
Compare
Choose a tag to compare
  • elasticsearch movies search fixes for the demo