Releases: o19s/quepid
Releases · o19s/quepid
6.1.1
- Community member reported race condition in standing up Rails and MySQL and issues with PhantomJS install in the developer
docker-compose.yml
andDockerfile.dev
setups. #75 by @epugh fixes #76 and #73. - Add .dockerignore file to prevent unrelated changes from breaking Docker layer cache fixes by @TheSench #80
- Fix issue where you couldn't clone a case without including the full history. #89 by @worleydl fixes #37 Thanks @janhoy for submitting this bug.
- Fixed display of notes for query disappearing after collapse and then expand of query window. #88 by @dworley fixes #87
- NDCG@10 doesn't include documents that are rated via Explain Other, it only looks at the documents returned by the search engine. We want to be able to have NDCG look globally at all rated documents. #90 by @nathancday and @worleydl fixes #78. Note: We currently have the NDCG@10 scorer in app.quepid.com, however it hasn't been backported to the Docker image or the dev setup in Quepid. See #91.
6.1.0
6.1.0 - 02/01/2020
This release changes the database schema, so you will need to run docker-compose run --rm app bin/rake db:migrate
if you have an existing Quepid.
- Cloning cases now carries any magic variables and their values along to the new case #55 by @epugh fixes #37
- Only treat field content that begins with "http" as a link. #35 by @pfries fixes #34
- Update Elasticsearch logo. #38 by @moshebla
- Remove sqlite from gem, no longer used. #41 by @epugh fixes #40
- Better look and UI experience for the dev panel. #39 by @moshebla
- Show or don't show the T&C's link based on the Quepid configuration. #42 by @epugh fixes #44 by @flaxsearch.
- Add Query button activates in response to query text entered. #43 by @moshebla
- Prevent duplicate queries when using bulk query importer. #49 by @epugh fixes #48
- Production oriented Docker Compose setup for Quepid is ready! Install guide at https://github.com/o19s/quepid/wiki/Installation-Guide. #36 by @epugh was based on original work in #33 by @synhershko. Thanks!
- Update the sample TMDB dataset for Elasticsearch to support
thumb:poster_path
in the field listing. #53 by @epugh - Collapse query results well from bottom (in addition to the top) #28 by @epugh fixes #20 by @peterdm. Thanks @ychaker for reviewing PR.
- Explain Other on ES 6 and 7 Broken. o19s/splainer-search#74 by @worleydl fixes #25.
- Support for embeds of audio/image/video via
media:
. #62 by @worleydl fixes #56 by @flaxsearch - Autocomplete in Case Setup Wizard properly handles
media:
andthumb:
prefixes. Nice refactoring for more prefixes. #46 by @moshebla with refactor by @worleydl. - Post the onboarding wizard you would often see your queries being stalled in loading. Only workaround was to reload the Javascript app. #69 by @worleydl fixes #66
- app.quepid.com needs to get explicit consent from users to receive emails related to Quepid and related features. Introducing a new
customize_quepid.rb
file in initializers to start supporting more customizations of Quepid. #68 by @worleydl. - Only show cookie acceptance popup if COOKIES_URL is set. #71 by @epugh fixes #70 by @epugh.
6.0.2
- Pluralize text (ie 0 Results, 1 Result, and 200 Results) on Query Detail Paine. #26 by @epugh
- Enable Google Analytics tracking only if enabled via QUEPID_GA environment variable. #31 based on #30 by @CGamesPlay
- Convert http links in documents in search results into clickable links. #27 by @epugh fixes #26
- Update to splainer-search 2.5.2 to handle change in how totals hits are returned from ES 7. https://github.com/o19s/splainer-search/tree/bugfix-69-es7-total-hits-SECOND-TRY by @epugh fixes #19
- Deprecate www.quepid.com/support in favor of linking to wiki. #18 by @epugh fixes #17
- More informative error message when you delete a custom scorer and the scorer is shared with a team or used by a case. #22 by @epugh fixes #21.
- On teams listing page, allow a Scorer to be unshared (i.e removed) from a team, which allows the custom scorer to then be deleted. #24 by @epugh.
v6.0.1
6.0.1 - 11/05/2019
- Update to splainer-search 2.5.0.
- Fix setting the default case for exporting when you first load Quepid. #15 by @worleydl fixes #12
- Allow a document to be rated to have an id with a period in it like
mydoc.pdf
. #6 by @epugh fixes #5 - Default query when setting up a new case works across Elasticsearch versions 5, 6, and 7. #3 by @epugh fixes #2
- Updates to CircleCI and update Ruby 2.5.7 by @ychaker