Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Smarti 0.7.1

Compare
Choose a tag to compare
@ja-fra ja-fra released this 20 Apr 07:16

Smarti 0.7.1 is contains several improvements for analysis quality and some bugfixes.

New in Smarti 0.7.1

  • #203 - Preamble of posted conversation / message must not be analyzed
  • #208 - Ignore code-blocks in analysis
  • #217 - Indicator for Queries that they are not valid without user added tokens
  • #227 - Make i18n messages (preamble of posted conversation) configurable
  • #228 - Allow to disable Filters for related Conversations
  • #236 - "Context" does not provide enough context
  • #220 - Improve UI message if no results are found
  • #230 - Improve toggle conversation context in the Smarti widget
  • #239 - Posting a result from the Smarti-Widget
  • #242 - Clicking the include Message checkbox expands the Result
  • #243 - Change "Konversation Posten" to "Nachricht Posten"
  • #225 - Bug: Automatic reloading of results does not work as expected
  • #232 - Bug: Put a message which does not exist results in error 500
  • #237 - Bug: Widget: "Post selected messages" button is not shown when room is closed
  • #238 - Bug: Widget does not render Results
  • #240 - Bug: Conversation Context broken
  • #241 - Bug: Posts of SolrSearch DataSources does not work

Upgrading

To ensure that the improved analysis result is available for all users, you should clear the collection caching analysis results.

A migration script is available. If you are not using one of the provided installation packages (deb, rpm) or docker, you must apply it manually:

db.getCollection('analysis').drop();
db.getCollection('smarti')
    .update({_id: 'db-version'}, {
        $set: {
            version: 6
        }
    });