Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

botfront

botfront497Apache-2.01.0.5

Botfront is an open source chatbot platform based on Rasa.

Botfront, Rasa, Chatbot, Chatbot platform, Botkit

readme

npm License Github discussions link

HighlightsFeaturesQuick startDocumentationDevelopment

Release NotesGet community supportBotfront.io


What is it

Botfront is an open-source enterprise-grade conversational platform built with Rasa. It provides super intuitive interfaces and collaborative features to domain experts, conversational designers and engineers.


Highlights

😎

Easy to use

🎓

Powerful

💻️

Developer friendly

Our main goal is to lower the technical barrier to entry in conversational AI. Implementing context-aware conversations should be as easy as chatting. Botfront uses Rasa, a powerful and production ready conversational AI library. Botfront exposes all Rasa functionalities and abstracts its complexity. Botfront's intuitive CLI orchestrates all Botfront's services on your development machine.
Authoring, training, auto reloading actions code, it just works!

Features

An intuitive interface for stories and rules

Botfront provides a unique and natural conversation authoring experience. You can create complex dialog flows in minutes

A flow chart editor for forms

A super intuitive flow chart editor for conversations that do not require machine learning

Automated tests

Create automated tests in one click from conversations, get detailed reports and deploy in confidence.

Git integration

Version your work on a repository with the new Git integration.

Train & evaluate NLU models

Botfront comes with a complete NLU toolbox. You can tag vast amounts of data efficiently, train and evaluate models. Several evaluation methods are available depending on the development stage of your model, and you can annotate incoming NLU data

Rasa integration

Botfront exposes all Rasa features and concepts and and makes them accessible at a higher level for faster development. You can export a Botfront project and use it with Rasa at any time.

Enterprise ready

Scale your conversational AI practice with enterprise grade projects and user management, RBAC and flexible deployment options.

Quick Start

Botfront only requires a recent version of Docker. You can install the CLI with the following:

npm install -g botfront

Then just run botfrontto get started.


Documentation

The official documentation of Botfront is hosted on botfront.io. It is automatically built and updated on every new release. Once you've installed the cli you can also use botfront docs to open it.

We welcome contributions! It can be as easy as clicking on the "Edit page on Github" link at the bottom of every documentation pages.

Development

Installation

  1. Botfront is a Meteor app, so the first step is to install Meteor
  2. Then clone this repo and install the dependencies:
    git clone https://github.com/botfront/botfront
    cd botfront/botfront
    meteor npm install
  3. Install the CLI from the source code:

    # if you installed Botfront from npm uninstall it.
    npm uninstall -g botfront
    # Install the cli from the source code
    cd cli && npm link

    Botfront needs to be connected to other services, especially Rasa. To do this, you need to create a regular project, and start Botfront with a dedicated configuration:

  4. Create a Botfront project with botfront init (somewhere else, not in the repo)

  5. Start your project with botfront up -e botfront. This will run all services except the Botfront app, since you are going to run it with Meteor locally
  6. Go back to the botfront checkout cd botfront/botfront and run Botfront with meteor npm run start:docker-compose.dev. Botfront will be available at http://localhost:3000 so open your browser and happy editing :smile_cat:

TroubleShooting

Some botfront cli commands that may help if you run into problems:

botfront init     # create a new botfront project
botfront logs     # show the logs!
botfront killall  # stop all docker services
botfront down     # stop all botfront services
botfront up       # restart botfront
botfront docs     # open the docs in your browser

Note that these should be run from the same directory as your botfront project

Contribute

We ❤️ contributions of all size and sorts. If you find a typo, if you want to improve a section of the documentation or if you want to help with a bug or a feature, here are the steps:

  1. Fork the repo and create a new branch, say fix-botfront-typo-1
  2. Fix/improve the codebase
  3. Commit the changes. Commit message must follow the naming convention, say fix(conversation builder): display story groups in alphabetical order
  4. Make a pull request. Pull request name must follow the naming convention. It can simply be one of your commit messages, just copy paste it, e.g. fix(readme): improve the readability and move sections
  5. Submit your pull request and wait for all checks passed (up to an hour)
  6. Request reviews from one of the developers from our core team.
  7. Get a 👍 and PR gets merged.

Well done! Once a PR gets merged, here are the things happened next:

  • all Docker images tagged with branch-master will be automatically updated in an hour. You may check the status on the Actions tab.
  • your contribution and commits will be included in our release note.

Testing

End to end tests are using the Cypress testing framework.

To manually run the Cypress tests, you need to have Botfront running in development mode. Some tests also require Rasa to be available.

Once you are at the root of the repo, you can enter the following.

cd botfront
# if you want to open Cypress' graphical interface
npx cypress open
# If you want to run the whole suite in headless mode
# This could take up to an hour depending on your computer
npx cypress run
# If you want to run a specific test
npx cypress run --spec "cypress/integration/02_training/training.spec.js"

Commit messages naming convention

To help everyone with understanding the commit history of Botfront, we employ commitlint to enforce the commit styles:

type(scope?): subject

where type is one of the following:

  • build
  • ci
  • chore
  • docs
  • feat
  • fix
  • perf
  • refactor
  • revert
  • style
  • test

scope is optional, represents the module your commit working on.

subject explains the commit.

As an example, a commit that improved the documentation:

docs(conversation builder): update slots manager screenshot.

License

Copyright (C) 2021 Dialogue Technologies Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.(C) 2021 Dialogue Technologies Inc. All rights reserved.

changelog

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

1.0.5 (2021-03-19)

1.0.4 (2021-03-16)

Features

  • display custom message returned by deploy webhook (#957) (ed72d03)
  • use logos on demo (6919cbf)

1.0.3 (2021-03-02)

Features

  • add an ui to configure the auth token used to call rasa (#922) (ee18353)

Bug Fixes

  • security vulnerabilities (efe9164)

1.0.2 (2021-02-24)

1.0.1 (2021-02-24)

Features

  • default domain: support session_config key in default domain (94298b8)
  • git-credentials: git credentials are obfuscated (58410c1)

Bug Fixes

  • deploy: add maxBodyLength to axios request (fe432b9)
  • default endpoints, instance, and credentials (077564c)

1.0.0 (2021-02-16)

1.0.0-rc.4 (2021-02-09)

Features

  • add field in metadata form to send paylaod on tooltip close (84e0e4c)
  • add form results import mutation (0e6e243)
  • add requested slot as a slot (e717819)
  • choose env in chatbot page (1106941)
  • choose tooltip placement (f30d0fa)
  • choose tooltip placement (da38957)
  • conversation side panel (531b0df)
  • conversations funnel in analytics (c9ad480)
  • deploy hook (41a511c)
  • error page with report buttons (03c7fec)
  • form slot set node (14398cb)
  • forms (2bd1525)
  • forms chart (3b03411)
  • git integration (53d7f6d)
  • hot change of BF_PROJECT_ID using cli (#876) (a20850e)
  • import and export roles (b55e048)
  • integrated bot testing (6b9ce45)
  • one-click handoff integration to third party services (4054246)
  • search forms in stories (b3f1f4f)
  • share:x role (59517ee)
  • show value on slot_set nodes in form editor (57e086f)
  • default policies: add missing default policies editor (7e3b744)
  • licensing (34c77ec)
  • publish unpublish (c16e8f7)
  • resource role (8a5bfe9)
  • resources:r/w role for editing endpoints (8efbc68)
  • set logos per project (#151) (a7f1f48)
  • smart stories search (2e25d43)
  • top triggers in analytics (4e2de3d)
  • trigger visualization option (fc68ed2)
  • widget props form (af9440f)
  • xlsx export (994dea5)
  • story-triggers: visualization option (6874c71)
  • validation tab (41c4bd4)
  • activity: shortcut to toggle conversation popup (b4b20cf)
  • forms: add result viewing page (22e83be)
  • analytics and conversations link (c35ba30)
  • conversations: click a user to filter by Id (d4bda7e)
  • date filter for incoming utterances (0e88c34)
  • filter conversations by duration (2a8556c)
  • urls in sequence trigger (55b3863)
  • analytics: cards can be added and deleted (a9d2446)
  • analytics: option to update date range for all cards at once (2157798)
  • conversation viewer: export as markdown (f20bd78)
  • conversation viewer: show button title text in user utterances (ea0f354)
  • rules: support partial or full matching of the url (78fe56f)
  • wide toggle: add toggle button for wide status of analytics card (57dc562)
  • add analytics:w role (7db61d9)
  • add rule to define min time bw 2 triggers (072caa2)
  • admin roles list (a820ce4)
  • dashboard is persisted to db (77c5e77)
  • download conversations from conversations ui (a151df1)
  • edit roles (2a267b8)
  • edit roles children (3683440)
  • improved get RolesData query (b39b689)
  • role edit (3e2f26a)
  • role page (99e3c25)
  • send query trigger as entity (9353b23)
  • send query trigger as entity (6a2499d)
  • show stack trace on permission errors (0da938e)
  • smart stories group (23549f0)
  • smart stories group (57203a1)
  • stories: create and edit trigger conditions (e50b308)
  • stories: create and edit trigger conditions (b0a3a6f)
  • trigger limit on story rules (bf5c06a)
  • update roles description (8be735c)
  • analytics: change fallback count semantics (d4bde03)
  • analytics: keep both kinds of fallback cards side by side (69ea7d4)
  • analytics by lang: add language selector to analytics (#5) (a25aeab)
  • image upload: add upload and delete routes (41b923d)
  • image upload: call image delete webhook from deleteResponse (4ca39c3)
  • image upload: connect image upload to webhook (f0e378d)
  • intent dropdown: show canonical example (129f9eb)
  • webhooks: add webhooks in global settings (8752e83)
  • add conversations mutations names (00de829)
  • add graphQL schema for activity (4ca47e1)
  • add resolver for activity (d9cbb6a)
  • add test for cannonical example in conversation builder (71c9bd0)
  • add ui for conversation filters (776f5ce)
  • allow the cannonical field in example utils (5df5342)
  • analytics table view (e3194bb)
  • canonical example shown in new utterances (424ad52)
  • conversation popup for utterances (157fbc8)
  • format newlines for React Markdown component (fe5a276)
  • prefer cannonical examples in conversation builder (22adca9)
  • projects created with correct params + hide platform settings from project admins (#8) (cf13a27)
  • reset button, hide/reveal and style changes (3dcf651)
  • activity: add filtering (1f005d6)
  • activity: attempt at optimistic rerendering (323668f)
  • activity: batch reinterpret only visible items (5af9c85)
  • activity: use subscriptions instead of query (9102c35)
  • analytics: add environment selector (1f6e02a)
  • analytics: add redux state for card settings (ced418d)
  • analytics: add reordering of cards (9d5e2da)
  • analytics: change fallback metric (617afd4)
  • show empty buckets in analytics (26e5d55)
  • analytics: add dnd (41ff8bd)
  • analytics: discard data points with no timestamp (fe09821)
  • analytics: exclusion and fallback templates (82a7c13)
  • analytics: wip: add exclusion/inclusion settings (b2b752d)
  • removes tabs in settings when only one environment (5041644)
  • shift enter creates newline (af2af20)
  • test for the apperance of tabs (07f5d1f)
  • analytics: add conversationCounts query (5f1d017)
  • analytics: add exclude param to conversationCounts (d551dee)
  • analytics: add LineChart (4cc6362)
  • analytics: add placeholder for missing data (f265613)
  • analytics: add query params to intent freqs (3ade828)
  • analytics: add responseCounts query (2a97d48)
  • analytics: add storybook (163a7cb)
  • analytics: added title and chart selection (4b829b8)
  • analytics: analyticsCard (f9d7f71)
  • analytics: change from voronoi mesh to slice tooltips (3f3d11b)
  • analytics: defaults, add query fields (0db2d38)
  • analytics: fix axis/point alignment (5b35f4c)
  • analytics: graph components (6f583e9)
  • analytics: name buckets by right bound (d904198)
  • analytics: new cards (1236f50)
  • analytics: pluralization (9335719)
  • analytics: refactor props (58a5807)
  • analytics: refactor using useQuery hook (eefc3e1)
  • image upload: wip (2fc4e26)
  • add a date picker component (03f484d)
  • add bad lines to prevent crashes on md error (894c6eb)
  • add role for analytics (b5044f5)
  • added default settings for gke dev (70f5739)
  • basic analytics dashboard structure (5ce6b9f)
  • conversation durations chart (3f95093)
  • conversation environement selector ui (15472b3)
  • default default domain in admin settings (5e2fe07)
  • environement selector in conversations (0e958bd)
  • move import css from Datepicker to main.less (5090659)
  • tests for the datepicker Component (553ba02)
  • analytics: refactor props (4ec2c5e)
  • analytics: storybook (4d7e32e)
  • intent frequencies (588b2fb)
  • nlu analytics with graphql (1d258a8)
  • prototyp convo length charts (466b86d)
  • forms: basic support for forms in conv. builder (c160d99)
  • forms: first commit (b489bf2)
  • add a popup for story group exception alerts (5fe6531)
  • add BadLineLabel for errors in visual editor (ff13088)
  • add deployment tab to settings menu (779b360)
  • add exceptions in visual story editor (2333986)
  • add icon indicators for story exceptions (77e788b)
  • add icon indicators for story exceptions (2ca4bb8)
  • add option to enable additional environment (3f4186a)
  • add response context to StotyEditorContainer (4344938)
  • add seperate environments and settings (679eb09)
  • add style.less file for settings ui (f008256)
  • cli for EE (3be4be6)
  • collapsable stories (f52d54b)
  • create tests for deployment env settings (2937518)
  • disable loading model from bucket (fa8f4cf)
  • exclude stories with errors from training (bde114b)
  • frontend excepetion handling in visual story (acb6d93)
  • links to Spectrum in menu and docs (3f77d44)
  • merge deleted stories (ebab5f6)
  • action viewer: Add action viewer component. (3c25573)
  • action viewer: Add action viewer component. (3870668)
  • Action/UserUtterancePopupContent: don't save on whitespace or null (7add46d)
  • ActionPopupContent: first commit (c5a7002)
  • ActionPopupContent: fix overzealous search & replace (c17a199)
  • ActionPopupContent/SlotPopupContent: misc (a7d05a4)
  • AddStoryLine: add availableActions prop (5fcce76)
  • AddStoryLine: first commit (2b3cd75)
  • bot response: new bubble on enter (045bec2)
  • bot response input: change placeholder (6adefbe)
  • BotResponseContainer: edit mode (aab2cc2)
  • BotResponseContainer: wip (8db4b47)
  • BotResponseContainer: wip (91380c7)
  • BotResponsePopupContent: add limitedSelection prop (8d3434f)
  • BotResponsePopupContent: add noButtonResponse prop (ecf5141)
  • BotResponsePopupContent: close modal on dimmer click (9080f5b)
  • BotResponsePopupContent: first commit (4668b22)
  • BotResponsePopupContent: fix close on modal open (ae02426)
  • BotResponsePopupContent: fix close on modal open (e977d0a)
  • BotResponsesContainer: click ellipsis to insert (efd2e61)
  • BotResponsesContainer: click ellipsis to insert (9e73aa8)
  • conversation editor: DashedButton component (35b9163)
  • logo: Added logo field in the global public settings (8be19f2)
  • offline templates: error catching for missing templates (07019bd)
  • offline templates: full responses are exported with domain (6478df2)
  • oos: change export format from tsv to csv (9f3abd1)
  • oos: make intent nullifiable (b7eae05)
  • PayloadEditor: add entity button only shown if all entities have value set (90d886e)
  • PayloadEditor: first commit (65d676b)
  • quick replies: comply with Messenger protocol (02b65a3)
  • quick replies: first commit (746c88d)
  • quick replies: refactor state management (cbd718e)
  • quick replies: save text-less responses (5dbfcae)
  • rasa-1.0: Migrated rasa-1.0 from the open source (e8f4583)
  • rbac: added roles for project info & Rules (de3cd68)
  • rbc: add Process in bulk for nlu-data:w (7a3b832)
  • rbc: add roles for activity - validate, delete and intent (f8a80ac)
  • rbc: add roles for the NLU model menu adn playground (c5b4a89)
  • rbc: add roles to NLU model (complete), for frontend (507f2ba)
  • rbc: added roles for project settings (a748b72)
  • rbc: new and duplicate models removed instead of disabled (c9b476e)
  • rbc: NLU model frontend (679fb1b)
  • roles: better roles for nlu settings (8706452)
  • slot popup content: link to slots (846d8e5)
  • slot-label: add slot label (f0627fb)
  • slot-label: add slot label (cb730b8)
  • SlotPopupContent: context controlled by storybook knob (a81a1e4)
  • SlotPopupContent: first commit (4ab79e6)
  • SlotPopupContent: refactor, add Link (0c44139)
  • smart tips: added boldface parser for tip message body (bdb58b1)
  • smart tips: changed message wording (462326f)
  • smart tips: global threshold can now be set in project settings (e45b0a1)
  • smart tips: integrated smart tips in activity screen (31a8420)
  • smart tips: make default nlu th 0.75 (e8abe94)
  • smart tips: style -- changed look of action buttons according to spec (d66949f)
  • smart tips: ui changes (a93b986)
  • stories: add toggle to switch between markdown/visual editor (b66e2c9)
  • stories: permissions (09c4d71)
  • story controller: getPossibleInsertions (61d4f58)
  • StoryController: initial commit (4b2ccc5)
  • StoryVisualEditor: better insert experience (8c54aeb)
  • StoryVisualEditor: better insert experience (87cecdf)
  • StoryVisualEditor: can add action and slot (894f69a)
  • StoryVisualEditor: can add action and slot (8a2e843)
  • StoryVisualEditor: can add every type of line (91573b3)
  • StoryVisualEditor: can add every type of line (f30b840)
  • StoryVisualEditor: can add user utterance from input (d5793ce)
  • StoryVisualEditor: can add user utterance from input (fcb173f)
  • StoryVisualEditor: can add user utterance from payload (1bef4f6)
  • StoryVisualEditor: can add user utterance from payload (37be9b8)
  • StoryVisualEditor: don't display error on payload fetch fail (4af8dc4)
  • StoryVisualEditor: don't update DOM when blur target is descendent (f58c0d7)
  • StoryVisualEditor: don't update DOM when blur target is descendent (89808bb)
  • StoryVisualEditor: integrate getUtteranceFromPayload (2ae6824)
  • StoryVisualEditor: integration (37d4a4d)
  • StoryVisualEditor: new utterances are parsed (bd1e888)
  • StoryVisualEditor: null intents marked with dash (8b0dbd0)
  • StoryVisualEditor: place insertLine cursor on last line by default (11db5de)
  • StoryVisualEditor: remove duplicate method (05d8586)
  • StoryVisualEditor: style fixes; add trash to action and slot lines (6c90a16)
  • StoryVisualEditor: style specificity (8b135e4)
  • StoryVisualEditor: use StoryController (9e342af)
  • StoryVisualEditor: wip (3408d16)
  • toggle: make toggle appear outside intro stories (3dd3c8a)
  • toggle: refactor style (75267c3)
  • user utterance container: save on blur (63a1cc5)
  • user utterance container: save on blur (907443c)
  • UserUtterancePopupContent: User says menu (42f13fe)
  • UtteranceContainer: wip (a28bfd1)
  • UtteranceContainer: wip (291e8d1)
  • visual editor: close all hanging menus onmouseleave (5c97eb4)
  • context setup for stories (2bfe62a)
  • get utterance from payload (6a8d13b)
  • method to insert an example with the language (1f33dc8)
  • persist story mode (f370e0e)
  • quick replies component (4e81555)
  • StoryVisualEditor: wip (104ec88)
  • UserUtteranceContainer: fill onDelete prop (053cd8e)
  • UtteranceContainer: wip (a41abfe)
  • UtteranceContainer: wip (cce53b2)
  • VisualStoryEditor: wip (2097fe8)
  • added field to set small logo (1cd338e)
  • re-enabled bot response NLU criterias (13ef2a2)
  • rbc: add roles to activity panes (313cae5)
  • rbc: add roles to NLU model menu (d4727be)
  • rbc: disabled entity popup for required permision (ef1c71c)
  • roles: add viewer, editor and admin for front end (1e09537)
  • roles: added backend tests (176b2c8)
  • roles: conversations (860bf5d)
  • roles: dynamic routing (eaab9bc)
  • roles: dynamic sidebar and routing + tests (e3e6012)
  • roles: improvements (140fde5)
  • roles: made nlu_models pub secure (e6209e8)
  • roles: nlu models (23b3d94)
  • roles: nlu-model:x can now view models (c0ac1ea)
  • roles: responses (0d38892)
  • roles: roles on nlu_model backend (89ee4f4)
  • stories-roles: Added permission to stories back end. (90752d8)
  • stories-roles: Added permission to stories front end. (8906edd)
  • stories-slots: Slots and stories are added to ee. (c36023a)
  • VisualStoryEditor: wip (4d524ca)
  • activity api roles (0ed9f73)
  • corrections following tests (532a336)
  • story error boundary (e665afb)
  • test for the creation/deletion of a project (8f2e536)
  • tests for multi environments in conversations (ba98e92)

Bug Fixes

  • a typo in the story rules editor (c785022)
  • action endpoint save does not restart rasa (0aa0c56)
  • add / in front of the initPayload in widget props (1826a39)
  • added test case to reproduce error (9a42d97)
  • all projects were visible to all users roles (ed4c62e)
  • allow empty and negative number in validation (9d009ab)
  • Analytics display duration as time(s)<time(s) (aeb7e31)
  • analytics duration: axis values (6cf27f2)
  • analytics duration: axis values (d50d9b9)
  • analytics screen crash when switching projects (1ed1e45)
  • automatic slot creation mechanism (7eb1aca)
  • bad analytics filter (bff8f06)
  • before/after each in convo tests (b026efb)
  • before/after each in convo tests (68bb7c6)
  • broken conversation type filter (356bd89)
  • change api url if the run is from ci (46d233e)
  • changing environment disables filtering (8e7e736)
  • conversation bubbles were not working after import (9ff4109)
  • conversation linking with environments (5f48845)
  • conversation test needs to wait for rasa (cf8f237)
  • conversation viewer: switching conversations (5d38f4f)
  • crash in nlu evaluation (962c281)
  • custom messages (b66677a)
  • custom range in date picker (a040628)
  • custom range in date picker (0d3d21e)
  • date filter convs (c4d9303)
  • date picker creashes with a one day range (17a7aa0)
  • date ranges for analytics line chart (5a3d12d)
  • default filters for conversations over time (8c0d16d)
  • destructuring error when deployment is null (623fdd8)
  • duplicates in stories -> links menu (5ad961f)
  • edited activity data is not loaded (dff7835)
  • env selector and the corresponding test (99da2af)
  • env selector and the corresponding test (cd34084)
  • error on delete user (b4d7157)
  • error were still displayed after disabling page change call backs (46867cd)
  • exis title unit format (fb18aa7)
  • export for rasa: subscribe to nlu_models (fa13923)
  • fix broken popups (d22936b)
  • fix git feature (#885) (f303539)
  • fix import domains with forms as list of strings (514749c)
  • fixed test set name (ad451cd)
  • fixed whitescreen when switching project (c555519)
  • form submission compatibility with rasa 2 (83b81ed)
  • form submission date, add missing quotes around csv cells in export (061607d)
  • form were not displayed after an import (7f19004)
  • hide conversation filters: clickable area (4452c13)
  • illegal slot name (0f4dec0)
  • image webhook was not working (#139) (41b774d)
  • images are not deleted on src change (#155) (05fda01)
  • import delayed refresh causes test to fail (1e28f06)
  • import export role bug (a3c57fa)
  • import forms (5140da1)
  • incoming crash when no entities (caba4de)
  • input overflows action dropdown (2fe3c77)
  • instance saving (53ac9bf)
  • intents list in filter was missing new intents (6363927)
  • invalid date in conversation filters (99b8799)
  • link from pie charts (d07e48f)
  • linking to conversations from analytics screen (d85c0a1)
  • long action names overflow dropdown (558320a)
  • merge conversation changes from master (d24459e)
  • merge conversation changes from master (8e6dd30)
  • merge conversation pagination (9a100b9)
  • metadata typing (a8adb86)
  • misc (7714f89)
  • missing Nivo dependencies (1a0e62d)
  • model bucket not shown in the project admin screen (66985b5)
  • mongo lock (5353edb)
  • nlg endpoint is incorrect in gke default settings (4665cc3)
  • not global admins cant add global admins (2800dec)
  • one too many e's (f7ffb98)
  • only current project is visible from dropdown (672dccd)
  • only delete image if it's not used in an other response (eceefaf)
  • opening a conversation from incoming NLU crashes (#10) (2ed7936)
  • out of scope only exports the first page (a001d47)
  • package.lock was broken after merge (6f67a09)
  • pie chart conversation links (fa063c9)
  • prevent entities report crash when evaluation entities empty (9ed65a3)
  • prevent smart group wipe on import (a472c8f)
  • prevent the saving of incomplete triggers (bedefad)
  • project creation (6751775)
  • project-admin access to projects list (b8f49f7)
  • remove duplicate migration ids (025e1a9)
  • remove roles for users (a90305e)
  • removes a duplicate of insert many (2712612)
  • removes a duplicate of insert many (70e0238)
  • requested_slot (5ca25a4)
  • response deletion when renaming forms (1337714)
  • response role broken by merge (efafa35)
  • restart rasa webhook was only usable by global admin (#141) (1ee400e)
  • roles are duplicated on name change (bcfddcd)
  • roles tests (5cca178)
  • routing for users with global scope (6b1e82f)
  • safety (#875) (46398e9)
  • selecting fallback templates does nothing (79c961c)
  • set correct deployment name (9d73b88)
  • set correct NLG endpoint in default GKE settings (fccc7af)
  • slot set import position (e9dfd1e)
  • some conversations of the day were not displayed by default (8c7dd47)
  • story group delete and unselect (ccf2c6b)
  • story rules form: deletion of list elements (49502b2)
  • subscription without a projectId (fb4c29e)
  • test case issues (#886) (f562cc9)
  • test case saving (43ac133)
  • the language selector for the widget was broken (#257) (7b14444)
  • the payload of the rules were missing a slash at the beginning (a4425e0)
  • timezone support for conv filter, analytics (97ba2f1)
  • timezone support for conversation viewer (9e3722e)
  • training broken after merge issue (96ec5c6)
  • trigger stopwatch icon is not alligned (532d809)
  • user roles exist after user deletion (a16485f)
  • warning were displayed when using forms in branches (f101ad4)
  • webchat url (48d7679)
  • widget snippet was not working (c363cd2)
  • triggers: wrong payload sent when entities are passed (#56) (54ecc15)
  • bot responses wrap correctly if unhovered (0c9ccb3)
  • add empty branches to new stories (f6d810e)
  • add quickreply button hiddem (739f1c4)
  • adjust line height for story group menu items (33f3648)
  • alerts not removed if intro story deleted (7f49c41)
  • better errors for templates and slots (c5becb9)
  • bot_response.spec (9e11e89)
  • canonical dataCy change and click gem loop (5f523d8)
  • check if there is environments before adding them to the options (bb29363)
  • crash in BranchTabLabel with old DataBases (be8e625)
  • crash in BranchTabLabel with old DataBases (3513ea3)
  • default default domain for gke (ae3e116)
  • default settings prevent widget display (a6b8553)
  • deleting a story deletes the whole story group (9401987)
  • dimensions in NLU statistics (33de3f1)
  • display the current language response content (9fe6d2f)
  • display warnings for bot responses (6662be4)
  • double story group browser (c907fbb)
  • empty default object in extractDomain (086d1b1)
  • enviroments in incoming tab (2afce1a)
  • error when no warnings/errors (a4cda4e)
  • expected to find one child instead of none (8ae0b2f)
  • extra character caused a crash on start (ecad735)
  • fixed intercom and roles in project subs (1a7b247)
  • fixed permission for entities in story editor (e7f3488)
  • fixed press enter to add message (2743081)
  • float slot set to float value (df8bddf)
  • improve project test to ensure (e7b9f00)
  • incoming crash with no deployment env (5e90a69)
  • incoming tabs allow non letter chars (118a22f)
  • incomming tests (20148d8)
  • issue when a project did not have deployment envs (c3c901b)
  • mlu model playground never rendering (d3edb6e)
  • newline applies to multilingual responses (5130863)
  • newline does not need event.preventDefault (433377d)
  • nlu training button permanatly disabled (64b069b)
  • null slots represented as strings (0c93d3f)
  • persist state test clicks too fast (9541c36)
  • prevent missed clicks in add canonical (05b10be)
  • project deletion test was not working on the cloud ci (ba08842)
  • project deletionan optional argument did not have default value (ba0bd0b)
  • project.deployment test fix (2103e23)
  • reloading after evn change (13b4328)
  • remove duplicate context (e53b222)
  • replace spacednewlines with newlines (ccaed6a)
  • revert code for identifying isTextResponse (c3b7568)
  • routes broken after merge (8051772)
  • standardize beforeeach and aftereach (95adf77)
  • story exception test could not find .eq(2) (d960610)
  • test edits should be comments (34e346d)
  • analytics: get rid of file-loader (df30d76)
  • canonical examples: typo (ca641f3)
  • add backwards compatability for data (f4b8cce)
  • add language param to bot response template (38300c7)
  • backwards compatibility for exceptions (198d3c3)
  • cannot add environment - namespace missing (8ccefcd)
  • change constants.json import to new path (1aacb37)
  • change credentials env menu to render once (59d6652)
  • code style (ca393fd)
  • comment onChange prop for UtteranceContainer (91372bd)
  • crashing in story utils with old DBs (14b1763)
  • default settings (423d1bb)
  • deletable on all visual story editor lines (2d13697)
  • delete response on empty text (a1924d4)
  • delete response on empty text (2c75938)
  • duplicate imports (e420372)
  • exceptionAlerts warnings passed bad prop (1279ce3)
  • focus bug with bot utterance input (cf35888)
  • instance creation on project creation (5618a3b)
  • postinstall script (2c62076)
  • preprend ci script with npx (cffad49)
  • prop type declaration (7ea7f27)
  • regex to set correct image version on release (1b99e3d)
  • remove console.log (58fb26f)
  • remove console.log and es lint errors (0735601)
  • show success message after CLI install (5fa3642)
  • stop ace editor unsaved text carryover (9d6a79c)
  • stop crash when creating new story group (f603527)
  • story errors related to templates (7a2f9ec)
  • story groups not deleting (fe86a65)
  • storybooks build (b12047e)
  • storyGroupMenu selected items are blue (f071f4a)
  • test for env change, uses api to insert new conversations (f728eaa)
  • tests were not creating users with scope (0e2ec0e)
  • the selected story group is blue (f59a903)
  • Train button inactive on NLU (7b791ac)
  • typo in docker compose template (f9db13b)
  • typo in utility function (e6df4a9)
  • undefined bot responses preventing training (f912b43)
  • undefined environment handling (becb592)
  • undefined environment tag handling (4d01b4d)
  • unique key warning (cdd5de8)
  • unwanted utterance persistence (e7f7a8c)
  • update regex so it handle change of root url (d4bd05f)
  • upload model to GCS if GKE and Core bucket present (5bd9595)
  • use importProject cypress command in tests (4838424)
  • use importProject cypress command in tests (4dd08aa)
  • use withRouter for routing, func for get url (beed366)
  • use withRouter for routing, func for get url (203e342)
  • validate utterance bug (b2ab1b3)
  • visual editor lines with no type are BadLines (b8b06fd)
  • wrong binary name (a38ed67)
  • wrong channel name in default settings (f5dad8a)
  • wrong db initialization (4988954)
  • wrong default base_url in credentials (a38a0c9)
  • wrong defaultPayload initial value (d063ebd)
  • initial-payload: payload for the widget is unique (ee54b44)
  • project-creation: bug fix while creating a new project (44a0019)
  • rbac: removed unecessary code (f6f1869)
  • rbc: Fixed nlu-data:w test, Online/Offline button for nlu-model:w (dd409f4)
  • roles: minor fixes (68a0bc8)
  • roles: permissions (df65719)
  • roles: Removed fieldset (bbf5758)
  • roles: reverted back a file (964fb93)
  • slot popup: show only categories relevant to selected slot (69c3a0d)
  • stories: Fix roles for stories and train button (bf85d86)
  • Stories: wip-- toggle between code and visual (a37d830)
  • StoryVisualEditor: place insertLine cursor on last line by default (027bff4)
  • StoryVisualEditor: place insertLine cursor on last line by default (73b2c46)
  • test: Moved chats test after roles test (1a605cd)
  • VisualStoryEditor: don't save invalid Md (c660809)
  • training data sub (83f7f2b)
  • useless code changes (e767c1a)
  • wrong format in global settings schema (280437c)
  • wrong second argument for useEffect (9295c61)
  • wrong second argument for useEffect (2ecc37d)
  • test: removed nlu-meta spec file (6f23110)

1.0.0-ee.1-rc.3 (2021-01-11)

Features

1.0.0-ee.1-rc.1 (2020-12-23)

Bug Fixes

  • subscription without a projectId (fb4c29e)
  • the language selector for the widget was broken (#257) (7b14444)

0.27.5-ee.3 (2020-11-25)

Features

0.27.5-ee.2 (2020-11-11)

Bug Fixes

  • response role broken by merge (efafa35)

0.27.5-ee.1 (2020-11-09)

Bug Fixes

0.27.4-ee.1 (2020-11-03)

Features

Bug Fixes

  • linking to conversations from analytics screen (d85c0a1)

0.27.3-ee.1 (2020-10-29)

0.27.1-ee.1 (2020-10-26)

0.27.0-ee.1 (2020-10-14)

Features

  • add field in metadata form to send paylaod on tooltip close (84e0e4c)
  • default policies: add missing default policies editor (7e3b744)

Bug Fixes

  • broken conversation type filter (356bd89)
  • form submission compatibility with rasa 2 (83b81ed)
  • illegal slot name (0f4dec0)
  • import export role bug (a3c57fa)
  • import forms (5140da1)
  • response deletion when renaming forms (1337714)

0.26.0-ee.3 (2020-09-21)

Bug Fixes

  • story group delete and unselect (ccf2c6b)

0.26.0-ee.2 (2020-09-21)

Features

Bug Fixes

  • edited activity data is not loaded (dff7835)

0.26.0-ee.1 (2020-08-27)

Features

  • search forms in stories (b3f1f4f)

Bug Fixes

  • duplicates in stories -> links menu (5ad961f)
  • only delete image if it's not used in an other response (eceefaf)
  • prevent entities report crash when evaluation entities empty (9ed65a3)
  • warning were displayed when using forms in branches (f101ad4)

0.25.8-ee.2 (2020-07-30)

Features

  • one-click handoff integration to third party services (4054246)

0.25.8-ee.1 (2020-07-29)

0.25.7-ee.3 (2020-07-29)

Bug Fixes

  • default filters for conversations over time (8c0d16d)

0.25.7-ee.2 (2020-07-29)

Features

  • top triggers in analytics (4e2de3d)

0.25.7-ee.1 (2020-07-29)

0.25.6-ee.1 (2020-07-27)

0.25.5-ee.3 (2020-07-23)

Features

0.25.5-ee.2 (2020-07-22)

0.25.5-ee.1 (2020-07-21)

0.25.4-ee.1 (2020-07-16)

Bug Fixes

  • allow empty and negative number in validation (9d009ab)

0.25.3-ee.1 (2020-07-14)

Features

Bug Fixes

  • conversation linking with environments (5f48845)
  • form submission date, add missing quotes around csv cells in export (061607d)
  • metadata typing (a8adb86)

0.25.1-ee.2 (2020-07-05)

Features

  • error page with report buttons (03c7fec)

0.25.1-ee.1 (2020-07-01)

Bug Fixes

  • wrong defaultPayload initial value (d063ebd)

0.25.0-ee.5 (2020-07-01)

Bug Fixes

  • action endpoint save does not restart rasa (0aa0c56)

0.25.0-ee.4 (2020-06-30)

Bug Fixes

  • incoming crash when no entities (caba4de)
  • pie chart conversation links (fa063c9)

0.25.0-ee.3 (2020-06-24)

Features

  • choose tooltip placement (f30d0fa)
  • choose tooltip placement (da38957)
  • resource role (8a5bfe9)
  • trigger visualization option (fc68ed2)
  • story-triggers: visualization option (6874c71)
  • resources:r/w role for editing endpoints (8efbc68)

Bug Fixes

  • link from pie charts (d07e48f)
  • prevent the saving of incomplete triggers (bedefad)

0.25.0-ee.2 (2020-06-22)

Bug Fixes

  • added test case to reproduce error (9a42d97)
  • analytics screen crash when switching projects (1ed1e45)
  • fixed test set name (ad451cd)
  • fixed whitescreen when switching project (c555519)

0.25.0-ee.1 (2020-06-19)

Features

Bug Fixes

0.24.3-ee.5 (2020-06-13)

0.24.3-ee.4 (2020-06-11)

Bug Fixes

  • images are not deleted on src change (#155) (05fda01)

0.24.3-ee.3 (2020-06-08)

Bug Fixes

  • add / in front of the initPayload in widget props (1826a39)

0.24.3-ee.2 (2020-06-06)

Features

0.24.3-ee.1 (2020-06-04)

0.24.2-ee.2 (2020-06-03)

0.24.2-ee.1 (2020-06-02)

Features

  • set logos per project (#151) (a7f1f48)
  • activity: shortcut to toggle conversation popup (b4b20cf)

Bug Fixes

  • user roles exist after user deletion (a16485f)

0.24.1-ee.0 (2020-05-28)

0.24.0-ee.0 (2020-05-27)

Features

  • analytics and conversations link (c35ba30)
  • date filter for incoming utterances (0e88c34)
  • deploy hook (41a511c)
  • publish unpublish (c16e8f7)

Bug Fixes

  • conversation bubbles were not working after import (9ff4109)
  • one too many e's (f7ffb98)
  • out of scope only exports the first page (a001d47)

0.23.0-ee.2 (2020-05-12)

Bug Fixes

0.23.0-ee.1 (2020-05-12)

Bug Fixes

  • restart rasa webhook was only usable by global admin (#141) (1ee400e)

0.23.0-ee.0 (2020-05-07)

0.23.0-rc.0-ee.0 (2020-05-05)

Features

  • conversations: click a user to filter by Id (d4bda7e)
  • filter conversations by duration (2a8556c)

Bug Fixes

  • conversation viewer: switching conversations (5d38f4f)
  • hide conversation filters: clickable area (4452c13)

0.22.2-ee.1 (2020-04-22)

0.22.2-ee.0 (2020-04-22)

Features

  • urls in sequence trigger (55b3863)

0.22.1-ee.0 (2020-04-17)

0.22.0-ee.0 (2020-04-16)

Features

  • analytics: cards can be added and deleted (a9d2446)
  • analytics: option to update date range for all cards at once (2157798)
  • conversation viewer: export as markdown (f20bd78)
  • conversation viewer: show button title text in user utterances (ea0f354)
  • wide toggle: add toggle button for wide status of analytics card (57dc562)
  • add analytics:w role (7db61d9)
  • dashboard is persisted to db (77c5e77)
  • rules: support partial or full matching of the url (78fe56f)

Bug Fixes

  • fix broken popups (d22936b)
  • set correct deployment name (9d73b88)
  • timezone support for conv filter, analytics (97ba2f1)
  • timezone support for conversation viewer (9e3722e)

0.21.4-ee.2 (2020-04-01)

Bug Fixes

  • intents list in filter was missing new intents (6363927)

0.21.4-ee.1 (2020-03-31)

0.21.4-ee.0 (2020-03-31)

Bug Fixes

  • a typo in the story rules editor (c785022)
  • project creation (6751775)
  • roles are duplicated on name change (bcfddcd)
  • routing for users with global scope (6b1e82f)

0.20.3-ee.3 (2020-03-16)

Bug Fixes

  • instance saving (53ac9bf)
  • not global admins cant add global admins (2800dec)

0.20.3-ee.2 (2020-03-12)

0.20.3-ee.1 (2020-03-12)

Bug Fixes

  • project-admin access to projects list (b8f49f7)

0.20.3-ee.0 (2020-03-12)

0.20.2-ee.1 (2020-03-10)

Features

Bug Fixes

  • export for rasa: subscribe to nlu_models (fa13923)
  • remove roles for users (a90305e)
  • roles tests (5cca178)

0.20.2-ee.0 (2020-03-09)

Features

  • add rule to define min time bw 2 triggers (072caa2)

Bug Fixes

  • some conversations of the day were not displayed by default (8c7dd47)
  • trigger stopwatch icon is not alligned (532d809)

0.19.3-ee.5 (2020-02-25)

0.19.3-ee.4 (2020-02-24)

0.19.3-ee.3 (2020-02-24)

Features

  • trigger limit on story rules (bf5c06a)

Bug Fixes

  • changing environment disables filtering (8e7e736)

0.19.3-ee.2 (2020-02-19)

Features

  • download conversations from conversations ui (a151df1)

Bug Fixes

  • error were still displayed after disabling page change call backs (46867cd)

0.19.3-ee.1 (2020-02-12)

0.19.3-ee.0 (2020-02-12)

Bug Fixes

  • story rules form: deletion of list elements (49502b2)

0.19.2-ee.0 (2020-02-11)

Bug Fixes

  • triggers: wrong payload sent when entities are passed (#56) (54ecc15)

0.19.1-ee.3 (2020-02-07)

Features

  • send query trigger as entity (9353b23)
  • send query trigger as entity (6a2499d)

0.19.1-ee.2 (2020-02-03)

Bug Fixes

  • all projects were visible to all users roles (ed4c62e)
  • bad analytics filter (bff8f06)
  • only current project is visible from dropdown (672dccd)

0.19.1-ee.1 (2020-01-30)

Features

  • smart stories group (23549f0)
  • smart stories group (57203a1)
  • stories: create and edit trigger conditions (e50b308)
  • stories: create and edit trigger conditions (b0a3a6f)
  • analytics: change fallback count semantics (d4bde03)
  • analytics: keep both kinds of fallback cards side by side (69ea7d4)

Bug Fixes

  • nlg endpoint is incorrect in gke default settings (4665cc3)

0.19.1-ee.0 (2020-01-23)

Features

  • image upload: add upload and delete routes (41b923d)
  • image upload: call image delete webhook from deleteResponse (4ca39c3)
  • image upload: connect image upload to webhook (f0e378d)
  • image upload: wip (2fc4e26)
  • webhooks: add webhooks in global settings (8752e83)

Bug Fixes

0.19.0-alpha.6-ee.0 (2020-01-13)

0.19.0-alpha.5-ee.1 (2020-01-10)

Bug Fixes

  • model bucket not shown in the project admin screen (66985b5)

0.19.0-alpha.5-ee.0 (2020-01-09)

Bug Fixes

  • missing Nivo dependencies (1a0e62d)

0.19.0-alpha.4-ee.5 (2020-01-07)

Bug Fixes

  • package.lock was broken after merge (6f67a09)

0.19.0-alpha.4-ee.4 (2020-01-07)

Bug Fixes

  • remove duplicate migration ids (025e1a9)

0.19.0-alpha.4-ee.3 (2020-01-07)

0.19.0-alpha.4-ee.2 (2020-01-07)

0.19.0-alpha.4-ee.1 (2020-01-07)

Features

  • analytics by lang: add language selector to analytics (#5) (a25aeab)
  • projects created with correct params + hide platform settings from project admins (#8) (cf13a27)

Bug Fixes

  • opening a conversation from incoming NLU crashes (#10) (2ed7936)
  • set correct NLG endpoint in default GKE settings (fccc7af)

0.18.5-ee.8 (2019-12-17)

0.18.5-ee.7 (2019-12-17)

0.18.5-ee.6 (2019-12-12)

Features

  • intent dropdown: show canonical example (129f9eb)

0.18.5-ee.5 (2019-12-06)

0.18.5-ee.4 (2019-12-03)

Features

  • canonical example shown in new utterances (424ad52)

Bug Fixes

  • invalid date in conversation filters (99b8799)

0.18.5-ee.3 (2019-12-03)

Features

  • conversation popup for utterances (157fbc8)

Bug Fixes

0.18.5-ee.2 (2019-11-29)

0.18.5-ee.1 (2019-11-27)

0.18.5-ee.0 (2019-11-26)

Features

  • add ui for conversation filters (776f5ce)
  • analytics table view (e3194bb)
  • reset button, hide/reveal and style changes (3dcf651)
  • activity: add filtering (1f005d6)
  • activity: batch reinterpret only visible items (5af9c85)

Bug Fixes

  • Analytics display duration as time(s)<time(s) (aeb7e31)
  • analytics duration: axis values (6cf27f2)
  • analytics duration: axis values (d50d9b9)
  • change api url if the run is from ci (46d233e)
  • custom range in date picker (a040628)
  • custom range in date picker (0d3d21e)
  • date picker creashes with a one day range (17a7aa0)
  • date ranges for analytics line chart (5a3d12d)
  • env selector and the corresponding test (99da2af)
  • env selector and the corresponding test (cd34084)
  • input overflows action dropdown (2fe3c77)
  • long action names overflow dropdown (558320a)
  • removes a duplicate of insert many (2712612)
  • removes a duplicate of insert many (70e0238)

0.18.2-ee.0 (2019-11-18)

0.18.1-ee.3 (2019-11-14)

Bug Fixes

  • destructuring error when deployment is null (623fdd8)
  • training broken after merge issue (96ec5c6)

0.18.1-ee.2 (2019-11-14)

Features

  • activity: attempt at optimistic rerendering (323668f)
  • activity: use subscriptions instead of query (9102c35)

Bug Fixes

  • selecting fallback templates does nothing (79c961c)

0.18.1-ee.1 (2019-11-13)

Features

  • add conversations mutations names (00de829)
  • add graphQL schema for activity (4ca47e1)
  • add resolver for activity (d9cbb6a)

Bug Fixes

  • before/after each in convo tests (b026efb)
  • before/after each in convo tests (68bb7c6)
  • conversation test needs to wait for rasa (cf8f237)
  • error on delete user (b4d7157)
  • import delayed refresh causes test to fail (1e28f06)
  • merge conversation changes from master (d24459e)
  • merge conversation changes from master (8e6dd30)
  • merge conversation pagination (9a100b9)
  • nlu training button permanatly disabled (64b069b)
  • use importProject cypress command in tests (4838424)
  • use importProject cypress command in tests (4dd08aa)
  • use withRouter for routing, func for get url (beed366)
  • use withRouter for routing, func for get url (203e342)

0.18.0-rc.1-ee.1 (2019-11-12)

0.18.0-rc.0-ee.1 (2019-11-11)

Features

  • analytics: change fallback metric (617afd4)
  • show empty buckets in analytics (26e5d55)
  • analytics: add dnd (41ff8bd)
  • analytics: add redux state for card settings (ced418d)
  • analytics: add reordering of cards (9d5e2da)
  • analytics: exclusion and fallback templates (82a7c13)
  • analytics: wip: add exclusion/inclusion settings (b2b752d)

0.17.2-ee.8 (2019-11-11)

Bug Fixes

  • persist state test clicks too fast (9541c36)
  • story exception test could not find .eq(2) (d960610)

0.17.2-ee.7 (2019-11-07)

Bug Fixes

  • double story group browser (c907fbb)
  • fixed intercom and roles in project subs (1a7b247)

0.17.2-ee.6 (2019-11-05)

Bug Fixes

  • canonical dataCy change and click gem loop (5f523d8)
  • incoming crash with no deployment env (5e90a69)
  • prevent missed clicks in add canonical (05b10be)
  • standardize beforeeach and aftereach (95adf77)
  • test edits should be comments (34e346d)

0.17.2-ee.5 (2019-11-04)

Bug Fixes

  • bot_response.spec (9e11e89)
  • expected to find one child instead of none (8ae0b2f)
  • mlu model playground never rendering (d3edb6e)

0.17.2-ee.4 (2019-11-01)

0.17.2-ee.3 (2019-11-01)

Features

  • add test for cannonical example in conversation builder (71c9bd0)
  • allow the cannonical field in example utils (5df5342)
  • prefer cannonical examples in conversation builder (22adca9)

Bug Fixes

  • canonical examples: typo (ca641f3)
  • enviroments in incoming tab (2afce1a)
  • incoming tabs allow non letter chars (118a22f)
  • incomming tests (20148d8)
  • reloading after evn change (13b4328)

0.17.2-ee.2 (2019-10-30)

Features

  • format newlines for React Markdown component (fe5a276)
  • removes tabs in settings when only one environment (5041644)
  • shift enter creates newline (af2af20)
  • test for the apperance of tabs (07f5d1f)

Bug Fixes

  • newline applies to multilingual responses (5130863)
  • newline does not need event.preventDefault (433377d)
  • replace spacednewlines with newlines (ccaed6a)
  • revert code for identifying isTextResponse (c3b7568)

0.17.2-ee.1 (2019-10-30)

0.17.0-ee.9 (2019-10-30)

Bug Fixes

  • analytics: get rid of file-loader (df30d76)

0.17.0-ee.8 (2019-10-29)

0.17.0-ee.7 (2019-10-29)

Features

  • analytics: add conversationCounts query (5f1d017)
  • analytics: add environment selector (1f6e02a)
  • analytics: add exclude param to conversationCounts (d551dee)
  • analytics: add LineChart (4cc6362)
  • analytics: add placeholder for missing data (f265613)
  • analytics: add query params to intent freqs (3ade828)
  • analytics: add responseCounts query (2a97d48)
  • analytics: add storybook (163a7cb)
  • analytics: added title and chart selection (4b829b8)
  • analytics: analyticsCard (f9d7f71)
  • analytics: change from voronoi mesh to slice tooltips (3f3d11b)
  • analytics: defaults, add query fields (0db2d38)
  • analytics: discard data points with no timestamp (fe09821)
  • analytics: fix axis/point alignment (5b35f4c)
  • analytics: graph components (6f583e9)
  • analytics: name buckets by right bound (d904198)
  • analytics: new cards (1236f50)
  • analytics: pluralization (9335719)
  • analytics: refactor using useQuery hook (eefc3e1)
  • add a date picker component (03f484d)
  • add role for analytics (b5044f5)
  • basic analytics dashboard structure (5ce6b9f)
  • move import css from Datepicker to main.less (5090659)
  • nlu analytics with graphql (1d258a8)
  • tests for the datepicker Component (553ba02)
  • analytics: refactor props (4ec2c5e)
  • analytics: refactor props (58a5807)
  • analytics: storybook (4d7e32e)
  • conversation durations chart (3f95093)
  • intent frequencies (588b2fb)
  • prototyp convo length charts (466b86d)

Bug Fixes

  • dimensions in NLU statistics (33de3f1)
  • fixed press enter to add message (2743081)
  • routes broken after merge (8051772)

0.17.0-ee.6 (2019-10-29)

0.17.0-ee.5 (2019-10-29)

0.17.0-ee.4 (2019-10-28)

0.17.0-ee.3 (2019-10-28)

0.17.0-ee.2 (2019-10-27)

0.17.0-ee.1 (2019-10-27)

Features

  • forms: basic support for forms in conv. builder (c160d99)

Bug Fixes

  • issue when a project did not have deployment envs (c3c901b)

0.16.3-rc.1-ee.4 (2019-10-21)

0.16.3-rc.1-ee.3 (2019-10-21)

Bug Fixes

  • check if there is environments before adding them to the options (bb29363)
  • test for env change, uses api to insert new conversations (f728eaa)

0.16.3-rc.1-ee.2 (2019-10-21)

0.16.3-rc.1-ee.1 (2019-10-20)

0.16.3-ee.1 (2019-10-18)

Features

0.16.2-ee.6 (2019-10-17)

Bug Fixes

  • fixed permission for entities in story editor (e7f3488)

0.16.2-ee.5 (2019-10-16)

0.16.2-ee.4 (2019-10-16)

0.16.2-ee.3 (2019-10-16)

Features

  • conversation environement selector ui (15472b3)
  • corrections following tests (532a336)
  • environement selector in conversations (0e958bd)
  • tests for multi environments in conversations (ba98e92)

Bug Fixes

  • update regex so it handle change of root url (d4bd05f)

0.16.2-ee.2 (2019-10-10)

0.16.2-ee.1 (2019-10-10)

Bug Fixes

  • project deletion test was not working on the cloud ci (ba08842)

0.16.0-rc.13-ee.1 (2019-10-09)

0.16.0-rc.12-ee.2 (2019-10-09)

0.16.0-rc.12-ee.1 (2019-10-09)

0.16.0-rc.11-ee.2 (2019-10-07)

Bug Fixes

  • display the current language response content (9fe6d2f)

0.16.0-rc.11-ee.1 (2019-10-04)

Features

  • test for the creation/deletion of a project (8f2e536)

Bug Fixes

  • improve project test to ensure (e7b9f00)
  • project deletionan optional argument did not have default value (ba0bd0b)

0.16.0-rc.10-ee.2 (2019-10-03)

0.16.0-rc.10-ee.1 (2019-10-03)

0.16.0-rc.9-ee.2 (2019-09-30)

0.16.0-rc.9-ee.1 (2019-09-26)

Features

  • default default domain in admin settings (5e2fe07)

Bug Fixes

  • default default domain for gke (ae3e116)

0.16.0-rc.8-ee.3 (2019-09-24)

0.16.0-rc.8-ee.2 (2019-09-23)

0.16.0-rc.8-ee.1 (2019-09-23)

Features

  • added default settings for gke dev (70f5739)
  • story error boundary (e665afb)

Bug Fixes

  • better errors for templates and slots (c5becb9)
  • story errors related to templates (7a2f9ec)

0.16.0-rc.7-ee.2 (2019-09-17)

Bug Fixes

  • float slot set to float value (df8bddf)
  • null slots represented as strings (0c93d3f)

0.16.0-rc.7-ee.1 (2019-09-13)

Features

  • add a popup for story group exception alerts (5fe6531)
  • add bad lines to prevent crashes on md error (894c6eb)
  • add BadLineLabel for errors in visual editor (ff13088)
  • add exceptions in visual story editor (2333986)
  • add icon indicators for story exceptions (77e788b)
  • add icon indicators for story exceptions (2ca4bb8)
  • add response context to StotyEditorContainer (4344938)
  • collapsable stories (f52d54b)
  • exclude stories with errors from training (bde114b)
  • frontend excepetion handling in visual story (acb6d93)
  • links to Spectrum in menu and docs (3f77d44)
  • merge deleted stories (ebab5f6)
  • offline templates: error catching for missing templates (07019bd)
  • offline templates: full responses are exported with domain (6478df2)

Bug Fixes

  • bot responses wrap correctly if unhovered (0c9ccb3)
  • add empty branches to new stories (f6d810e)
  • add quickreply button hiddem (739f1c4)
  • adjust line height for story group menu items (33f3648)
  • alerts not removed if intro story deleted (7f49c41)
  • backwards compatibility for exceptions (198d3c3)
  • crash in BranchTabLabel with old DataBases (be8e625)
  • crash in BranchTabLabel with old DataBases (3513ea3)
  • crashing in story utils with old DBs (14b1763)
  • default settings prevent widget display (a6b8553)
  • deleting a story deletes the whole story group (9401987)
  • display warnings for bot responses (6662be4)
  • empty default object in extractDomain (086d1b1)
  • error when no warnings/errors (a4cda4e)
  • exceptionAlerts warnings passed bad prop (1279ce3)
  • extra character caused a crash on start (ecad735)
  • project.deployment test fix (2103e23)
  • remove console.log and es lint errors (0735601)
  • remove duplicate context (e53b222)
  • show success message after CLI install (5fa3642)
  • stop crash when creating new story group (f603527)
  • story groups not deleting (fe86a65)
  • storyGroupMenu selected items are blue (f071f4a)
  • the selected story group is blue (f59a903)
  • typo in docker compose template (f9db13b)
  • undefined bot responses preventing training (f912b43)
  • visual editor lines with no type are BadLines (b8b06fd)
  • wrong default base_url in credentials (a38a0c9)

0.16.0-rc.4-ee.1 (2019-09-11)

Features

  • add deployment tab to settings menu (779b360)
  • add option to enable additional environment (3f4186a)
  • add seperate environments and settings (679eb09)
  • add style.less file for settings ui (f008256)
  • create tests for deployment env settings (2937518)

Bug Fixes

  • add backwards compatability for data (f4b8cce)
  • cannot add environment - namespace missing (8ccefcd)
  • change constants.json import to new path (1aacb37)
  • change credentials env menu to render once (59d6652)
  • stop ace editor unsaved text carryover (9d6a79c)
  • undefined environment handling (becb592)
  • undefined environment tag handling (4d01b4d)

0.15.5-ee.13 (2019-09-05)

0.15.5-ee.12 (2019-09-04)

0.15.5-ee.11 (2019-08-28)

Bug Fixes

  • add language param to bot response template (38300c7)
  • remove console.log (58fb26f)

0.15.5-ee.10 (2019-08-25)

Bug Fixes

0.15.5-ee.9 (2019-08-19)

0.15.5-ee.8 (2019-08-19)

0.15.5-ee.7 (2019-08-16)

Features

  • quick replies: comply with Messenger protocol (02b65a3)
  • quick replies: first commit (746c88d)
  • quick replies: refactor state management (cbd718e)
  • quick replies: save text-less responses (5dbfcae)
  • slot popup content: link to slots (846d8e5)
  • visual editor: close all hanging menus onmouseleave (5c97eb4)

Bug Fixes

  • delete response on empty text (a1924d4)
  • delete response on empty text (2c75938)
  • typo in utility function (e6df4a9)

0.15.5-ee.6 (2019-08-15)

Features

0.15.5-ee.5 (2019-08-14)

Features

  • story controller: getPossibleInsertions (61d4f58)
  • user utterance container: save on blur (63a1cc5)
  • user utterance container: save on blur (907443c)

Bug Fixes

  • focus bug with bot utterance input (cf35888)
  • prop type declaration (7ea7f27)

0.15.5-ee.4 (2019-08-12)

Features

  • disable loading model from bucket (fa8f4cf)
  • bot response: new bubble on enter (045bec2)
  • bot response input: change placeholder (6adefbe)

Bug Fixes

  • comment onChange prop for UtteranceContainer (91372bd)
  • wrong db initialization (4988954)

0.15.5-ee.3 (2019-08-12)

0.15.5-ee.2 (2019-08-12)

Features

  • method to insert an example with the language (1f33dc8)
  • persist story mode (f370e0e)
  • action viewer: Add action viewer component. (3c25573)
  • action viewer: Add action viewer component. (3870668)
  • ActionPopupContent/SlotPopupContent: misc (a7d05a4)
  • BotResponseContainer: edit mode (aab2cc2)
  • BotResponseContainer: wip (8db4b47)
  • BotResponseContainer: wip (91380c7)
  • BotResponsePopupContent: fix close on modal open (ae02426)
  • BotResponsesContainer: click ellipsis to insert (efd2e61)
  • slot-label: add slot label (f0627fb)
  • slot-label: add slot label (cb730b8)
  • stories: add toggle to switch between markdown/visual editor (b66e2c9)
  • StoryController: initial commit (4b2ccc5)
  • StoryVisualEditor: better insert experience (8c54aeb)
  • StoryVisualEditor: can add action and slot (894f69a)
  • StoryVisualEditor: can add action and slot (8a2e843)
  • StoryVisualEditor: can add every type of line (91573b3)
  • StoryVisualEditor: can add every type of line (f30b840)
  • StoryVisualEditor: can add user utterance from input (d5793ce)
  • StoryVisualEditor: can add user utterance from input (fcb173f)
  • StoryVisualEditor: can add user utterance from payload (1bef4f6)
  • StoryVisualEditor: can add user utterance from payload (37be9b8)
  • StoryVisualEditor: don't display error on payload fetch fail (4af8dc4)
  • StoryVisualEditor: don't update DOM when blur target is descendent (f58c0d7)
  • StoryVisualEditor: integrate getUtteranceFromPayload (2ae6824)
  • StoryVisualEditor: integration (37d4a4d)
  • StoryVisualEditor: new utterances are parsed (bd1e888)
  • StoryVisualEditor: null intents marked with dash (8b0dbd0)
  • StoryVisualEditor: place insertLine cursor on last line by default (11db5de)
  • StoryVisualEditor: remove duplicate method (05d8586)
  • StoryVisualEditor: style fixes; add trash to action and slot lines (6c90a16)
  • StoryVisualEditor: style specificity (8b135e4)
  • StoryVisualEditor: use StoryController (9e342af)
  • toggle: make toggle appear outside intro stories (3dd3c8a)
  • toggle: refactor style (75267c3)
  • UserUtteranceContainer: fill onDelete prop (053cd8e)
  • context setup for stories (2bfe62a)
  • get utterance from payload (6a8d13b)
  • quick replies component (4e81555)
  • StoryVisualEditor: wip (104ec88)
  • UtteranceContainer: wip (a41abfe)
  • UtteranceContainer: wip (cce53b2)
  • VisualStoryEditor: wip (4d524ca)
  • VisualStoryEditor: wip (2097fe8)

Bug Fixes

  • regex to set correct image version on release (1b99e3d)
  • unique key warning (cdd5de8)
  • initial-payload: payload for the widget is unique (ee54b44)
  • slot popup: show only categories relevant to selected slot (69c3a0d)
  • deletable on all visual story editor lines (2d13697)
  • Stories: wip-- toggle between code and visual (a37d830)
  • StoryVisualEditor: place insertLine cursor on last line by default (027bff4)
  • StoryVisualEditor: place insertLine cursor on last line by default (73b2c46)
  • duplicate imports (e420372)
  • VisualStoryEditor: don't save invalid Md (c660809)
  • preprend ci script with npx (cffad49)
  • wrong second argument for useEffect (9295c61)
  • wrong second argument for useEffect (2ecc37d)

0.15.2-ee.1 (2019-07-25)

Features

  • Action/UserUtterancePopupContent: don't save on whitespace or null (7add46d)
  • ActionPopupContent: first commit (c5a7002)
  • ActionPopupContent: fix overzealous search & replace (c17a199)
  • AddStoryLine: add availableActions prop (5fcce76)
  • AddStoryLine: first commit (2b3cd75)
  • BotResponsePopupContent: add limitedSelection prop (8d3434f)
  • BotResponsePopupContent: add noButtonResponse prop (ecf5141)
  • BotResponsePopupContent: close modal on dimmer click (9080f5b)
  • BotResponsePopupContent: first commit (4668b22)
  • BotResponsePopupContent: fix close on modal open (e977d0a)
  • BotResponsesContainer: click ellipsis to insert (9e73aa8)
  • conversation editor: DashedButton component (35b9163)
  • logo: Added logo field in the global public settings (8be19f2)
  • oos: change export format from tsv to csv (9f3abd1)
  • oos: make intent nullifiable (b7eae05)
  • PayloadEditor: add entity button only shown if all entities have value set (90d886e)
  • PayloadEditor: first commit (65d676b)
  • SlotPopupContent: context controlled by storybook knob (a81a1e4)
  • SlotPopupContent: first commit (4ab79e6)
  • SlotPopupContent: refactor, add Link (0c44139)
  • smart tips: added boldface parser for tip message body (bdb58b1)
  • smart tips: changed message wording (462326f)
  • smart tips: make default nlu th 0.75 (e8abe94)
  • smart tips: ui changes (a93b986)
  • stories: permissions (09c4d71)
  • StoryVisualEditor: better insert experience (87cecdf)
  • StoryVisualEditor: don't update DOM when blur target is descendent (89808bb)
  • StoryVisualEditor: wip (3408d16)
  • UserUtterancePopupContent: User says menu (42f13fe)
  • UtteranceContainer: wip (a28bfd1)
  • UtteranceContainer: wip (291e8d1)
  • added field to set small logo (1cd338e)
  • rasa-1.0: Migrated rasa-1.0 from the open source (e8f4583)
  • rbac: added roles for project info & Rules (de3cd68)
  • rbc: add Process in bulk for nlu-data:w (7a3b832)
  • rbc: add roles for activity - validate, delete and intent (f8a80ac)
  • rbc: add roles for the NLU model menu adn playground (c5b4a89)
  • rbc: add roles to NLU model (complete), for frontend (507f2ba)
  • rbc: added roles for project settings (a748b72)
  • rbc: new and duplicate models removed instead of disabled (c9b476e)
  • rbc: NLU model frontend (679fb1b)
  • roles: better roles for nlu settings (8706452)
  • smart tips: global threshold can now be set in project settings (e45b0a1)
  • smart tips: integrated smart tips in activity screen (31a8420)
  • smart tips: style -- changed look of action buttons according to spec (d66949f)
  • re-enabled bot response NLU criterias (13ef2a2)
  • rbc: add roles to activity panes (313cae5)
  • rbc: add roles to NLU model menu (d4727be)
  • rbc: disabled entity popup for required permision (ef1c71c)
  • roles: add viewer, editor and admin for front end (1e09537)
  • roles: added backend tests (176b2c8)
  • roles: conversations (860bf5d)
  • roles: dynamic routing (eaab9bc)
  • roles: dynamic sidebar and routing + tests (e3e6012)
  • roles: improvements (140fde5)
  • roles: made nlu_models pub secure (e6209e8)
  • roles: nlu models (23b3d94)
  • roles: nlu-model:x can now view models (c0ac1ea)
  • roles: responses (0d38892)
  • roles: roles on nlu_model backend (89ee4f4)
  • stories-roles: Added permission to stories back end. (90752d8)
  • stories-roles: Added permission to stories front end. (8906edd)
  • stories-slots: Slots and stories are added to ee. (c36023a)
  • activity api roles (0ed9f73)

Bug Fixes

  • instance creation on project creation (5618a3b)
  • storybooks build (b12047e)
  • project-creation: bug fix while creating a new project (44a0019)
  • stories: Fix roles for stories and train button (bf85d86)
  • code style (ca393fd)
  • default settings (423d1bb)
  • tests were not creating users with scope (0e2ec0e)
  • Train button inactive on NLU (7b791ac)
  • training data sub (83f7f2b)
  • upload model to GCS if GKE and Core bucket present (5bd9595)
  • wrong channel name in default settings (f5dad8a)
  • rbac: removed unecessary code (f6f1869)
  • rbc: Fixed nlu-data:w test, Online/Offline button for nlu-model:w (dd409f4)
  • roles: minor fixes (68a0bc8)
  • roles: permissions (df65719)
  • roles: reverted back a file (964fb93)
  • test: Moved chats test after roles test (1a605cd)
  • useless code changes (e767c1a)
  • roles: Removed fieldset (bbf5758)
  • test: removed nlu-meta spec file (6f23110)
  • wrong format in global settings schema (280437c)

1.0.0-ee.1-rc.1 (2020-12-23)

Bug Fixes

  • subscription without a projectId (fb4c29e)
  • the language selector for the widget was broken (#257) (7b14444)

0.27.5-ee.3 (2020-11-25)

Features

0.27.5-ee.2 (2020-11-11)

Bug Fixes

  • response role broken by merge (efafa35)

0.27.5-ee.1 (2020-11-09)

Bug Fixes

0.27.4-ee.1 (2020-11-03)

Features

Bug Fixes

  • linking to conversations from analytics screen (d85c0a1)

0.27.3-ee.1 (2020-10-29)

0.27.1-ee.1 (2020-10-26)

0.27.0-ee.1 (2020-10-14)

Features

  • add field in metadata form to send paylaod on tooltip close (84e0e4c)
  • default policies: add missing default policies editor (7e3b744)

Bug Fixes

  • broken conversation type filter (356bd89)
  • form submission compatibility with rasa 2 (83b81ed)
  • illegal slot name (0f4dec0)
  • import export role bug (a3c57fa)
  • import forms (5140da1)
  • response deletion when renaming forms (1337714)

0.26.0-ee.3 (2020-09-21)

Bug Fixes

  • story group delete and unselect (ccf2c6b)

0.26.0-ee.2 (2020-09-21)

Features

Bug Fixes

  • edited activity data is not loaded (dff7835)

0.26.0-ee.1 (2020-08-27)

Features

  • search forms in stories (b3f1f4f)

Bug Fixes

  • duplicates in stories -> links menu (5ad961f)
  • only delete image if it's not used in an other response (eceefaf)
  • prevent entities report crash when evaluation entities empty (9ed65a3)
  • warning were displayed when using forms in branches (f101ad4)

0.25.8-ee.2 (2020-07-30)

Features

  • one-click handoff integration to third party services (4054246)

0.25.8-ee.1 (2020-07-29)

0.25.7-ee.3 (2020-07-29)

Bug Fixes

  • default filters for conversations over time (8c0d16d)

0.25.7-ee.2 (2020-07-29)

Features

  • top triggers in analytics (4e2de3d)

0.25.7-ee.1 (2020-07-29)

0.25.6-ee.1 (2020-07-27)

0.25.5-ee.3 (2020-07-23)

Features

0.25.5-ee.2 (2020-07-22)

0.25.5-ee.1 (2020-07-21)

0.25.4-ee.1 (2020-07-16)

Bug Fixes

  • allow empty and negative number in validation (9d009ab)

0.25.3-ee.1 (2020-07-14)

Features

Bug Fixes

  • conversation linking with environments (5f48845)
  • form submission date, add missing quotes around csv cells in export (061607d)
  • metadata typing (a8adb86)

0.25.1-ee.2 (2020-07-05)

Features

  • error page with report buttons (03c7fec)

0.25.1-ee.1 (2020-07-01)

Bug Fixes

  • wrong defaultPayload initial value (d063ebd)

0.25.0-ee.5 (2020-07-01)

Bug Fixes

  • action endpoint save does not restart rasa (0aa0c56)

0.25.0-ee.4 (2020-06-30)

Bug Fixes

  • incoming crash when no entities (caba4de)
  • pie chart conversation links (fa063c9)

0.25.0-ee.3 (2020-06-24)

Features

  • choose tooltip placement (f30d0fa)
  • choose tooltip placement (da38957)
  • resource role (8a5bfe9)
  • trigger visualization option (fc68ed2)
  • story-triggers: visualization option (6874c71)
  • resources:r/w role for editing endpoints (8efbc68)

Bug Fixes

  • link from pie charts (d07e48f)
  • prevent the saving of incomplete triggers (bedefad)

0.25.0-ee.2 (2020-06-22)

Bug Fixes

  • added test case to reproduce error (9a42d97)
  • analytics screen crash when switching projects (1ed1e45)
  • fixed test set name (ad451cd)
  • fixed whitescreen when switching project (c555519)

0.25.0-ee.1 (2020-06-19)

Features

Bug Fixes

0.24.3-ee.5 (2020-06-13)

0.24.3-ee.4 (2020-06-11)

Bug Fixes

  • images are not deleted on src change (#155) (05fda01)

0.24.3-ee.3 (2020-06-08)

Bug Fixes

  • add / in front of the initPayload in widget props (1826a39)

0.24.3-ee.2 (2020-06-06)

Features

0.24.3-ee.1 (2020-06-04)

0.24.2-ee.2 (2020-06-03)

0.24.2-ee.1 (2020-06-02)

Features

  • set logos per project (#151) (a7f1f48)
  • activity: shortcut to toggle conversation popup (b4b20cf)

Bug Fixes

  • user roles exist after user deletion (a16485f)

0.24.1-ee.0 (2020-05-28)

0.24.0-ee.0 (2020-05-27)

Features

  • analytics and conversations link (c35ba30)
  • date filter for incoming utterances (0e88c34)
  • deploy hook (41a511c)
  • publish unpublish (c16e8f7)

Bug Fixes

  • conversation bubbles were not working after import (9ff4109)
  • one too many e's (f7ffb98)
  • out of scope only exports the first page (a001d47)

0.23.0-ee.2 (2020-05-12)

Bug Fixes

0.23.0-ee.1 (2020-05-12)

Bug Fixes

  • restart rasa webhook was only usable by global admin (#141) (1ee400e)

0.23.0-ee.0 (2020-05-07)

0.23.0-rc.0-ee.0 (2020-05-05)

Features

  • conversations: click a user to filter by Id (d4bda7e)
  • filter conversations by duration (2a8556c)

Bug Fixes

  • conversation viewer: switching conversations (5d38f4f)
  • hide conversation filters: clickable area (4452c13)

0.22.2-ee.1 (2020-04-22)

0.22.2-ee.0 (2020-04-22)

Features

  • urls in sequence trigger (55b3863)

0.22.1-ee.0 (2020-04-17)

0.22.0-ee.0 (2020-04-16)

Features

  • analytics: cards can be added and deleted (a9d2446)
  • analytics: option to update date range for all cards at once (2157798)
  • conversation viewer: export as markdown (f20bd78)
  • conversation viewer: show button title text in user utterances (ea0f354)
  • wide toggle: add toggle button for wide status of analytics card (57dc562)
  • add analytics:w role (7db61d9)
  • dashboard is persisted to db (77c5e77)
  • rules: support partial or full matching of the url (78fe56f)

Bug Fixes

  • fix broken popups (d22936b)
  • set correct deployment name (9d73b88)
  • timezone support for conv filter, analytics (97ba2f1)
  • timezone support for conversation viewer (9e3722e)

0.21.4-ee.2 (2020-04-01)

Bug Fixes

  • intents list in filter was missing new intents (6363927)

0.21.4-ee.1 (2020-03-31)

0.21.4-ee.0 (2020-03-31)

Bug Fixes

  • a typo in the story rules editor (c785022)
  • project creation (6751775)
  • roles are duplicated on name change (bcfddcd)
  • routing for users with global scope (6b1e82f)

0.20.3-ee.3 (2020-03-16)

Bug Fixes

  • instance saving (53ac9bf)
  • not global admins cant add global admins (2800dec)

0.20.3-ee.2 (2020-03-12)

0.20.3-ee.1 (2020-03-12)

Bug Fixes

  • project-admin access to projects list (b8f49f7)

0.20.3-ee.0 (2020-03-12)

0.20.2-ee.1 (2020-03-10)

Features

Bug Fixes

  • export for rasa: subscribe to nlu_models (fa13923)
  • remove roles for users (a90305e)
  • roles tests (5cca178)

0.20.2-ee.0 (2020-03-09)

Features

  • add rule to define min time bw 2 triggers (072caa2)

Bug Fixes

  • some conversations of the day were not displayed by default (8c7dd47)
  • trigger stopwatch icon is not alligned (532d809)

0.19.3-ee.5 (2020-02-25)

0.19.3-ee.4 (2020-02-24)

0.19.3-ee.3 (2020-02-24)

Features

  • trigger limit on story rules (bf5c06a)

Bug Fixes

  • changing environment disables filtering (8e7e736)

0.19.3-ee.2 (2020-02-19)

Features

  • download conversations from conversations ui (a151df1)

Bug Fixes

  • error were still displayed after disabling page change call backs (46867cd)

0.19.3-ee.1 (2020-02-12)

0.19.3-ee.0 (2020-02-12)

Bug Fixes

  • story rules form: deletion of list elements (49502b2)

0.19.2-ee.0 (2020-02-11)

Bug Fixes

  • triggers: wrong payload sent when entities are passed (#56) (54ecc15)

0.19.1-ee.3 (2020-02-07)

Features

  • send query trigger as entity (9353b23)
  • send query trigger as entity (6a2499d)

0.19.1-ee.2 (2020-02-03)

Bug Fixes

  • all projects were visible to all users roles (ed4c62e)
  • bad analytics filter (bff8f06)
  • only current project is visible from dropdown (672dccd)

0.19.1-ee.1 (2020-01-30)

Features

  • smart stories group (23549f0)
  • smart stories group (57203a1)
  • stories: create and edit trigger conditions (e50b308)
  • stories: create and edit trigger conditions (b0a3a6f)
  • analytics: change fallback count semantics (d4bde03)
  • analytics: keep both kinds of fallback cards side by side (69ea7d4)

Bug Fixes

  • nlg endpoint is incorrect in gke default settings (4665cc3)

0.19.1-ee.0 (2020-01-23)

Features

  • image upload: add upload and delete routes (41b923d)
  • image upload: call image delete webhook from deleteResponse (4ca39c3)
  • image upload: connect image upload to webhook (f0e378d)
  • image upload: wip (2fc4e26)
  • webhooks: add webhooks in global settings (8752e83)

Bug Fixes

0.19.0-alpha.6-ee.0 (2020-01-13)

0.19.0-alpha.5-ee.1 (2020-01-10)

Bug Fixes

  • model bucket not shown in the project admin screen (66985b5)

0.19.0-alpha.5-ee.0 (2020-01-09)

Bug Fixes

  • missing Nivo dependencies (1a0e62d)

0.19.0-alpha.4-ee.5 (2020-01-07)

Bug Fixes

  • package.lock was broken after merge (6f67a09)

0.19.0-alpha.4-ee.4 (2020-01-07)

Bug Fixes

  • remove duplicate migration ids (025e1a9)

0.19.0-alpha.4-ee.3 (2020-01-07)

0.19.0-alpha.4-ee.2 (2020-01-07)

0.19.0-alpha.4-ee.1 (2020-01-07)

Features

  • analytics by lang: add language selector to analytics (#5) (a25aeab)
  • projects created with correct params + hide platform settings from project admins (#8) (cf13a27)

Bug Fixes

  • opening a conversation from incoming NLU crashes (#10) (2ed7936)
  • set correct NLG endpoint in default GKE settings (fccc7af)

0.18.5-ee.8 (2019-12-17)

0.18.5-ee.7 (2019-12-17)

0.18.5-ee.6 (2019-12-12)

Features

  • intent dropdown: show canonical example (129f9eb)

0.18.5-ee.5 (2019-12-06)

0.18.5-ee.4 (2019-12-03)

Features

  • canonical example shown in new utterances (424ad52)

Bug Fixes

  • invalid date in conversation filters (99b8799)

0.18.5-ee.3 (2019-12-03)

Features

  • conversation popup for utterances (157fbc8)

Bug Fixes

0.18.5-ee.2 (2019-11-29)

0.18.5-ee.1 (2019-11-27)

0.18.5-ee.0 (2019-11-26)

Features

  • add ui for conversation filters (776f5ce)
  • analytics table view (e3194bb)
  • reset button, hide/reveal and style changes (3dcf651)
  • activity: add filtering (1f005d6)
  • activity: batch reinterpret only visible items (5af9c85)

Bug Fixes

  • Analytics display duration as time(s)<time(s) (aeb7e31)
  • analytics duration: axis values (6cf27f2)
  • analytics duration: axis values (d50d9b9)
  • change api url if the run is from ci (46d233e)
  • custom range in date picker (a040628)
  • custom range in date picker (0d3d21e)
  • date picker creashes with a one day range (17a7aa0)
  • date ranges for analytics line chart (5a3d12d)
  • env selector and the corresponding test (99da2af)
  • env selector and the corresponding test (cd34084)
  • input overflows action dropdown (2fe3c77)
  • long action names overflow dropdown (558320a)
  • removes a duplicate of insert many (2712612)
  • removes a duplicate of insert many (70e0238)

0.18.2-ee.0 (2019-11-18)

0.18.1-ee.3 (2019-11-14)

Bug Fixes

  • destructuring error when deployment is null (623fdd8)
  • training broken after merge issue (96ec5c6)

0.18.1-ee.2 (2019-11-14)

Features

  • activity: attempt at optimistic rerendering (323668f)
  • activity: use subscriptions instead of query (9102c35)

Bug Fixes

  • selecting fallback templates does nothing (79c961c)

0.18.1-ee.1 (2019-11-13)

Features

  • add conversations mutations names (00de829)
  • add graphQL schema for activity (4ca47e1)
  • add resolver for activity (d9cbb6a)

Bug Fixes

  • before/after each in convo tests (b026efb)
  • before/after each in convo tests (68bb7c6)
  • conversation test needs to wait for rasa (cf8f237)
  • error on delete user (b4d7157)
  • import delayed refresh causes test to fail (1e28f06)
  • merge conversation changes from master (d24459e)
  • merge conversation changes from master (8e6dd30)
  • merge conversation pagination (9a100b9)
  • nlu training button permanatly disabled (64b069b)
  • use importProject cypress command in tests (4838424)
  • use importProject cypress command in tests (4dd08aa)
  • use withRouter for routing, func for get url (beed366)
  • use withRouter for routing, func for get url (203e342)

0.18.0-rc.1-ee.1 (2019-11-12)

0.18.0-rc.0-ee.1 (2019-11-11)

Features

  • analytics: change fallback metric (617afd4)
  • show empty buckets in analytics (26e5d55)
  • analytics: add dnd (41ff8bd)
  • analytics: add redux state for card settings (ced418d)
  • analytics: add reordering of cards (9d5e2da)
  • analytics: exclusion and fallback templates (82a7c13)
  • analytics: wip: add exclusion/inclusion settings (b2b752d)

0.17.2-ee.8 (2019-11-11)

Bug Fixes

  • persist state test clicks too fast (9541c36)
  • story exception test could not find .eq(2) (d960610)

0.17.2-ee.7 (2019-11-07)

Bug Fixes

  • double story group browser (c907fbb)
  • fixed intercom and roles in project subs (1a7b247)

0.17.2-ee.6 (2019-11-05)

Bug Fixes

  • canonical dataCy change and click gem loop (5f523d8)
  • incoming crash with no deployment env (5e90a69)
  • prevent missed clicks in add canonical (05b10be)
  • standardize beforeeach and aftereach (95adf77)
  • test edits should be comments (34e346d)

0.17.2-ee.5 (2019-11-04)

Bug Fixes

  • bot_response.spec (9e11e89)
  • expected to find one child instead of none (8ae0b2f)
  • mlu model playground never rendering (d3edb6e)

0.17.2-ee.4 (2019-11-01)

0.17.2-ee.3 (2019-11-01)

Features

  • add test for cannonical example in conversation builder (71c9bd0)
  • allow the cannonical field in example utils (5df5342)
  • prefer cannonical examples in conversation builder (22adca9)

Bug Fixes

  • canonical examples: typo (ca641f3)
  • enviroments in incoming tab (2afce1a)
  • incoming tabs allow non letter chars (118a22f)
  • incomming tests (20148d8)
  • reloading after evn change (13b4328)

0.17.2-ee.2 (2019-10-30)

Features

  • format newlines for React Markdown component (fe5a276)
  • removes tabs in settings when only one environment (5041644)
  • shift enter creates newline (af2af20)
  • test for the apperance of tabs (07f5d1f)

Bug Fixes

  • newline applies to multilingual responses (5130863)
  • newline does not need event.preventDefault (433377d)
  • replace spacednewlines with newlines (ccaed6a)
  • revert code for identifying isTextResponse (c3b7568)

0.17.2-ee.1 (2019-10-30)

0.17.0-ee.9 (2019-10-30)

Bug Fixes

  • analytics: get rid of file-loader (df30d76)

0.17.0-ee.8 (2019-10-29)

0.17.0-ee.7 (2019-10-29)

Features

  • analytics: add conversationCounts query (5f1d017)
  • analytics: add environment selector (1f6e02a)
  • analytics: add exclude param to conversationCounts (d551dee)
  • analytics: add LineChart (4cc6362)
  • analytics: add placeholder for missing data (f265613)
  • analytics: add query params to intent freqs (3ade828)
  • analytics: add responseCounts query (2a97d48)
  • analytics: add storybook (163a7cb)
  • analytics: added title and chart selection (4b829b8)
  • analytics: analyticsCard (f9d7f71)
  • analytics: change from voronoi mesh to slice tooltips (3f3d11b)
  • analytics: defaults, add query fields (0db2d38)
  • analytics: discard data points with no timestamp (fe09821)
  • analytics: fix axis/point alignment (5b35f4c)
  • analytics: graph components (6f583e9)
  • analytics: name buckets by right bound (d904198)
  • analytics: new cards (1236f50)
  • analytics: pluralization (9335719)
  • analytics: refactor using useQuery hook (eefc3e1)
  • add a date picker component (03f484d)
  • add role for analytics (b5044f5)
  • basic analytics dashboard structure (5ce6b9f)
  • move import css from Datepicker to main.less (5090659)
  • nlu analytics with graphql (1d258a8)
  • tests for the datepicker Component (553ba02)
  • analytics: refactor props (4ec2c5e)
  • analytics: refactor props (58a5807)
  • analytics: storybook (4d7e32e)
  • conversation durations chart (3f95093)
  • intent frequencies (588b2fb)
  • prototyp convo length charts (466b86d)

Bug Fixes

  • dimensions in NLU statistics (33de3f1)
  • fixed press enter to add message (2743081)
  • routes broken after merge (8051772)

0.17.0-ee.6 (2019-10-29)

0.17.0-ee.5 (2019-10-29)

0.17.0-ee.4 (2019-10-28)

0.17.0-ee.3 (2019-10-28)

0.17.0-ee.2 (2019-10-27)

0.17.0-ee.1 (2019-10-27)

Features

  • forms: basic support for forms in conv. builder (c160d99)

Bug Fixes

  • issue when a project did not have deployment envs (c3c901b)

0.16.3-rc.1-ee.4 (2019-10-21)

0.16.3-rc.1-ee.3 (2019-10-21)

Bug Fixes

  • check if there is environments before adding them to the options (bb29363)
  • test for env change, uses api to insert new conversations (f728eaa)

0.16.3-rc.1-ee.2 (2019-10-21)

0.16.3-rc.1-ee.1 (2019-10-20)

0.16.3-ee.1 (2019-10-18)

Features

0.16.2-ee.6 (2019-10-17)

Bug Fixes

  • fixed permission for entities in story editor (e7f3488)

0.16.2-ee.5 (2019-10-16)

0.16.2-ee.4 (2019-10-16)

0.16.2-ee.3 (2019-10-16)

Features

  • conversation environement selector ui (15472b3)
  • corrections following tests (532a336)
  • environement selector in conversations (0e958bd)
  • tests for multi environments in conversations (ba98e92)

Bug Fixes

  • update regex so it handle change of root url (d4bd05f)

0.16.2-ee.2 (2019-10-10)

0.16.2-ee.1 (2019-10-10)

Bug Fixes

  • project deletion test was not working on the cloud ci (ba08842)

0.16.0-rc.13-ee.1 (2019-10-09)

0.16.0-rc.12-ee.2 (2019-10-09)

0.16.0-rc.12-ee.1 (2019-10-09)

0.16.0-rc.11-ee.2 (2019-10-07)

Bug Fixes

  • display the current language response content (9fe6d2f)

0.16.0-rc.11-ee.1 (2019-10-04)

Features

  • test for the creation/deletion of a project (8f2e536)

Bug Fixes

  • improve project test to ensure (e7b9f00)
  • project deletionan optional argument did not have default value (ba0bd0b)

0.16.0-rc.10-ee.2 (2019-10-03)

0.16.0-rc.10-ee.1 (2019-10-03)

0.16.0-rc.9-ee.2 (2019-09-30)

0.16.0-rc.9-ee.1 (2019-09-26)

Features

  • default default domain in admin settings (5e2fe07)

Bug Fixes

  • default default domain for gke (ae3e116)

0.16.0-rc.8-ee.3 (2019-09-24)

0.16.0-rc.8-ee.2 (2019-09-23)

0.16.0-rc.8-ee.1 (2019-09-23)

Features

  • added default settings for gke dev (70f5739)
  • story error boundary (e665afb)

Bug Fixes

  • better errors for templates and slots (c5becb9)
  • story errors related to templates (7a2f9ec)

0.16.0-rc.7-ee.2 (2019-09-17)

Bug Fixes

  • float slot set to float value (df8bddf)
  • null slots represented as strings (0c93d3f)

0.16.0-rc.7-ee.1 (2019-09-13)

Features

  • add a popup for story group exception alerts (5fe6531)
  • add bad lines to prevent crashes on md error (894c6eb)
  • add BadLineLabel for errors in visual editor (ff13088)
  • add exceptions in visual story editor (2333986)
  • add icon indicators for story exceptions (77e788b)
  • add icon indicators for story exceptions (2ca4bb8)
  • add response context to StotyEditorContainer (4344938)
  • collapsable stories (f52d54b)
  • exclude stories with errors from training (bde114b)
  • frontend excepetion handling in visual story (acb6d93)
  • links to Spectrum in menu and docs (3f77d44)
  • merge deleted stories (ebab5f6)
  • offline templates: error catching for missing templates (07019bd)
  • offline templates: full responses are exported with domain (6478df2)

Bug Fixes

  • bot responses wrap correctly if unhovered (0c9ccb3)
  • add empty branches to new stories (f6d810e)
  • add quickreply button hiddem (739f1c4)
  • adjust line height for story group menu items (33f3648)
  • alerts not removed if intro story deleted (7f49c41)
  • backwards compatibility for exceptions (198d3c3)
  • crash in BranchTabLabel with old DataBases (be8e625)
  • crash in BranchTabLabel with old DataBases (3513ea3)
  • crashing in story utils with old DBs (14b1763)
  • default settings prevent widget display (a6b8553)
  • deleting a story deletes the whole story group (9401987)
  • display warnings for bot responses (6662be4)
  • empty default object in extractDomain (086d1b1)
  • error when no warnings/errors (a4cda4e)
  • exceptionAlerts warnings passed bad prop (1279ce3)
  • extra character caused a crash on start (ecad735)
  • project.deployment test fix (2103e23)
  • remove console.log and es lint errors (0735601)
  • remove duplicate context (e53b222)
  • show success message after CLI install (5fa3642)
  • stop crash when creating new story group (f603527)
  • story groups not deleting (fe86a65)
  • storyGroupMenu selected items are blue (f071f4a)
  • the selected story group is blue (f59a903)
  • typo in docker compose template (f9db13b)
  • undefined bot responses preventing training (f912b43)
  • visual editor lines with no type are BadLines (b8b06fd)
  • wrong default base_url in credentials (a38a0c9)

0.16.0-rc.4-ee.1 (2019-09-11)

Features

  • add deployment tab to settings menu (779b360)
  • add option to enable additional environment (3f4186a)
  • add seperate environments and settings (679eb09)
  • add style.less file for settings ui (f008256)
  • create tests for deployment env settings (2937518)

Bug Fixes

  • add backwards compatability for data (f4b8cce)
  • cannot add environment - namespace missing (8ccefcd)
  • change constants.json import to new path (1aacb37)
  • change credentials env menu to render once (59d6652)
  • stop ace editor unsaved text carryover (9d6a79c)
  • undefined environment handling (becb592)
  • undefined environment tag handling (4d01b4d)

0.15.5-ee.13 (2019-09-05)

0.15.5-ee.12 (2019-09-04)

0.15.5-ee.11 (2019-08-28)

Bug Fixes

  • add language param to bot response template (38300c7)
  • remove console.log (58fb26f)

0.15.5-ee.10 (2019-08-25)

Bug Fixes

0.15.5-ee.9 (2019-08-19)

0.15.5-ee.8 (2019-08-19)

0.15.5-ee.7 (2019-08-16)

Features

  • quick replies: comply with Messenger protocol (02b65a3)
  • quick replies: first commit (746c88d)
  • quick replies: refactor state management (cbd718e)
  • quick replies: save text-less responses (5dbfcae)
  • slot popup content: link to slots (846d8e5)
  • visual editor: close all hanging menus onmouseleave (5c97eb4)

Bug Fixes

  • delete response on empty text (a1924d4)
  • delete response on empty text (2c75938)
  • typo in utility function (e6df4a9)

0.15.5-ee.6 (2019-08-15)

Features

0.15.5-ee.5 (2019-08-14)

Features

  • story controller: getPossibleInsertions (61d4f58)
  • user utterance container: save on blur (63a1cc5)
  • user utterance container: save on blur (907443c)

Bug Fixes

  • focus bug with bot utterance input (cf35888)
  • prop type declaration (7ea7f27)

0.15.5-ee.4 (2019-08-12)

Features

  • disable loading model from bucket (fa8f4cf)
  • bot response: new bubble on enter (045bec2)
  • bot response input: change placeholder (6adefbe)

Bug Fixes

  • comment onChange prop for UtteranceContainer (91372bd)
  • wrong db initialization (4988954)

0.15.5-ee.3 (2019-08-12)

0.15.5-ee.2 (2019-08-12)

Features

  • method to insert an example with the language (1f33dc8)
  • persist story mode (f370e0e)
  • action viewer: Add action viewer component. (3c25573)
  • action viewer: Add action viewer component. (3870668)
  • ActionPopupContent/SlotPopupContent: misc (a7d05a4)
  • BotResponseContainer: edit mode (aab2cc2)
  • BotResponseContainer: wip (8db4b47)
  • BotResponseContainer: wip (91380c7)
  • BotResponsePopupContent: fix close on modal open (ae02426)
  • BotResponsesContainer: click ellipsis to insert (efd2e61)
  • slot-label: add slot label (f0627fb)
  • slot-label: add slot label (cb730b8)
  • stories: add toggle to switch between markdown/visual editor (b66e2c9)
  • StoryController: initial commit (4b2ccc5)
  • StoryVisualEditor: better insert experience (8c54aeb)
  • StoryVisualEditor: can add action and slot (894f69a)
  • StoryVisualEditor: can add action and slot (8a2e843)
  • StoryVisualEditor: can add every type of line (91573b3)
  • StoryVisualEditor: can add every type of line (f30b840)
  • StoryVisualEditor: can add user utterance from input (d5793ce)
  • StoryVisualEditor: can add user utterance from input (fcb173f)
  • StoryVisualEditor: can add user utterance from payload (1bef4f6)
  • StoryVisualEditor: can add user utterance from payload (37be9b8)
  • StoryVisualEditor: don't display error on payload fetch fail (4af8dc4)
  • StoryVisualEditor: don't update DOM when blur target is descendent (f58c0d7)
  • StoryVisualEditor: integrate getUtteranceFromPayload (2ae6824)
  • StoryVisualEditor: integration (37d4a4d)
  • StoryVisualEditor: new utterances are parsed (bd1e888)
  • StoryVisualEditor: null intents marked with dash (8b0dbd0)
  • StoryVisualEditor: place insertLine cursor on last line by default (11db5de)
  • StoryVisualEditor: remove duplicate method (05d8586)
  • StoryVisualEditor: style fixes; add trash to action and slot lines (6c90a16)
  • StoryVisualEditor: style specificity (8b135e4)
  • StoryVisualEditor: use StoryController (9e342af)
  • toggle: make toggle appear outside intro stories (3dd3c8a)
  • toggle: refactor style (75267c3)
  • UserUtteranceContainer: fill onDelete prop (053cd8e)
  • context setup for stories (2bfe62a)
  • get utterance from payload (6a8d13b)
  • quick replies component (4e81555)
  • StoryVisualEditor: wip (104ec88)
  • UtteranceContainer: wip (a41abfe)
  • UtteranceContainer: wip (cce53b2)
  • VisualStoryEditor: wip (4d524ca)
  • VisualStoryEditor: wip (2097fe8)

Bug Fixes

  • regex to set correct image version on release (1b99e3d)
  • unique key warning (cdd5de8)
  • initial-payload: payload for the widget is unique (ee54b44)
  • slot popup: show only categories relevant to selected slot (69c3a0d)
  • deletable on all visual story editor lines (2d13697)
  • Stories: wip-- toggle between code and visual (a37d830)
  • StoryVisualEditor: place insertLine cursor on last line by default (027bff4)
  • StoryVisualEditor: place insertLine cursor on last line by default (73b2c46)
  • duplicate imports (e420372)
  • VisualStoryEditor: don't save invalid Md (c660809)
  • preprend ci script with npx (cffad49)
  • wrong second argument for useEffect (9295c61)
  • wrong second argument for useEffect (2ecc37d)

0.15.2-ee.1 (2019-07-25)

Features

  • Action/UserUtterancePopupContent: don't save on whitespace or null (7add46d)
  • ActionPopupContent: first commit (c5a7002)
  • ActionPopupContent: fix overzealous search & replace (c17a199)
  • AddStoryLine: add availableActions prop (5fcce76)
  • AddStoryLine: first commit (2b3cd75)
  • BotResponsePopupContent: add limitedSelection prop (8d3434f)
  • BotResponsePopupContent: add noButtonResponse prop (ecf5141)
  • BotResponsePopupContent: close modal on dimmer click (9080f5b)
  • BotResponsePopupContent: first commit (4668b22)
  • BotResponsePopupContent: fix close on modal open (e977d0a)
  • BotResponsesContainer: click ellipsis to insert (9e73aa8)
  • conversation editor: DashedButton component (35b9163)
  • logo: Added logo field in the global public settings (8be19f2)
  • oos: change export format from tsv to csv (9f3abd1)
  • oos: make intent nullifiable (b7eae05)
  • PayloadEditor: add entity button only shown if all entities have value set (90d886e)
  • PayloadEditor: first commit (65d676b)
  • SlotPopupContent: context controlled by storybook knob (a81a1e4)
  • SlotPopupContent: first commit (4ab79e6)
  • SlotPopupContent: refactor, add Link (0c44139)
  • smart tips: added boldface parser for tip message body (bdb58b1)
  • smart tips: changed message wording (462326f)
  • smart tips: make default nlu th 0.75 (e8abe94)
  • smart tips: ui changes (a93b986)
  • stories: permissions (09c4d71)
  • StoryVisualEditor: better insert experience (87cecdf)
  • StoryVisualEditor: don't update DOM when blur target is descendent (89808bb)
  • StoryVisualEditor: wip (3408d16)
  • UserUtterancePopupContent: User says menu (42f13fe)
  • UtteranceContainer: wip (a28bfd1)
  • UtteranceContainer: wip (291e8d1)
  • added field to set small logo (1cd338e)
  • rasa-1.0: Migrated rasa-1.0 from the open source (e8f4583)
  • rbac: added roles for project info & Rules (de3cd68)
  • rbc: add Process in bulk for nlu-data:w (7a3b832)
  • rbc: add roles for activity - validate, delete and intent (f8a80ac)
  • rbc: add roles for the NLU model menu adn playground (c5b4a89)
  • rbc: add roles to NLU model (complete), for frontend (507f2ba)
  • rbc: added roles for project settings (a748b72)
  • rbc: new and duplicate models removed instead of disabled (c9b476e)
  • rbc: NLU model frontend (679fb1b)
  • roles: better roles for nlu settings (8706452)
  • smart tips: global threshold can now be set in project settings (e45b0a1)
  • smart tips: integrated smart tips in activity screen (31a8420)
  • smart tips: style -- changed look of action buttons according to spec (d66949f)
  • re-enabled bot response NLU criterias (13ef2a2)
  • rbc: add roles to activity panes (313cae5)
  • rbc: add roles to NLU model menu (d4727be)
  • rbc: disabled entity popup for required permision (ef1c71c)
  • roles: add viewer, editor and admin for front end (1e09537)
  • roles: added backend tests (176b2c8)
  • roles: conversations (860bf5d)
  • roles: dynamic routing (eaab9bc)
  • roles: dynamic sidebar and routing + tests (e3e6012)
  • roles: improvements (140fde5)
  • roles: made nlu_models pub secure (e6209e8)
  • roles: nlu models (23b3d94)
  • roles: nlu-model:x can now view models (c0ac1ea)
  • roles: responses (0d38892)
  • roles: roles on nlu_model backend (89ee4f4)
  • stories-roles: Added permission to stories back end. (90752d8)
  • stories-roles: Added permission to stories front end. (8906edd)
  • stories-slots: Slots and stories are added to ee. (c36023a)
  • activity api roles (0ed9f73)

Bug Fixes

  • instance creation on project creation (5618a3b)
  • storybooks build (b12047e)
  • project-creation: bug fix while creating a new project (44a0019)
  • stories: Fix roles for stories and train button (bf85d86)
  • code style (ca393fd)
  • default settings (423d1bb)
  • tests were not creating users with scope (0e2ec0e)
  • Train button inactive on NLU (7b791ac)
  • training data sub (83f7f2b)
  • upload model to GCS if GKE and Core bucket present (5bd9595)
  • wrong channel name in default settings (f5dad8a)
  • rbac: removed unecessary code (f6f1869)
  • rbc: Fixed nlu-data:w test, Online/Offline button for nlu-model:w (dd409f4)
  • roles: minor fixes (68a0bc8)
  • roles: permissions (df65719)
  • roles: reverted back a file (964fb93)
  • test: Moved chats test after roles test (1a605cd)
  • useless code changes (e767c1a)
  • roles: Removed fieldset (bbf5758)
  • test: removed nlu-meta spec file (6f23110)
  • wrong format in global settings schema (280437c)

0.27.5-ee.2 (2020-11-10)

Bug Fixes

0.27.5-ee.1 (2020-11-09)

Bug Fixes

  • filter out null entity groups and roles at export time (a565488)
  • root url protocol (5f951c5)
  • webchat url (48d7679)

0.27.4-ee.1 (2020-11-03)

Features

Bug Fixes

  • linking to conversations from analytics screen (d85c0a1)
  • loading stuck on NLU screen (3825fd2)

0.27.3-ee.1 (2020-10-29)

Features

  • augmentation factor setting (b879eef)

Bug Fixes

  • fix infinite scrolling stuck on Loading (1946261)
  • redirect when login (1191454)
  • return of confidence in NLU playground (2823ff8)

0.27.1-ee.1 (2020-10-23)

Features

  • slightly better crash traces (efd4174)

Bug Fixes

  • duckling entities and CRFExctractor (a7fe180)
  • emojis in examples (c48742a)
  • endpoints saving when the document does not exist (1e1d671)
  • import export changes (2de21a7)

0.27.0-ee.1 (2020-10-14)

Features

  • add field in metadata form to send paylaod on tooltip close (84e0e4c)
  • default policies: add missing default policies editor (7e3b744)
  • nlu regex (dd8e7ae)
  • unlimited training time (0574df7)

Bug Fixes

  • advanced entity editing not possible in data table (f05f766)
  • auto redirect to login when logged out (c96dd08)
  • broken conversation type filter (356bd89)
  • bug with action popup disappearing onscroll (c78861c)
  • concat story on branch delete (f9dbb5f)
  • form submission compatibility with rasa 2 (83b81ed)
  • illegal slot name (0f4dec0)
  • import export role bug (a3c57fa)
  • import forms (5140da1)
  • new chitchat examples were not displayed in the examples table (533b46c)
  • rasa domain import (backport) (84a35a0)
  • response deletion when renaming forms (1337714)

0.26.0-ee.4 (2020-09-28)

Bug Fixes

  • broken conversation type filter (356bd89)

0.26.0-ee.3 (2020-09-21)

Bug Fixes

  • story group delete and unselect (ccf2c6b)

0.26.0-ee.1 (2020-08-27)

Features

  • inter language responses (9953d36)
  • routes for individual settings pages (76d69ad)
  • search forms in stories (b3f1f4f)

Bug Fixes

  • activities with duckling entities (44b86ef)
  • display entity evaluation (4de12cb)
  • do not save duckling entities (03b9207)
  • duplicates in stories -> links menu (5ad961f)
  • hide copyFrom in bot responses when there is only one language (c3845d7)
  • incoming bug when wrong default language in project (81e6a4c)
  • nlu was saved when clicking on menus when it shouldn't have (81dbd3e)
  • only delete image if it's not used in an other response (eceefaf)
  • pinned stories were not pinned at the top (39f2b15)
  • prevent entities report crash when evaluation entities empty (9ed65a3)
  • prevent entities report crash when evaluation entities empty (3e7471c)
  • training: fix wrong language/model association (5dcc6a7)
  • warning were displayed when using forms in branches (f101ad4)
  • evaluation: the value for f1 and recall were inverted (c8b9a8c)

0.25.8-ee.2 (2020-07-30)

Features

  • one-click handoff integration to third party services (4054246)

0.25.8-ee.1 (2020-07-29)

Bug Fixes

  • fixed training without selected story groups (e0202a3)

0.25.7-ee.3 (2020-07-29)

Bug Fixes

  • default filters for conversations over time (8c0d16d)

0.25.7-ee.2 (2020-07-29)

Features

  • top triggers in analytics (4e2de3d)

0.25.7-ee.1 (2020-07-29)

Features

  • resize observer polyfill (89bc547)

0.25.6-ee.1 (2020-07-27)

0.25.5-ee.3 (2020-07-23)

Features

Bug Fixes

  • dashboards are now exported/imported (73165d5)
  • fix slots not deleted because of missing projectId (5c0c428)
  • stories with null body not importing (b2d20e9)

0.25.5-ee.2 (2020-07-22)

0.25.5-ee.1 (2020-07-21)

Bug Fixes

  • crash when openning incoming (5aeb4c3)

0.25.4-ee.1 (2020-07-16)

Bug Fixes

  • allow empty and negative number in validation (9d009ab)
  • check response names for wrong characters (091c3fd)
  • search bar event listener leak (3368c7f)
  • story search debouncing (d06783b)

0.25.3-ee.1 (2020-07-14)

Features

Bug Fixes

  • add trigger intents to domain (#652) (e999ac6)
  • always display create intent in intent label (5cb4729)
  • conversation linking with environments (5f48845)
  • form submission date, add missing quotes around csv cells in export (061607d)
  • metadata typing (a8adb86)

0.25.1-ee.2 (2020-07-05)

Features

  • error page with report buttons (03c7fec)

0.25.1-ee.1 (2020-07-01)

Features

Bug Fixes

  • fix init payload for chat demo (9676012)
  • story play buttons (c346ed4)
  • wrong defaultPayload initial value (d063ebd)

0.25.0-ee.5 (2020-07-01)

Bug Fixes

  • action endpoint save does not restart rasa (0aa0c56)

0.25.0-ee.4 (2020-06-30)

Bug Fixes

  • incoming crash when no entities (caba4de)
  • pie chart conversation links (fa063c9)

0.25.0-ee.3 (2020-06-24)

Features

  • story-triggers: visualization option (6874c71)
  • choose tooltip placement (f30d0fa)
  • choose tooltip placement (da38957)
  • resource role (8a5bfe9)
  • resources:r/w role for editing endpoints (8efbc68)
  • trigger visualization option (fc68ed2)

Bug Fixes

  • link from pie charts (d07e48f)
  • prevent the saving of incomplete triggers (bedefad)

0.25.0-ee.2 (2020-06-22)

Bug Fixes

  • added test case to reproduce error (9a42d97)
  • analytics screen crash when switching projects (1ed1e45)
  • fixed test set name (ad451cd)
  • fixed whitescreen when switching project (c555519)

0.25.0-ee.1 (2020-06-19)

Features

Bug Fixes

0.24.3-ee.5 (2020-06-13)

0.24.3-ee.4 (2020-06-11)

Bug Fixes

  • images are not deleted on src change (#155) (05fda01)

0.24.3-ee.3 (2020-06-08)

Bug Fixes

  • add / in front of the initPayload in widget props (1826a39)

0.24.3-ee.2 (2020-06-06)

Features

0.24.3-ee.1 (2020-06-04)

0.24.2-ee.2 (2020-06-03)

0.24.2-ee.1 (2020-06-02)

Features

  • activity: shortcut to toggle conversation popup (b4b20cf)
  • set logos per project (#151) (a7f1f48)

Bug Fixes

  • user roles exist after user deletion (a16485f)

0.24.1-ee.0 (2020-05-28)

0.24.0-ee.0 (2020-05-27)

Features

  • analytics and conversations link (c35ba30)
  • date filter for incoming utterances (0e88c34)
  • deploy hook (41a511c)
  • publish unpublish (c16e8f7)

Bug Fixes

  • conversation bubbles were not working after import (9ff4109)
  • one too many e's (f7ffb98)
  • out of scope only exports the first page (a001d47)

0.23.0-ee.2 (2020-05-12)

Bug Fixes

0.23.0-ee.1 (2020-05-12)

Bug Fixes

  • restart rasa webhook was only usable by global admin (#141) (1ee400e)

0.23.0-ee.0 (2020-05-07)

0.23.0-rc.0-ee.0 (2020-05-05)

Features

  • conversations: click a user to filter by Id (d4bda7e)
  • filter conversations by duration (2a8556c)

Bug Fixes

  • conversation viewer: switching conversations (5d38f4f)
  • hide conversation filters: clickable area (4452c13)

0.22.2-ee.1 (2020-04-22)

0.22.2-ee.0 (2020-04-22)

Features

  • urls in sequence trigger (55b3863)

0.22.1-ee.0 (2020-04-17)

0.22.0-ee.0 (2020-04-16)

Features

  • add analytics:w role (7db61d9)
  • dashboard is persisted to db (77c5e77)
  • analytics: cards can be added and deleted (a9d2446)
  • analytics: option to update date range for all cards at once (2157798)
  • conversation viewer: export as markdown (f20bd78)
  • conversation viewer: show button title text in user utterances (ea0f354)
  • rules: support partial or full matching of the url (78fe56f)
  • wide toggle: add toggle button for wide status of analytics card (57dc562)

Bug Fixes

  • fix broken popups (d22936b)
  • set correct deployment name (9d73b88)
  • timezone support for conv filter, analytics (97ba2f1)
  • timezone support for conversation viewer (9e3722e)

0.21.4-ee.2 (2020-04-01)

Bug Fixes

  • intents list in filter was missing new intents (6363927)

0.21.4-ee.1 (2020-03-31)

0.21.4-ee.0 (2020-03-31)

Bug Fixes

  • a typo in the story rules editor (c785022)
  • project creation (6751775)
  • roles are duplicated on name change (bcfddcd)
  • routing for users with global scope (6b1e82f)

0.20.3-ee.3 (2020-03-16)

Bug Fixes

  • instance saving (53ac9bf)
  • not global admins cant add global admins (2800dec)

0.20.3-ee.2 (2020-03-12)

0.20.3-ee.1 (2020-03-12)

Bug Fixes

  • project-admin access to projects list (b8f49f7)

0.20.3-ee.0 (2020-03-12)

0.20.2-ee.1 (2020-03-10)

Features

Bug Fixes

  • export for rasa: subscribe to nlu_models (fa13923)
  • remove roles for users (a90305e)
  • roles tests (5cca178)

0.20.2-ee.0 (2020-03-09)

Features

  • add rule to define min time bw 2 triggers (072caa2)

Bug Fixes

  • some conversations of the day were not displayed by default (8c7dd47)
  • trigger stopwatch icon is not alligned (532d809)

0.19.3-ee.5 (2020-02-25)

0.19.3-ee.4 (2020-02-24)

0.19.3-ee.3 (2020-02-24)

Features

  • trigger limit on story rules (bf5c06a)

Bug Fixes

  • changing environment disables filtering (8e7e736)

0.19.3-ee.2 (2020-02-19)

Features

  • download conversations from conversations ui (a151df1)

Bug Fixes

  • error were still displayed after disabling page change call backs (46867cd)

0.19.3-ee.1 (2020-02-12)

0.19.3-ee.0 (2020-02-12)

Bug Fixes

  • story rules form: deletion of list elements (49502b2)

0.19.2-ee.0 (2020-02-11)

Bug Fixes

  • triggers: wrong payload sent when entities are passed (#56) (54ecc15)

0.19.1-ee.3 (2020-02-07)

Features

  • send query trigger as entity (9353b23)
  • send query trigger as entity (6a2499d)

0.19.1-ee.2 (2020-02-03)

Bug Fixes

  • all projects were visible to all users roles (ed4c62e)
  • bad analytics filter (bff8f06)
  • only current project is visible from dropdown (672dccd)

0.19.1-ee.1 (2020-01-30)

Features

  • analytics: change fallback count semantics (d4bde03)
  • analytics: keep both kinds of fallback cards side by side (69ea7d4)
  • smart stories group (23549f0)
  • smart stories group (57203a1)
  • stories: create and edit trigger conditions (e50b308)
  • stories: create and edit trigger conditions (b0a3a6f)

Bug Fixes

  • nlg endpoint is incorrect in gke default settings (4665cc3)

0.19.1-ee.0 (2020-01-23)

Features

  • image upload: add upload and delete routes (41b923d)
  • image upload: call image delete webhook from deleteResponse (4ca39c3)
  • image upload: connect image upload to webhook (f0e378d)
  • image upload: wip (2fc4e26)
  • webhooks: add webhooks in global settings (8752e83)

Bug Fixes

0.19.0-alpha.6-ee.0 (2020-01-13)

0.19.0-alpha.5-ee.1 (2020-01-10)

Bug Fixes

  • model bucket not shown in the project admin screen (66985b5)

0.19.0-alpha.5-ee.0 (2020-01-09)

Bug Fixes

  • missing Nivo dependencies (1a0e62d)

0.19.0-alpha.4-ee.5 (2020-01-07)

Bug Fixes

  • package.lock was broken after merge (6f67a09)

0.19.0-alpha.4-ee.4 (2020-01-07)

Bug Fixes

  • remove duplicate migration ids (025e1a9)

0.19.0-alpha.4-ee.3 (2020-01-07)

0.19.0-alpha.4-ee.2 (2020-01-07)

0.19.0-alpha.4-ee.1 (2020-01-07)

Features

  • projects created with correct params + hide platform settings from project admins (#8) (cf13a27)
  • analytics by lang: add language selector to analytics (#5) (a25aeab)

Bug Fixes

  • opening a conversation from incoming NLU crashes (#10) (2ed7936)
  • set correct NLG endpoint in default GKE settings (fccc7af)

0.18.5-ee.8 (2019-12-17)

0.18.5-ee.7 (2019-12-17)

0.18.5-ee.6 (2019-12-12)

Features

  • intent dropdown: show canonical example (129f9eb)

0.18.5-ee.5 (2019-12-06)

0.18.5-ee.4 (2019-12-03)

Features

  • canonical example shown in new utterances (424ad52)

Bug Fixes

  • invalid date in conversation filters (99b8799)

0.18.5-ee.3 (2019-12-03)

Features

  • conversation popup for utterances (157fbc8)

Bug Fixes

0.18.5-ee.2 (2019-11-29)

0.18.5-ee.1 (2019-11-27)

0.18.5-ee.0 (2019-11-26)

Features

  • activity: add filtering (1f005d6)
  • activity: batch reinterpret only visible items (5af9c85)
  • add ui for conversation filters (776f5ce)
  • analytics table view (e3194bb)
  • reset button, hide/reveal and style changes (3dcf651)

Bug Fixes

  • Analytics display duration as time(s)<time(s) (aeb7e31)
  • analytics duration: axis values (6cf27f2)
  • analytics duration: axis values (d50d9b9)
  • change api url if the run is from ci (46d233e)
  • custom range in date picker (0d3d21e)
  • custom range in date picker (a040628)
  • date picker creashes with a one day range (17a7aa0)
  • date ranges for analytics line chart (5a3d12d)
  • env selector and the corresponding test (99da2af)
  • env selector and the corresponding test (cd34084)
  • input overflows action dropdown (2fe3c77)
  • long action names overflow dropdown (558320a)
  • removes a duplicate of insert many (2712612)
  • removes a duplicate of insert many (70e0238)

0.18.2-ee.0 (2019-11-18)

0.18.1-ee.3 (2019-11-14)

Bug Fixes

  • destructuring error when deployment is null (623fdd8)
  • training broken after merge issue (96ec5c6)

0.18.1-ee.2 (2019-11-14)

Features

  • activity: attempt at optimistic rerendering (323668f)
  • activity: use subscriptions instead of query (9102c35)

Bug Fixes

  • selecting fallback templates does nothing (79c961c)

0.18.1-ee.1 (2019-11-13)

Features

  • add conversations mutations names (00de829)
  • add graphQL schema for activity (4ca47e1)
  • add resolver for activity (d9cbb6a)

Bug Fixes

  • before/after each in convo tests (b026efb)
  • before/after each in convo tests (68bb7c6)
  • conversation test needs to wait for rasa (cf8f237)
  • error on delete user (b4d7157)
  • import delayed refresh causes test to fail (1e28f06)
  • merge conversation changes from master (d24459e)
  • merge conversation changes from master (8e6dd30)
  • merge conversation pagination (9a100b9)
  • nlu training button permanatly disabled (64b069b)
  • use importProject cypress command in tests (4838424)
  • use importProject cypress command in tests (4dd08aa)
  • use withRouter for routing, func for get url (beed366)
  • use withRouter for routing, func for get url (203e342)

0.18.0-rc.1-ee.1 (2019-11-12)

0.18.0-rc.0-ee.1 (2019-11-11)

Features

  • analytics: add dnd (41ff8bd)
  • analytics: add redux state for card settings (ced418d)
  • analytics: add reordering of cards (9d5e2da)
  • show empty buckets in analytics (26e5d55)
  • analytics: change fallback metric (617afd4)
  • analytics: exclusion and fallback templates (82a7c13)
  • analytics: wip: add exclusion/inclusion settings (b2b752d)

0.17.2-ee.8 (2019-11-11)

Bug Fixes

  • persist state test clicks too fast (9541c36)
  • story exception test could not find .eq(2) (d960610)

0.17.2-ee.7 (2019-11-07)

Bug Fixes

  • double story group browser (c907fbb)
  • fixed intercom and roles in project subs (1a7b247)

0.17.2-ee.6 (2019-11-05)

Bug Fixes

  • canonical dataCy change and click gem loop (5f523d8)
  • incoming crash with no deployment env (5e90a69)
  • prevent missed clicks in add canonical (05b10be)
  • standardize beforeeach and aftereach (95adf77)
  • test edits should be comments (34e346d)

0.17.2-ee.5 (2019-11-04)

Bug Fixes

  • bot_response.spec (9e11e89)
  • expected to find one child instead of none (8ae0b2f)
  • mlu model playground never rendering (d3edb6e)

0.17.2-ee.4 (2019-11-01)

0.17.2-ee.3 (2019-11-01)

Features

  • add test for cannonical example in conversation builder (71c9bd0)
  • allow the cannonical field in example utils (5df5342)
  • prefer cannonical examples in conversation builder (22adca9)

Bug Fixes

  • enviroments in incoming tab (2afce1a)
  • incoming tabs allow non letter chars (118a22f)
  • incomming tests (20148d8)
  • reloading after evn change (13b4328)
  • canonical examples: typo (ca641f3)

0.17.2-ee.2 (2019-10-30)

Features

  • format newlines for React Markdown component (fe5a276)
  • removes tabs in settings when only one environment (5041644)
  • shift enter creates newline (af2af20)
  • test for the apperance of tabs (07f5d1f)

Bug Fixes

  • newline applies to multilingual responses (5130863)
  • newline does not need event.preventDefault (433377d)
  • replace spacednewlines with newlines (ccaed6a)
  • revert code for identifying isTextResponse (c3b7568)

0.17.2-ee.1 (2019-10-30)

0.17.0-ee.9 (2019-10-30)

Bug Fixes

  • analytics: get rid of file-loader (df30d76)

0.17.0-ee.8 (2019-10-29)

0.17.0-ee.7 (2019-10-29)

Features

  • add a date picker component (03f484d)
  • add role for analytics (b5044f5)
  • basic analytics dashboard structure (5ce6b9f)
  • conversation durations chart (3f95093)
  • intent frequencies (588b2fb)
  • move import css from Datepicker to main.less (5090659)
  • analytics: storybook (4d7e32e)
  • nlu analytics with graphql (1d258a8)
  • analytics: add conversationCounts query (5f1d017)
  • analytics: add environment selector (1f6e02a)
  • analytics: add exclude param to conversationCounts (d551dee)
  • analytics: add LineChart (4cc6362)
  • analytics: add placeholder for missing data (f265613)
  • analytics: add query params to intent freqs (3ade828)
  • analytics: add responseCounts query (2a97d48)
  • analytics: add storybook (163a7cb)
  • analytics: added title and chart selection (4b829b8)
  • analytics: analyticsCard (f9d7f71)
  • analytics: change from voronoi mesh to slice tooltips (3f3d11b)
  • analytics: defaults, add query fields (0db2d38)
  • analytics: discard data points with no timestamp (fe09821)
  • analytics: fix axis/point alignment (5b35f4c)
  • analytics: graph components (6f583e9)
  • analytics: name buckets by right bound (d904198)
  • analytics: new cards (1236f50)
  • analytics: pluralization (9335719)
  • analytics: refactor props (58a5807)
  • analytics: refactor props (4ec2c5e)
  • analytics: refactor using useQuery hook (eefc3e1)
  • prototyp convo length charts (466b86d)
  • tests for the datepicker Component (553ba02)

Bug Fixes

  • dimensions in NLU statistics (33de3f1)
  • fixed press enter to add message (2743081)
  • routes broken after merge (8051772)

0.17.0-ee.6 (2019-10-29)

0.17.0-ee.5 (2019-10-29)

0.17.0-ee.4 (2019-10-28)

0.17.0-ee.3 (2019-10-28)

0.17.0-ee.2 (2019-10-27)

0.17.0-ee.1 (2019-10-27)

Features

  • forms: basic support for forms in conv. builder (c160d99)

Bug Fixes

  • issue when a project did not have deployment envs (c3c901b)

0.16.3-rc.1-ee.4 (2019-10-21)

0.16.3-rc.1-ee.3 (2019-10-21)

Bug Fixes

  • check if there is environments before adding them to the options (bb29363)
  • test for env change, uses api to insert new conversations (f728eaa)

0.16.3-rc.1-ee.2 (2019-10-21)

0.16.3-rc.1-ee.1 (2019-10-20)

0.16.3-ee.1 (2019-10-18)

Features

0.16.2-ee.6 (2019-10-17)

Bug Fixes

  • fixed permission for entities in story editor (e7f3488)

0.16.2-ee.5 (2019-10-16)

0.16.2-ee.4 (2019-10-16)

0.16.2-ee.3 (2019-10-16)

Features

  • conversation environement selector ui (15472b3)
  • corrections following tests (532a336)
  • environement selector in conversations (0e958bd)
  • tests for multi environments in conversations (ba98e92)

Bug Fixes

  • update regex so it handle change of root url (d4bd05f)

0.16.2-ee.2 (2019-10-10)

0.16.2-ee.1 (2019-10-10)

Bug Fixes

  • project deletion test was not working on the cloud ci (ba08842)

0.16.0-rc.13-ee.1 (2019-10-09)

0.16.0-rc.12-ee.2 (2019-10-09)

0.16.0-rc.12-ee.1 (2019-10-09)

0.16.0-rc.11-ee.2 (2019-10-07)

Bug Fixes

  • display the current language response content (9fe6d2f)

0.16.0-rc.11-ee.1 (2019-10-04)

Features

  • test for the creation/deletion of a project (8f2e536)

Bug Fixes

  • improve project test to ensure (e7b9f00)
  • project deletionan optional argument did not have default value (ba0bd0b)

0.16.0-rc.10-ee.2 (2019-10-03)

0.16.0-rc.10-ee.1 (2019-10-03)

0.16.0-rc.9-ee.2 (2019-09-30)

0.16.0-rc.9-ee.1 (2019-09-26)

Features

  • default default domain in admin settings (5e2fe07)

Bug Fixes

  • default default domain for gke (ae3e116)

0.16.0-rc.8-ee.3 (2019-09-24)

0.16.0-rc.8-ee.2 (2019-09-23)

0.16.0-rc.8-ee.1 (2019-09-23)

Features

  • added default settings for gke dev (70f5739)
  • story error boundary (e665afb)

Bug Fixes

  • better errors for templates and slots (c5becb9)
  • story errors related to templates (7a2f9ec)

0.16.0-rc.7-ee.2 (2019-09-17)

Bug Fixes

  • float slot set to float value (df8bddf)
  • null slots represented as strings (0c93d3f)

0.16.0-rc.7-ee.1 (2019-09-13)

Features

  • offline templates: error catching for missing templates (07019bd)
  • add a popup for story group exception alerts (5fe6531)
  • offline templates: full responses are exported with domain (6478df2)
  • add bad lines to prevent crashes on md error (894c6eb)
  • add BadLineLabel for errors in visual editor (ff13088)
  • add exceptions in visual story editor (2333986)
  • add icon indicators for story exceptions (77e788b)
  • add icon indicators for story exceptions (2ca4bb8)
  • add response context to StotyEditorContainer (4344938)
  • collapsable stories (f52d54b)
  • exclude stories with errors from training (bde114b)
  • frontend excepetion handling in visual story (acb6d93)
  • links to Spectrum in menu and docs (3f77d44)
  • merge deleted stories (ebab5f6)

Bug Fixes

  • bot responses wrap correctly if unhovered (0c9ccb3)
  • add empty branches to new stories (f6d810e)
  • add quickreply button hiddem (739f1c4)
  • adjust line height for story group menu items (33f3648)
  • alerts not removed if intro story deleted (7f49c41)
  • backwards compatibility for exceptions (198d3c3)
  • crash in BranchTabLabel with old DataBases (be8e625)
  • crash in BranchTabLabel with old DataBases (3513ea3)
  • crashing in story utils with old DBs (14b1763)
  • default settings prevent widget display (a6b8553)
  • deleting a story deletes the whole story group (9401987)
  • display warnings for bot responses (6662be4)
  • empty default object in extractDomain (086d1b1)
  • error when no warnings/errors (a4cda4e)
  • exceptionAlerts warnings passed bad prop (1279ce3)
  • extra character caused a crash on start (ecad735)
  • project.deployment test fix (2103e23)
  • remove console.log and es lint errors (0735601)
  • remove duplicate context (e53b222)
  • show success message after CLI install (5fa3642)
  • stop crash when creating new story group (f603527)
  • story groups not deleting (fe86a65)
  • storyGroupMenu selected items are blue (f071f4a)
  • the selected story group is blue (f59a903)
  • typo in docker compose template (f9db13b)
  • undefined bot responses preventing training (f912b43)
  • visual editor lines with no type are BadLines (b8b06fd)
  • wrong default base_url in credentials (a38a0c9)

0.16.0-rc.4-ee.1 (2019-09-11)

Features

  • add deployment tab to settings menu (779b360)
  • add option to enable additional environment (3f4186a)
  • add seperate environments and settings (679eb09)
  • add style.less file for settings ui (f008256)
  • create tests for deployment env settings (2937518)

Bug Fixes

  • add backwards compatability for data (f4b8cce)
  • cannot add environment - namespace missing (8ccefcd)
  • change constants.json import to new path (1aacb37)
  • change credentials env menu to render once (59d6652)
  • stop ace editor unsaved text carryover (9d6a79c)
  • undefined environment handling (becb592)
  • undefined environment tag handling (4d01b4d)

0.15.5-ee.13 (2019-09-05)

0.15.5-ee.12 (2019-09-04)

0.15.5-ee.11 (2019-08-28)

Bug Fixes

  • add language param to bot response template (38300c7)
  • remove console.log (58fb26f)

0.15.5-ee.10 (2019-08-25)

Bug Fixes

0.15.5-ee.9 (2019-08-19)

0.15.5-ee.8 (2019-08-19)

0.15.5-ee.7 (2019-08-16)

Features

  • quick replies: comply with Messenger protocol (02b65a3)
  • quick replies: first commit (746c88d)
  • quick replies: refactor state management (cbd718e)
  • quick replies: save text-less responses (5dbfcae)
  • slot popup content: link to slots (846d8e5)
  • visual editor: close all hanging menus onmouseleave (5c97eb4)

Bug Fixes

  • delete response on empty text (a1924d4)
  • delete response on empty text (2c75938)
  • typo in utility function (e6df4a9)

0.15.5-ee.6 (2019-08-15)

Features

0.15.5-ee.5 (2019-08-14)

Features

  • story controller: getPossibleInsertions (61d4f58)
  • user utterance container: save on blur (63a1cc5)
  • user utterance container: save on blur (907443c)

Bug Fixes

  • focus bug with bot utterance input (cf35888)
  • prop type declaration (7ea7f27)

0.15.5-ee.4 (2019-08-12)

Features

  • bot response: new bubble on enter (045bec2)
  • bot response input: change placeholder (6adefbe)
  • disable loading model from bucket (fa8f4cf)

Bug Fixes

  • comment onChange prop for UtteranceContainer (91372bd)
  • wrong db initialization (4988954)

0.15.5-ee.3 (2019-08-12)

0.15.5-ee.2 (2019-08-12)

Features

  • action viewer: Add action viewer component. (3c25573)
  • action viewer: Add action viewer component. (3870668)
  • ActionPopupContent/SlotPopupContent: misc (a7d05a4)
  • BotResponseContainer: edit mode (aab2cc2)
  • BotResponseContainer: wip (91380c7)
  • BotResponseContainer: wip (8db4b47)
  • BotResponsePopupContent: fix close on modal open (ae02426)
  • BotResponsesContainer: click ellipsis to insert (efd2e61)
  • slot-label: add slot label (f0627fb)
  • slot-label: add slot label (cb730b8)
  • stories: add toggle to switch between markdown/visual editor (b66e2c9)
  • StoryController: initial commit (4b2ccc5)
  • StoryVisualEditor: better insert experience (8c54aeb)
  • StoryVisualEditor: can add action and slot (8a2e843)
  • StoryVisualEditor: can add action and slot (894f69a)
  • StoryVisualEditor: can add every type of line (f30b840)
  • StoryVisualEditor: can add every type of line (91573b3)
  • StoryVisualEditor: style specificity (8b135e4)
  • quick replies component (4e81555)
  • StoryVisualEditor: can add user utterance from input (fcb173f)
  • StoryVisualEditor: can add user utterance from input (d5793ce)
  • StoryVisualEditor: can add user utterance from payload (37be9b8)
  • StoryVisualEditor: can add user utterance from payload (1bef4f6)
  • StoryVisualEditor: don't display error on payload fetch fail (4af8dc4)
  • StoryVisualEditor: don't update DOM when blur target is descendent (f58c0d7)
  • StoryVisualEditor: integrate getUtteranceFromPayload (2ae6824)
  • StoryVisualEditor: integration (37d4a4d)
  • StoryVisualEditor: new utterances are parsed (bd1e888)
  • StoryVisualEditor: null intents marked with dash (8b0dbd0)
  • StoryVisualEditor: place insertLine cursor on last line by default (11db5de)
  • StoryVisualEditor: remove duplicate method (05d8586)
  • StoryVisualEditor: style fixes; add trash to action and slot lines (6c90a16)
  • StoryVisualEditor: use StoryController (9e342af)
  • StoryVisualEditor: wip (104ec88)
  • toggle: make toggle appear outside intro stories (3dd3c8a)
  • toggle: refactor style (75267c3)
  • UserUtteranceContainer: fill onDelete prop (053cd8e)
  • UtteranceContainer: wip (a41abfe)
  • UtteranceContainer: wip (cce53b2)
  • VisualStoryEditor: wip (4d524ca)
  • VisualStoryEditor: wip (2097fe8)
  • context setup for stories (2bfe62a)
  • get utterance from payload (6a8d13b)
  • method to insert an example with the language (1f33dc8)
  • persist story mode (f370e0e)

Bug Fixes

  • deletable on all visual story editor lines (2d13697)
  • duplicate imports (e420372)
  • preprend ci script with npx (cffad49)
  • regex to set correct image version on release (1b99e3d)
  • initial-payload: payload for the widget is unique (ee54b44)
  • slot popup: show only categories relevant to selected slot (69c3a0d)
  • Stories: wip-- toggle between code and visual (a37d830)
  • unique key warning (cdd5de8)
  • wrong second argument for useEffect (9295c61)
  • wrong second argument for useEffect (2ecc37d)
  • StoryVisualEditor: place insertLine cursor on last line by default (027bff4)
  • StoryVisualEditor: place insertLine cursor on last line by default (73b2c46)
  • VisualStoryEditor: don't save invalid Md (c660809)

0.15.2-ee.1 (2019-07-25)

Features

  • Action/UserUtterancePopupContent: don't save on whitespace or null (7add46d)
  • ActionPopupContent: first commit (c5a7002)
  • ActionPopupContent: fix overzealous search & replace (c17a199)
  • AddStoryLine: add availableActions prop (5fcce76)
  • AddStoryLine: first commit (2b3cd75)
  • BotResponsePopupContent: add limitedSelection prop (8d3434f)
  • BotResponsePopupContent: add noButtonResponse prop (ecf5141)
  • BotResponsePopupContent: close modal on dimmer click (9080f5b)
  • BotResponsePopupContent: first commit (4668b22)
  • BotResponsePopupContent: fix close on modal open (e977d0a)
  • BotResponsesContainer: click ellipsis to insert (9e73aa8)
  • conversation editor: DashedButton component (35b9163)
  • logo: Added logo field in the global public settings (8be19f2)
  • oos: change export format from tsv to csv (9f3abd1)
  • oos: make intent nullifiable (b7eae05)
  • PayloadEditor: add entity button only shown if all entities have value set (90d886e)
  • PayloadEditor: first commit (65d676b)
  • rasa-1.0: Migrated rasa-1.0 from the open source (e8f4583)
  • rbac: added roles for project info & Rules (de3cd68)
  • rbc: add Process in bulk for nlu-data:w (7a3b832)
  • rbc: add roles for activity - validate, delete and intent (f8a80ac)
  • rbc: add roles for the NLU model menu adn playground (c5b4a89)
  • rbc: add roles to activity panes (313cae5)
  • rbc: add roles to NLU model (complete), for frontend (507f2ba)
  • rbc: add roles to NLU model menu (d4727be)
  • rbc: added roles for project settings (a748b72)
  • rbc: disabled entity popup for required permision (ef1c71c)
  • rbc: new and duplicate models removed instead of disabled (c9b476e)
  • rbc: NLU model frontend (679fb1b)
  • roles: add viewer, editor and admin for front end (1e09537)
  • roles: added backend tests (176b2c8)
  • roles: better roles for nlu settings (8706452)
  • roles: conversations (860bf5d)
  • roles: dynamic routing (eaab9bc)
  • roles: dynamic sidebar and routing + tests (e3e6012)
  • roles: improvements (140fde5)
  • roles: made nlu_models pub secure (e6209e8)
  • roles: nlu models (23b3d94)
  • roles: nlu-model:x can now view models (c0ac1ea)
  • roles: responses (0d38892)
  • roles: roles on nlu_model backend (89ee4f4)
  • SlotPopupContent: context controlled by storybook knob (a81a1e4)
  • SlotPopupContent: first commit (4ab79e6)
  • SlotPopupContent: refactor, add Link (0c44139)
  • smart tips: added boldface parser for tip message body (bdb58b1)
  • smart tips: changed message wording (462326f)
  • smart tips: global threshold can now be set in project settings (e45b0a1)
  • smart tips: integrated smart tips in activity screen (31a8420)
  • smart tips: make default nlu th 0.75 (e8abe94)
  • smart tips: style -- changed look of action buttons according to spec (d66949f)
  • smart tips: ui changes (a93b986)
  • stories: permissions (09c4d71)
  • stories-roles: Added permission to stories back end. (90752d8)
  • stories-roles: Added permission to stories front end. (8906edd)
  • stories-slots: Slots and stories are added to ee. (c36023a)
  • StoryVisualEditor: better insert experience (87cecdf)
  • StoryVisualEditor: don't update DOM when blur target is descendent (89808bb)
  • StoryVisualEditor: wip (3408d16)
  • UserUtterancePopupContent: User says menu (42f13fe)
  • UtteranceContainer: wip (a28bfd1)
  • UtteranceContainer: wip (291e8d1)
  • activity api roles (0ed9f73)
  • added field to set small logo (1cd338e)
  • re-enabled bot response NLU criterias (13ef2a2)

Bug Fixes

  • code style (ca393fd)
  • default settings (423d1bb)
  • instance creation on project creation (5618a3b)
  • rbac: removed unecessary code (f6f1869)
  • storybooks build (b12047e)
  • tests were not creating users with scope (0e2ec0e)
  • test: removed nlu-meta spec file (6f23110)
  • Train button inactive on NLU (7b791ac)
  • training data sub (83f7f2b)
  • upload model to GCS if GKE and Core bucket present (5bd9595)
  • useless code changes (e767c1a)
  • wrong channel name in default settings (f5dad8a)
  • roles: reverted back a file (964fb93)
  • wrong format in global settings schema (280437c)
  • project-creation: bug fix while creating a new project (44a0019)
  • rbc: Fixed nlu-data:w test, Online/Offline button for nlu-model:w (dd409f4)
  • roles: minor fixes (68a0bc8)
  • roles: permissions (df65719)
  • roles: Removed fieldset (bbf5758)
  • stories: Fix roles for stories and train button (bf85d86)
  • test: Moved chats test after roles test (1a605cd)

0.25.0-ee.3 (2020-06-24)

Features

  • choose tooltip placement (f30d0fa)
  • choose tooltip placement (da38957)
  • resource role (8a5bfe9)
  • trigger visualization option (fc68ed2)
  • story-triggers: visualization option (6874c71)
  • resources:r/w role for editing endpoints (8efbc68)

Bug Fixes

  • prevent the saving of incomplete triggers (bedefad)

0.25.0-ee.2 (2020-06-22)

Bug Fixes

  • added test case to reproduce error (9a42d97)
  • analytics screen crash when switching projects (1ed1e45)
  • fixed test set name (ad451cd)
  • fixed whitescreen when switching project (c555519)

0.25.0-ee.1 (2020-06-19)

Features

  • add form results import mutation (0e6e243)
  • add option to erase existing data during import (cf80335)
  • add requested slot as a slot (e717819)
  • conversations funnel in analytics (c9ad480)
  • forms (2bd1525)
  • new pipeline, policies (a96bc81)
  • stories search de-select (33ec116)
  • validation tab (41c4bd4)
  • forms: add result viewing page (22e83be)

Bug Fixes

  • click on intent in dropdown had no effect in story visual editor (c71f9de)
  • hide publish switch (ff30b76)
  • intent dropdown not clickable on canonical example (c196994)
  • requested_slot (5ca25a4)

0.24.3-ee.5 (2020-06-13)

0.24.3-ee.4 (2020-06-11)

Bug Fixes

  • images are not deleted on src change (#155) (05fda01)

0.24.3-ee.3 (2020-06-08)

Bug Fixes

  • add / in front of the initPayload in widget props (1826a39)

0.24.3-ee.2 (2020-06-06)

Features

0.24.3-ee.1 (2020-06-04)

Bug Fixes

  • entity tagging by removing autofocus (f57feda)
  • entity tagging in activity screen (4bb335b)

0.24.2-ee.2 (2020-06-03)

0.24.2-ee.1 (2020-06-02)

Features

  • set logos per project (#151) (a7f1f48)
  • activity: shortcut to toggle conversation popup (b4b20cf)

Bug Fixes

  • activity with entities (e8c5ae3)
  • user roles exist after user deletion (a16485f)

0.24.1-ee.0 (2020-05-28)

Bug Fixes

  • updagraded rasa-for-botfront with disambiguation fix (#617) (3ad2a00)

0.24.0-ee.0 (2020-05-27)

Features

  • analytics and conversations link (c35ba30)
  • batch reset intent (#604) (053d18c)
  • better usability of the incoming tab (095c5db)
  • date filter for incoming utterances (0e88c34)
  • deploy hook (41a511c)
  • publish unpublish (c16e8f7)
  • quick reply and button bot responses (3e27604)

Bug Fixes

  • conversation bubbles were not working after import (9ff4109)
  • merging duckling entities with other extractors (a2d38d6)
  • nlu modal: add examples with no model trained (cb19edd)
  • one too many e's (f7ffb98)
  • out of scope only exports the first page (a001d47)

0.23.0-ee.2 (2020-05-12)

Features

0.24.0-beta.0 (2020-05-18)

Bug Fixes

0.23.0-ee.1 (2020-05-12)

Bug Fixes

  • restart rasa webhook was only usable by global admin (#141) (1ee400e)

0.23.0-ee.0 (2020-05-07)

Features

  • import/export: version check (2ccf353)

Bug Fixes

  • assumed error object structure (879786e)

0.23.0-rc.0-ee.0 (2020-05-05)

Features

  • conversations: click a user to filter by Id (d4bda7e)
  • carousel: initial commit (22143b1)
  • qr buttons: make buttons draggable & droppable (e1bb09c)
  • filter conversations by duration (2a8556c)
  • story editor: indicate re-used responses (ea1ccec)

Bug Fixes

  • button type resolve (ca80d75)
  • conversation parse safety (4820de7)
  • conversation viewer: switching conversations (5d38f4f)
  • exclude rasa reserved actions from domain (c53b387)
  • hide conversation filters: clickable area (4452c13)
  • ignore duplicate index violations during import (5d43b77)
  • prevent examples without intent to be saved (2f10e26)
  • story access safety in addlinkCheckpoints (1dfda47)
  • support importing project without model (c9154a1)
  • weird behaviour when deleting conversations (4eba38a)
  • cli: invoking botfront in a non project folder crashes (2885579)

0.22.2-ee.1 (2020-04-22)

Features

  • urls in sequence trigger (55b3863)

0.22.2-ee.0 (2020-04-22)

Bug Fixes

  • missing environement field in the gql schema for trackerstore (266d154)

0.22.1-ee.0 (2020-04-17)

Features

  • conversation viewer: export as markdown (f20bd78)
  • conversation viewer: show button title text in user utterances (ea0f354)

Bug Fixes

  • timezone support for conv filter, analytics (97ba2f1)
  • timezone support for conversation viewer (9e3722e)
  • timezone support for conversation viewer (1750fb4)

0.22.0-ee.0 (2020-04-16)

Features

  • analytics: cards can be added and deleted (a9d2446)
  • analytics: option to update date range for all cards at once (2157798)
  • rules: support partial or full matching of the url (78fe56f)
  • visual story editor: add option for new disjuncts (c8468a2)
  • wide toggle: add toggle button for wide status of analytics card (57dc562)
  • add analytics:w role (7db61d9)
  • dashboard is persisted to db (77c5e77)
  • stories: NLU modal (8e5f7e7)
  • user utterances container (363dea5)

Bug Fixes

  • story page crash after import (b579b54)
  • deletion of unused bot responses (982f73c)
  • entity doubling in data parsed from rasa (a45083a)
  • fix broken popups (d22936b)
  • handling of import response, (a405766)
  • intents list in filter was missing new intents (6363927)
  • set correct deployment name (9d73b88)
  • stories search algorithim (9b787aa)
  • story search inconsistency (9f3014c)

0.21.4-ee.2 (2020-04-01)

Bug Fixes

  • story page crash after import (b579b54)
  • entity doubling in data parsed from rasa (a45083a)
  • handling of import response, (a405766)
  • stories search algorithim (9b787aa)

Features

  • visual story editor: add option for new disjuncts (c8468a2)
  • stories: NLU modal (8e5f7e7)
  • user utterances container (363dea5)

Tests

  • add tests for multiple disjuncts (918307c)
  • stories: nlu editor (c3b60b3)

0.21.4-ee.1 (2020-03-31)

0.21.4-ee.0 (2020-03-31)

Features

  • seach stories by title and content (45be252)
  • dnd tree: better behavior (b44ae15)
  • dnd tree: extract logic to hook (5e25eca)
  • dnd tree: inline name editing (e187633)
  • dnd tree: no ellipsis menu (9295f85)
  • permalinks: initial commit (a307bf2)
  • dnd tree poc wip initial commit (123ad0a)

Bug Fixes

  • a typo in the story rules editor (c785022)
  • correct dragged item offset on scroll (a742491)
  • duplicate story insertion bug (83a063e)
  • mongo credentials are overwritten on update (#520) (84570e3)
  • project creation (6751775)
  • roles are duplicated on name change (bcfddcd)
  • routing for users with global scope (6b1e82f)
  • training with empty story groups (120056b)

0.22.0-ee.0 (2020-03-25)

Features

  • seach stories by title and content (45be252)
  • dnd tree: better behavior (b44ae15)
  • dnd tree: extract logic to hook (5e25eca)
  • dnd tree: inline name editing (e187633)
  • dnd tree: no ellipsis menu (9295f85)
  • permalinks: initial commit (a307bf2)
  • dnd tree poc wip initial commit (123ad0a)

Bug Fixes

  • a typo in the story rules editor (c785022)
  • correct dragged item offset on scroll (a742491)
  • duplicate story insertion bug (83a063e)
  • mongo credentials are overwritten on update (#520) (84570e3)
  • project creation (6751775)
  • roles are duplicated on name change (bcfddcd)
  • training with empty story groups (120056b)

0.20.3-ee.3 (2020-03-16)

Bug Fixes

  • instance saving (53ac9bf)
  • not global admins cant add global admins (2800dec)

0.20.3-ee.2 (2020-03-12)

0.20.3-ee.1 (2020-03-12)

Bug Fixes

  • project-admin access to projects list (b8f49f7)

0.20.3-ee.0 (2020-03-12)

Bug Fixes

0.20.2-ee.0 (2020-03-09)

Features

  • block non ascii chars in entities (92dfda1)
  • display version number at the bottom of the sidebar (5cb2fee)
  • graphql authentification for external consumers (e37a3f9)
  • export: export one md file per story group (a8f05fe)
  • import: import nlu data (5a6fd40)
  • import: upsert slots and responses (07b9859)
  • import domain: wip (54b1caa)
  • import rasa stories: db-ready stories are generated (1dc22e9)
  • import rasa stories: log more import issues (4bb8b19)
  • import rasa stories: parse story file into intermediate format (657dd1c)
  • import rasa stories: ux initial commit (f75514c)
  • rasa export: add export all languages option (94ca4f5)
  • add story group name in story export (d267e20)

Bug Fixes

  • don't overwrite namespace on import (#476) (50976c6)
  • fix undefined slot line showing as bad lines (ee973fd)
  • some conversations of the day were not displayed by default (8c7dd47)
  • unfeaturized slots can have initial value of any type (4173ef0)

0.19.3-ee.5 (2020-02-25)

0.19.3-ee.4 (2020-02-24)

0.19.3-ee.3 (2020-02-24)

Features

  • download conversations from conversations ui (a151df1)
  • trigger limit on story rules (bf5c06a)

Bug Fixes

  • axios with json was not logged (f2dd10f)
  • change of logging level (bcf8daf)
  • changing environment disables filtering (8e7e736)
  • error were still displayed after disabling page change call backs (46867cd)
  • use latest_invent_time instead of updated at (56d754d)

0.19.3-ee.2 (2020-02-19)

Features

  • collapse/expand all stories on doubleclick (2214a3f)

0.19.3-ee.1 (2020-02-12)

0.19.3 (2020-02-12)

0.19.3-ee.0 (2020-02-12)

Bug Fixes

  • story rules form: deletion of list elements (49502b2)

0.19.2-ee.0 (2020-02-11)

Bug Fixes

  • triggers: wrong payload sent when entities are passed (#56) (54ecc15)

0.19.1-ee.3 (2020-02-07)

Features

  • send query trigger as entity (9353b23)
  • send query trigger as entity (6a2499d)

0.19.1-ee.2 (2020-02-03)

Bug Fixes

  • all projects were visible to all users roles (ed4c62e)
  • bad analytics filter (bff8f06)
  • only current project is visible from dropdown (672dccd)

0.19.1-ee.1 (2020-01-30)

Features

  • analytics: change fallback count semantics (d4bde03)
  • analytics: keep both kinds of fallback cards side by side (69ea7d4)
  • smart stories group (23549f0)
  • smart stories group (57203a1)
  • stories: create and edit trigger conditions (e50b308)
  • stories: create and edit trigger conditions (b0a3a6f)

Bug Fixes

  • nlg endpoint is incorrect in gke default settings (4665cc3)

0.19.1-ee.0 (2020-01-23)

Features

  • image upload: add upload and delete routes (41b923d)
  • image upload: call image delete webhook from deleteResponse (4ca39c3)
  • image upload: connect image upload to webhook (f0e378d)
  • image upload: wip (2fc4e26)
  • webhooks: add webhooks in global settings (8752e83)

Bug Fixes

0.19.0-alpha.6-ee.0 (2020-01-13)

0.19.0-alpha.5-ee.1 (2020-01-10)

Bug Fixes

  • model bucket not shown in the project admin screen (66985b5)

0.19.0-alpha.5-ee.0 (2020-01-09)

Bug Fixes

  • missing Nivo dependencies (1a0e62d)

0.19.0-alpha.4-ee.5 (2020-01-07)

Bug Fixes

  • package.lock was broken after merge (6f67a09)

0.19.0-alpha.4-ee.4 (2020-01-07)

Bug Fixes

  • remove duplicate migration ids (025e1a9)

0.19.0-alpha.4-ee.3 (2020-01-07)

0.19.0-alpha.4-ee.2 (2020-01-07)

0.19.0-alpha.4-ee.1 (2020-01-07)

Features

  • projects created with correct params + hide platform settings from project admins (#8) (cf13a27)
  • analytics by lang: add language selector to analytics (#5) (a25aeab)

Bug Fixes

  • opening a conversation from incoming NLU crashes (#10) (2ed7936)
  • set correct NLG endpoint in default GKE settings (fccc7af)

0.18.5-ee.8 (2019-12-17)

0.18.5-ee.7 (2019-12-17)

0.18.5-ee.6 (2019-12-12)

Features

  • intent dropdown: show canonical example (129f9eb)

0.18.5-ee.5 (2019-12-06)

0.18.5-ee.4 (2019-12-03)

Features

  • canonical example shown in new utterances (424ad52)

Bug Fixes

  • invalid date in conversation filters (99b8799)

0.18.5-ee.3 (2019-12-03)

Features

  • conversation popup for utterances (157fbc8)

Bug Fixes

0.18.5-ee.2 (2019-11-29)

0.18.5-ee.1 (2019-11-27)

0.18.5-ee.0 (2019-11-26)

Features

  • activity: add filtering (1f005d6)
  • activity: batch reinterpret only visible items (5af9c85)
  • add ui for conversation filters (776f5ce)
  • analytics table view (e3194bb)
  • reset button, hide/reveal and style changes (3dcf651)

Bug Fixes

  • Analytics display duration as time(s)<time(s) (aeb7e31)
  • analytics duration: axis values (6cf27f2)
  • analytics duration: axis values (d50d9b9)
  • change api url if the run is from ci (46d233e)
  • custom range in date picker (0d3d21e)
  • custom range in date picker (a040628)
  • date picker creashes with a one day range (17a7aa0)
  • date ranges for analytics line chart (5a3d12d)
  • env selector and the corresponding test (99da2af)
  • env selector and the corresponding test (cd34084)
  • input overflows action dropdown (2fe3c77)
  • long action names overflow dropdown (558320a)
  • removes a duplicate of insert many (2712612)
  • removes a duplicate of insert many (70e0238)

0.18.2-ee.0 (2019-11-18)

0.18.1-ee.3 (2019-11-14)

Bug Fixes

  • destructuring error when deployment is null (623fdd8)
  • training broken after merge issue (96ec5c6)

0.18.1-ee.2 (2019-11-14)

Features

  • activity: attempt at optimistic rerendering (323668f)
  • activity: use subscriptions instead of query (9102c35)

Bug Fixes

  • selecting fallback templates does nothing (79c961c)

0.18.1-ee.1 (2019-11-13)

Features

  • add conversations mutations names (00de829)
  • add graphQL schema for activity (4ca47e1)
  • add resolver for activity (d9cbb6a)

Bug Fixes

  • before/after each in convo tests (b026efb)
  • before/after each in convo tests (68bb7c6)
  • conversation test needs to wait for rasa (cf8f237)
  • error on delete user (b4d7157)
  • import delayed refresh causes test to fail (1e28f06)
  • merge conversation changes from master (d24459e)
  • merge conversation changes from master (8e6dd30)
  • merge conversation pagination (9a100b9)
  • nlu training button permanatly disabled (64b069b)
  • use importProject cypress command in tests (4838424)
  • use importProject cypress command in tests (4dd08aa)
  • use withRouter for routing, func for get url (beed366)
  • use withRouter for routing, func for get url (203e342)

0.18.0-rc.1-ee.1 (2019-11-12)

0.18.0-rc.0-ee.1 (2019-11-11)

Features

  • analytics: add dnd (41ff8bd)
  • analytics: add redux state for card settings (ced418d)
  • analytics: add reordering of cards (9d5e2da)
  • show empty buckets in analytics (26e5d55)
  • analytics: change fallback metric (617afd4)
  • analytics: exclusion and fallback templates (82a7c13)
  • analytics: wip: add exclusion/inclusion settings (b2b752d)

0.17.2-ee.8 (2019-11-11)

Bug Fixes

  • persist state test clicks too fast (9541c36)
  • story exception test could not find .eq(2) (d960610)

0.17.2-ee.7 (2019-11-07)

Bug Fixes

  • double story group browser (c907fbb)
  • fixed intercom and roles in project subs (1a7b247)

0.17.2-ee.6 (2019-11-05)

Bug Fixes

  • canonical dataCy change and click gem loop (5f523d8)
  • incoming crash with no deployment env (5e90a69)
  • prevent missed clicks in add canonical (05b10be)
  • standardize beforeeach and aftereach (95adf77)
  • test edits should be comments (34e346d)

0.17.2-ee.5 (2019-11-04)

Bug Fixes

  • bot_response.spec (9e11e89)
  • expected to find one child instead of none (8ae0b2f)
  • mlu model playground never rendering (d3edb6e)

0.17.2-ee.4 (2019-11-01)

0.17.2-ee.3 (2019-11-01)

Features

  • add test for cannonical example in conversation builder (71c9bd0)
  • allow the cannonical field in example utils (5df5342)
  • prefer cannonical examples in conversation builder (22adca9)

Bug Fixes

  • enviroments in incoming tab (2afce1a)
  • incoming tabs allow non letter chars (118a22f)
  • incomming tests (20148d8)
  • reloading after evn change (13b4328)
  • canonical examples: typo (ca641f3)

0.17.2-ee.2 (2019-10-30)

Features

  • format newlines for React Markdown component (fe5a276)
  • removes tabs in settings when only one environment (5041644)
  • shift enter creates newline (af2af20)
  • test for the apperance of tabs (07f5d1f)

Bug Fixes

  • newline applies to multilingual responses (5130863)
  • newline does not need event.preventDefault (433377d)
  • replace spacednewlines with newlines (ccaed6a)
  • revert code for identifying isTextResponse (c3b7568)

0.17.2-ee.1 (2019-10-30)

0.17.0-ee.9 (2019-10-30)

Bug Fixes

  • analytics: get rid of file-loader (df30d76)

0.17.0-ee.8 (2019-10-29)

0.17.0-ee.7 (2019-10-29)

Features

  • add a date picker component (03f484d)
  • add role for analytics (b5044f5)
  • basic analytics dashboard structure (5ce6b9f)
  • conversation durations chart (3f95093)
  • intent frequencies (588b2fb)
  • move import css from Datepicker to main.less (5090659)
  • analytics: storybook (4d7e32e)
  • nlu analytics with graphql (1d258a8)
  • analytics: add conversationCounts query (5f1d017)
  • analytics: add environment selector (1f6e02a)
  • analytics: add exclude param to conversationCounts (d551dee)
  • analytics: add LineChart (4cc6362)
  • analytics: add placeholder for missing data (f265613)
  • analytics: add query params to intent freqs (3ade828)
  • analytics: add responseCounts query (2a97d48)
  • analytics: add storybook (163a7cb)
  • analytics: added title and chart selection (4b829b8)
  • analytics: analyticsCard (f9d7f71)
  • analytics: change from voronoi mesh to slice tooltips (3f3d11b)
  • analytics: defaults, add query fields (0db2d38)
  • analytics: discard data points with no timestamp (fe09821)
  • analytics: fix axis/point alignment (5b35f4c)
  • analytics: graph components (6f583e9)
  • analytics: name buckets by right bound (d904198)
  • analytics: new cards (1236f50)
  • analytics: pluralization (9335719)
  • analytics: refactor props (58a5807)
  • analytics: refactor props (4ec2c5e)
  • analytics: refactor using useQuery hook (eefc3e1)
  • prototyp convo length charts (466b86d)
  • tests for the datepicker Component (553ba02)

Bug Fixes

  • dimensions in NLU statistics (33de3f1)
  • fixed press enter to add message (2743081)
  • routes broken after merge (8051772)

0.17.0-ee.6 (2019-10-29)

0.17.0-ee.5 (2019-10-29)

0.17.0-ee.4 (2019-10-28)

0.17.0-ee.3 (2019-10-28)

0.17.0-ee.2 (2019-10-27)

0.17.0-ee.1 (2019-10-27)

Features

  • forms: basic support for forms in conv. builder (c160d99)

Bug Fixes

  • issue when a project did not have deployment envs (c3c901b)

0.16.3-rc.1-ee.4 (2019-10-21)

0.16.3-rc.1-ee.3 (2019-10-21)

Bug Fixes

  • check if there is environments before adding them to the options (bb29363)
  • test for env change, uses api to insert new conversations (f728eaa)

0.16.3-rc.1-ee.2 (2019-10-21)

0.16.3-rc.1-ee.1 (2019-10-20)

0.16.3-ee.1 (2019-10-18)

Features

0.16.2-ee.6 (2019-10-17)

Bug Fixes

  • fixed permission for entities in story editor (e7f3488)

0.16.2-ee.5 (2019-10-16)

0.16.2-ee.4 (2019-10-16)

0.16.2-ee.3 (2019-10-16)

Features

  • conversation environement selector ui (15472b3)
  • corrections following tests (532a336)
  • environement selector in conversations (0e958bd)
  • tests for multi environments in conversations (ba98e92)

Bug Fixes

  • update regex so it handle change of root url (d4bd05f)

0.16.2-ee.2 (2019-10-10)

0.16.2-ee.1 (2019-10-10)

Bug Fixes

  • project deletion test was not working on the cloud ci (ba08842)

0.16.0-rc.13-ee.1 (2019-10-09)

0.16.0-rc.12-ee.2 (2019-10-09)

0.16.0-rc.12-ee.1 (2019-10-09)

0.16.0-rc.11-ee.2 (2019-10-07)

Bug Fixes

  • display the current language response content (9fe6d2f)

0.16.0-rc.11-ee.1 (2019-10-04)

Features

  • test for the creation/deletion of a project (8f2e536)

Bug Fixes

  • improve project test to ensure (e7b9f00)
  • project deletionan optional argument did not have default value (ba0bd0b)

0.16.0-rc.10-ee.2 (2019-10-03)

0.16.0-rc.10-ee.1 (2019-10-03)

0.16.0-rc.9-ee.2 (2019-09-30)

0.16.0-rc.9-ee.1 (2019-09-26)

Features

  • default default domain in admin settings (5e2fe07)

Bug Fixes

  • default default domain for gke (ae3e116)

0.16.0-rc.8-ee.3 (2019-09-24)

0.16.0-rc.8-ee.2 (2019-09-23)

0.16.0-rc.8-ee.1 (2019-09-23)

Features

  • added default settings for gke dev (70f5739)
  • story error boundary (e665afb)

Bug Fixes

  • better errors for templates and slots (c5becb9)
  • story errors related to templates (7a2f9ec)

0.16.0-rc.7-ee.2 (2019-09-17)

Bug Fixes

  • float slot set to float value (df8bddf)
  • null slots represented as strings (0c93d3f)

0.16.0-rc.7-ee.1 (2019-09-13)

Features

  • offline templates: error catching for missing templates (07019bd)
  • add a popup for story group exception alerts (5fe6531)
  • offline templates: full responses are exported with domain (6478df2)
  • add bad lines to prevent crashes on md error (894c6eb)
  • add BadLineLabel for errors in visual editor (ff13088)
  • add exceptions in visual story editor (2333986)
  • add icon indicators for story exceptions (77e788b)
  • add icon indicators for story exceptions (2ca4bb8)
  • add response context to StotyEditorContainer (4344938)
  • collapsable stories (f52d54b)
  • exclude stories with errors from training (bde114b)
  • frontend excepetion handling in visual story (acb6d93)
  • links to Spectrum in menu and docs (3f77d44)
  • merge deleted stories (ebab5f6)

Bug Fixes

  • bot responses wrap correctly if unhovered (0c9ccb3)
  • add empty branches to new stories (f6d810e)
  • add quickreply button hiddem (739f1c4)
  • adjust line height for story group menu items (33f3648)
  • alerts not removed if intro story deleted (7f49c41)
  • backwards compatibility for exceptions (198d3c3)
  • crash in BranchTabLabel with old DataBases (be8e625)
  • crash in BranchTabLabel with old DataBases (3513ea3)
  • crashing in story utils with old DBs (14b1763)
  • default settings prevent widget display (a6b8553)
  • deleting a story deletes the whole story group (9401987)
  • display warnings for bot responses (6662be4)
  • empty default object in extractDomain (086d1b1)
  • error when no warnings/errors (a4cda4e)
  • exceptionAlerts warnings passed bad prop (1279ce3)
  • extra character caused a crash on start (ecad735)
  • project.deployment test fix (2103e23)
  • remove console.log and es lint errors (0735601)
  • remove duplicate context (e53b222)
  • show success message after CLI install (5fa3642)
  • stop crash when creating new story group (f603527)
  • story groups not deleting (fe86a65)
  • storyGroupMenu selected items are blue (f071f4a)
  • the selected story group is blue (f59a903)
  • typo in docker compose template (f9db13b)
  • undefined bot responses preventing training (f912b43)
  • visual editor lines with no type are BadLines (b8b06fd)
  • wrong default base_url in credentials (a38a0c9)

0.16.0-rc.4-ee.1 (2019-09-11)

Features

  • add deployment tab to settings menu (779b360)
  • add option to enable additional environment (3f4186a)
  • add seperate environments and settings (679eb09)
  • add style.less file for settings ui (f008256)
  • create tests for deployment env settings (2937518)

Bug Fixes

  • add backwards compatability for data (f4b8cce)
  • cannot add environment - namespace missing (8ccefcd)
  • change constants.json import to new path (1aacb37)
  • change credentials env menu to render once (59d6652)
  • stop ace editor unsaved text carryover (9d6a79c)
  • undefined environment handling (becb592)
  • undefined environment tag handling (4d01b4d)

0.15.5-ee.13 (2019-09-05)

0.15.5-ee.12 (2019-09-04)

0.15.5-ee.11 (2019-08-28)

Bug Fixes

  • add language param to bot response template (38300c7)
  • remove console.log (58fb26f)

0.15.5-ee.10 (2019-08-25)

Bug Fixes

0.15.5-ee.9 (2019-08-19)

0.15.5-ee.8 (2019-08-19)

0.15.5-ee.7 (2019-08-16)

Features

  • quick replies: comply with Messenger protocol (02b65a3)
  • quick replies: first commit (746c88d)
  • quick replies: refactor state management (cbd718e)
  • quick replies: save text-less responses (5dbfcae)
  • slot popup content: link to slots (846d8e5)
  • visual editor: close all hanging menus onmouseleave (5c97eb4)

Bug Fixes

  • delete response on empty text (a1924d4)
  • delete response on empty text (2c75938)
  • typo in utility function (e6df4a9)

0.15.5-ee.6 (2019-08-15)

Features

0.15.5-ee.5 (2019-08-14)

Features

  • story controller: getPossibleInsertions (61d4f58)
  • user utterance container: save on blur (63a1cc5)
  • user utterance container: save on blur (907443c)

Bug Fixes

  • focus bug with bot utterance input (cf35888)
  • prop type declaration (7ea7f27)

0.15.5-ee.4 (2019-08-12)

Features

  • bot response: new bubble on enter (045bec2)
  • bot response input: change placeholder (6adefbe)
  • disable loading model from bucket (fa8f4cf)

Bug Fixes

  • comment onChange prop for UtteranceContainer (91372bd)
  • wrong db initialization (4988954)

0.15.5-ee.3 (2019-08-12)

0.15.5-ee.2 (2019-08-12)

Features

  • action viewer: Add action viewer component. (3c25573)
  • action viewer: Add action viewer component. (3870668)
  • ActionPopupContent/SlotPopupContent: misc (a7d05a4)
  • BotResponseContainer: edit mode (aab2cc2)
  • BotResponseContainer: wip (91380c7)
  • BotResponseContainer: wip (8db4b47)
  • BotResponsePopupContent: fix close on modal open (ae02426)
  • BotResponsesContainer: click ellipsis to insert (efd2e61)
  • slot-label: add slot label (f0627fb)
  • slot-label: add slot label (cb730b8)
  • stories: add toggle to switch between markdown/visual editor (b66e2c9)
  • StoryController: initial commit (4b2ccc5)
  • StoryVisualEditor: better insert experience (8c54aeb)
  • StoryVisualEditor: can add action and slot (8a2e843)
  • StoryVisualEditor: can add action and slot (894f69a)
  • StoryVisualEditor: can add every type of line (f30b840)
  • StoryVisualEditor: can add every type of line (91573b3)
  • StoryVisualEditor: style specificity (8b135e4)
  • quick replies component (4e81555)
  • StoryVisualEditor: can add user utterance from input (fcb173f)
  • StoryVisualEditor: can add user utterance from input (d5793ce)
  • StoryVisualEditor: can add user utterance from payload (37be9b8)
  • StoryVisualEditor: can add user utterance from payload (1bef4f6)
  • StoryVisualEditor: don't display error on payload fetch fail (4af8dc4)
  • StoryVisualEditor: don't update DOM when blur target is descendent (f58c0d7)
  • StoryVisualEditor: integrate getUtteranceFromPayload (2ae6824)
  • StoryVisualEditor: integration (37d4a4d)
  • StoryVisualEditor: new utterances are parsed (bd1e888)
  • StoryVisualEditor: null intents marked with dash (8b0dbd0)
  • StoryVisualEditor: place insertLine cursor on last line by default (11db5de)
  • StoryVisualEditor: remove duplicate method (05d8586)
  • StoryVisualEditor: style fixes; add trash to action and slot lines (6c90a16)
  • StoryVisualEditor: use StoryController (9e342af)
  • StoryVisualEditor: wip (104ec88)
  • toggle: make toggle appear outside intro stories (3dd3c8a)
  • toggle: refactor style (75267c3)
  • UserUtteranceContainer: fill onDelete prop (053cd8e)
  • UtteranceContainer: wip (a41abfe)
  • UtteranceContainer: wip (cce53b2)
  • VisualStoryEditor: wip (4d524ca)
  • VisualStoryEditor: wip (2097fe8)
  • context setup for stories (2bfe62a)
  • get utterance from payload (6a8d13b)
  • method to insert an example with the language (1f33dc8)
  • persist story mode (f370e0e)

Bug Fixes

  • deletable on all visual story editor lines (2d13697)
  • duplicate imports (e420372)
  • preprend ci script with npx (cffad49)
  • regex to set correct image version on release (1b99e3d)
  • initial-payload: payload for the widget is unique (ee54b44)
  • slot popup: show only categories relevant to selected slot (69c3a0d)
  • Stories: wip-- toggle between code and visual (a37d830)
  • unique key warning (cdd5de8)
  • wrong second argument for useEffect (9295c61)
  • wrong second argument for useEffect (2ecc37d)
  • StoryVisualEditor: place insertLine cursor on last line by default (027bff4)
  • StoryVisualEditor: place insertLine cursor on last line by default (73b2c46)
  • VisualStoryEditor: don't save invalid Md (c660809)

0.15.2-ee.1 (2019-07-25)

Features

  • Action/UserUtterancePopupContent: don't save on whitespace or null (7add46d)
  • ActionPopupContent: first commit (c5a7002)
  • ActionPopupContent: fix overzealous search & replace (c17a199)
  • AddStoryLine: add availableActions prop (5fcce76)
  • AddStoryLine: first commit (2b3cd75)
  • BotResponsePopupContent: add limitedSelection prop (8d3434f)
  • BotResponsePopupContent: add noButtonResponse prop (ecf5141)
  • BotResponsePopupContent: close modal on dimmer click (9080f5b)
  • BotResponsePopupContent: first commit (4668b22)
  • BotResponsePopupContent: fix close on modal open (e977d0a)
  • BotResponsesContainer: click ellipsis to insert (9e73aa8)
  • conversation editor: DashedButton component (35b9163)
  • logo: Added logo field in the global public settings (8be19f2)
  • oos: change export format from tsv to csv (9f3abd1)
  • oos: make intent nullifiable (b7eae05)
  • PayloadEditor: add entity button only shown if all entities have value set (90d886e)
  • PayloadEditor: first commit (65d676b)
  • rasa-1.0: Migrated rasa-1.0 from the open source (e8f4583)
  • rbac: added roles for project info & Rules (de3cd68)
  • rbc: add Process in bulk for nlu-data:w (7a3b832)
  • rbc: add roles for activity - validate, delete and intent (f8a80ac)
  • rbc: add roles for the NLU model menu adn playground (c5b4a89)
  • rbc: add roles to activity panes (313cae5)
  • rbc: add roles to NLU model (complete), for frontend (507f2ba)
  • rbc: add roles to NLU model menu (d4727be)
  • rbc: added roles for project settings (a748b72)
  • rbc: disabled entity popup for required permision (ef1c71c)
  • rbc: new and duplicate models removed instead of disabled (c9b476e)
  • rbc: NLU model frontend (679fb1b)
  • roles: add viewer, editor and admin for front end (1e09537)
  • roles: added backend tests (176b2c8)
  • roles: better roles for nlu settings (8706452)
  • roles: conversations (860bf5d)
  • roles: dynamic routing (eaab9bc)
  • roles: dynamic sidebar and routing + tests (e3e6012)
  • roles: improvements (140fde5)
  • roles: made nlu_models pub secure (e6209e8)
  • roles: nlu models (23b3d94)
  • roles: nlu-model:x can now view models (c0ac1ea)
  • roles: responses (0d38892)
  • roles: roles on nlu_model backend (89ee4f4)
  • SlotPopupContent: context controlled by storybook knob (a81a1e4)
  • SlotPopupContent: first commit (4ab79e6)
  • SlotPopupContent: refactor, add Link (0c44139)
  • smart tips: added boldface parser for tip message body (bdb58b1)
  • smart tips: changed message wording (462326f)
  • smart tips: global threshold can now be set in project settings (e45b0a1)
  • smart tips: integrated smart tips in activity screen (31a8420)
  • smart tips: make default nlu th 0.75 (e8abe94)
  • smart tips: style -- changed look of action buttons according to spec (d66949f)
  • smart tips: ui changes (a93b986)
  • stories: permissions (09c4d71)
  • stories-roles: Added permission to stories back end. (90752d8)
  • stories-roles: Added permission to stories front end. (8906edd)
  • stories-slots: Slots and stories are added to ee. (c36023a)
  • StoryVisualEditor: better insert experience (87cecdf)
  • StoryVisualEditor: don't update DOM when blur target is descendent (89808bb)
  • StoryVisualEditor: wip (3408d16)
  • UserUtterancePopupContent: User says menu (42f13fe)
  • UtteranceContainer: wip (a28bfd1)
  • UtteranceContainer: wip (291e8d1)
  • activity api roles (0ed9f73)
  • added field to set small logo (1cd338e)
  • re-enabled bot response NLU criterias (13ef2a2)

Bug Fixes

  • code style (ca393fd)
  • default settings (423d1bb)
  • instance creation on project creation (5618a3b)
  • rbac: removed unecessary code (f6f1869)
  • storybooks build (b12047e)
  • tests were not creating users with scope (0e2ec0e)
  • test: removed nlu-meta spec file (6f23110)
  • Train button inactive on NLU (7b791ac)
  • training data sub (83f7f2b)
  • upload model to GCS if GKE and Core bucket present (5bd9595)
  • useless code changes (e767c1a)
  • wrong channel name in default settings (f5dad8a)
  • roles: reverted back a file (964fb93)
  • wrong format in global settings schema (280437c)
  • project-creation: bug fix while creating a new project (44a0019)
  • rbc: Fixed nlu-data:w test, Online/Offline button for nlu-model:w (dd409f4)
  • roles: minor fixes (68a0bc8)
  • roles: permissions (df65719)
  • roles: Removed fieldset (bbf5758)
  • stories: Fix roles for stories and train button (bf85d86)
  • test: Moved chats test after roles test (1a605cd)

0.19.3 (2020-02-12)

0.19.2 (2020-02-11)

Bug Fixes

  • triggers: wrong payload sent when entities are passed (#56) (54ecc15)

0.19.1-ee.3 (2020-02-07)

Features

  • send query trigger as entity (9353b23)
  • send query trigger as entity (6a2499d)

0.19.1-ee.2 (2020-02-03)

Features

  • cli: add a .gitignore file to project template (65f7d84)

Bug Fixes

  • all projects were visible to all users roles (ed4c62e)
  • bad analytics filter (bff8f06)
  • it was not posible to have more than one entity in payload editor (61cf096)
  • only current project is visible from dropdown (672dccd)
  • cli: correct path in production Dockerfile for actions (dd535a9)
  • metadata lost at import, add the metadata model in the api (2728b58)

0.19.1-ee.1 (2020-01-30)

Features

  • smart stories group (23549f0)
  • smart stories group (57203a1)
  • stories: create and edit trigger conditions (e50b308)
  • stories: create and edit trigger conditions (b0a3a6f)
  • analytics: change fallback count semantics (d4bde03)
  • analytics: keep both kinds of fallback cards side by side (69ea7d4)

Bug Fixes

  • nlg endpoint is incorrect in gke default settings (4665cc3)

0.19.1-ee.0 (2020-01-23)

Features

  • activity: don't show spinner (8ad22a5)
  • export: add exclusion options to project export (92cc546)
  • image upload: add upload and delete routes (41b923d)
  • image upload: call image delete webhook from deleteResponse (4ca39c3)
  • image upload: connect image upload to webhook (f0e378d)
  • image upload: wip (2fc4e26)
  • webhooks: add webhooks in global settings (8752e83)

Bug Fixes

  • response form leaves a margin at the right of the modal (#443) (bd876d8)
  • activity insertion: prevent populateActivity never returning (b4dc07b)
  • activity logging: use string ids (8544d6f)
  • cli: major version upgrade + migration guide (#445) (94d21a8)
  • cannot edit project startup responses (fad2eca)
  • deleteVariation fails if variation is focused (b7262dd)
  • validate utterance bug (b2ab1b3)
  • conversation import: new lang field location (b349daf)
  • model bucket not shown in the project admin screen (66985b5)
  • variations not saving (9929a72)
  • variations save on modal close (ce040af)
  • visual editor, always load first variation (a5703bf)

0.19.0-alpha.6-ee.0 (2020-01-13)

Bug Fixes

  • utterance text missing in visual editor (285fe29)

0.19.0-alpha.5-ee.1 (2020-01-10)

0.19.0-alpha.5-ee.0 (2020-01-09)

Features

  • nlg in project default language if no language specified (#418) (e2ab647)

Bug Fixes

  • missing Nivo dependencies (1a0e62d)
  • missing response content in visual editor (439bbc4)

0.19.0-alpha.4-ee.5 (2020-01-07)

Bug Fixes

  • package.lock was broken after merge (6f67a09)

0.19.0-alpha.4-ee.4 (2020-01-07)

Bug Fixes

  • remove duplicate migration ids (025e1a9)

0.19.0-alpha.4-ee.3 (2020-01-07)

0.19.0-alpha.4-ee.2 (2020-01-07)

0.19.0-alpha.4-ee.1 (2020-01-07)

Features

  • projects created with correct params + hide platform settings from project admins (#8) (cf13a27)
  • analytics by lang: add language selector to analytics (#5) (a25aeab)

Bug Fixes

  • opening a conversation from incoming NLU crashes (#10) (2ed7936)
  • set correct NLG endpoint in default GKE settings (fccc7af)

0.18.5-ee.8 (2019-12-17)

0.18.5-ee.7 (2019-12-17)

0.18.5-ee.6 (2019-12-12)

Features

  • intent dropdown: show canonical example (129f9eb)

0.18.5-ee.5 (2019-12-06)

0.18.5-ee.4 (2019-12-03)

Features

  • canonical example shown in new utterances (424ad52)

Bug Fixes

  • invalid date in conversation filters (99b8799)

0.18.5-ee.3 (2019-12-03)

Features

  • conversation popup for utterances (157fbc8)

Bug Fixes

0.18.5-ee.2 (2019-11-29)

0.18.5-ee.1 (2019-11-27)

0.18.5-ee.0 (2019-11-26)

Features

  • activity: add filtering (1f005d6)
  • activity: batch reinterpret only visible items (5af9c85)
  • add ui for conversation filters (776f5ce)
  • analytics table view (e3194bb)
  • reset button, hide/reveal and style changes (3dcf651)

Bug Fixes

  • Analytics display duration as time(s)<time(s) (aeb7e31)
  • analytics duration: axis values (6cf27f2)
  • analytics duration: axis values (d50d9b9)
  • change api url if the run is from ci (46d233e)
  • custom range in date picker (0d3d21e)
  • custom range in date picker (a040628)
  • date picker creashes with a one day range (17a7aa0)
  • date ranges for analytics line chart (5a3d12d)
  • env selector and the corresponding test (99da2af)
  • env selector and the corresponding test (cd34084)
  • input overflows action dropdown (2fe3c77)
  • long action names overflow dropdown (558320a)
  • removes a duplicate of insert many (2712612)
  • removes a duplicate of insert many (70e0238)

0.18.2-ee.0 (2019-11-18)

0.18.1-ee.3 (2019-11-14)

Bug Fixes

  • destructuring error when deployment is null (623fdd8)
  • training broken after merge issue (96ec5c6)

0.18.1-ee.2 (2019-11-14)

Features

  • activity: attempt at optimistic rerendering (323668f)
  • activity: use subscriptions instead of query (9102c35)

Bug Fixes

  • selecting fallback templates does nothing (79c961c)

0.18.1-ee.1 (2019-11-13)

Features

  • add conversations mutations names (00de829)
  • add graphQL schema for activity (4ca47e1)
  • add resolver for activity (d9cbb6a)

Bug Fixes

  • before/after each in convo tests (b026efb)
  • before/after each in convo tests (68bb7c6)
  • conversation test needs to wait for rasa (cf8f237)
  • error on delete user (b4d7157)
  • import delayed refresh causes test to fail (1e28f06)
  • merge conversation changes from master (d24459e)
  • merge conversation changes from master (8e6dd30)
  • merge conversation pagination (9a100b9)
  • nlu training button permanatly disabled (64b069b)
  • use importProject cypress command in tests (4838424)
  • use importProject cypress command in tests (4dd08aa)
  • use withRouter for routing, func for get url (beed366)
  • use withRouter for routing, func for get url (203e342)

0.18.0-rc.1-ee.1 (2019-11-12)

0.18.0-rc.0-ee.1 (2019-11-11)

Features

  • analytics: add dnd (41ff8bd)
  • analytics: add redux state for card settings (ced418d)
  • analytics: add reordering of cards (9d5e2da)
  • show empty buckets in analytics (26e5d55)
  • analytics: change fallback metric (617afd4)
  • analytics: exclusion and fallback templates (82a7c13)
  • analytics: wip: add exclusion/inclusion settings (b2b752d)

0.17.2-ee.8 (2019-11-11)

Bug Fixes

  • persist state test clicks too fast (9541c36)
  • story exception test could not find .eq(2) (d960610)

0.17.2-ee.7 (2019-11-07)

Bug Fixes

  • double story group browser (c907fbb)
  • fixed intercom and roles in project subs (1a7b247)

0.17.2-ee.6 (2019-11-05)

Bug Fixes

  • canonical dataCy change and click gem loop (5f523d8)
  • incoming crash with no deployment env (5e90a69)
  • prevent missed clicks in add canonical (05b10be)
  • standardize beforeeach and aftereach (95adf77)
  • test edits should be comments (34e346d)

0.17.2-ee.5 (2019-11-04)

Bug Fixes

  • bot_response.spec (9e11e89)
  • expected to find one child instead of none (8ae0b2f)
  • mlu model playground never rendering (d3edb6e)

0.17.2-ee.4 (2019-11-01)

0.17.2-ee.3 (2019-11-01)

Features

  • add test for cannonical example in conversation builder (71c9bd0)
  • allow the cannonical field in example utils (5df5342)
  • prefer cannonical examples in conversation builder (22adca9)

Bug Fixes

  • enviroments in incoming tab (2afce1a)
  • incoming tabs allow non letter chars (118a22f)
  • incomming tests (20148d8)
  • reloading after evn change (13b4328)
  • canonical examples: typo (ca641f3)

0.17.2-ee.2 (2019-10-30)

Features

  • format newlines for React Markdown component (fe5a276)
  • removes tabs in settings when only one environment (5041644)
  • shift enter creates newline (af2af20)
  • test for the apperance of tabs (07f5d1f)

Bug Fixes

  • newline applies to multilingual responses (5130863)
  • newline does not need event.preventDefault (433377d)
  • replace spacednewlines with newlines (ccaed6a)
  • revert code for identifying isTextResponse (c3b7568)

0.17.2-ee.1 (2019-10-30)

0.17.0-ee.9 (2019-10-30)

Bug Fixes

  • analytics: get rid of file-loader (df30d76)

0.17.0-ee.8 (2019-10-29)

0.17.0-ee.7 (2019-10-29)

Features

  • add a date picker component (03f484d)
  • add role for analytics (b5044f5)
  • basic analytics dashboard structure (5ce6b9f)
  • conversation durations chart (3f95093)
  • intent frequencies (588b2fb)
  • move import css from Datepicker to main.less (5090659)
  • analytics: storybook (4d7e32e)
  • nlu analytics with graphql (1d258a8)
  • analytics: add conversationCounts query (5f1d017)
  • analytics: add environment selector (1f6e02a)
  • analytics: add exclude param to conversationCounts (d551dee)
  • analytics: add LineChart (4cc6362)
  • analytics: add placeholder for missing data (f265613)
  • analytics: add query params to intent freqs (3ade828)
  • analytics: add responseCounts query (2a97d48)
  • analytics: add storybook (163a7cb)
  • analytics: added title and chart selection (4b829b8)
  • analytics: analyticsCard (f9d7f71)
  • analytics: change from voronoi mesh to slice tooltips (3f3d11b)
  • analytics: defaults, add query fields (0db2d38)
  • analytics: discard data points with no timestamp (fe09821)
  • analytics: fix axis/point alignment (5b35f4c)
  • analytics: graph components (6f583e9)
  • analytics: name buckets by right bound (d904198)
  • analytics: new cards (1236f50)
  • analytics: pluralization (9335719)
  • analytics: refactor props (58a5807)
  • analytics: refactor props (4ec2c5e)
  • analytics: refactor using useQuery hook (eefc3e1)
  • prototyp convo length charts (466b86d)
  • tests for the datepicker Component (553ba02)

Bug Fixes

  • dimensions in NLU statistics (33de3f1)
  • fixed press enter to add message (2743081)
  • routes broken after merge (8051772)

0.17.0-ee.6 (2019-10-29)

0.17.0-ee.5 (2019-10-29)

0.17.0-ee.4 (2019-10-28)

0.17.0-ee.3 (2019-10-28)

0.17.0-ee.2 (2019-10-27)

0.17.0-ee.1 (2019-10-27)

Features

  • forms: basic support for forms in conv. builder (c160d99)

Bug Fixes

  • issue when a project did not have deployment envs (c3c901b)

0.16.3-rc.1-ee.4 (2019-10-21)

0.16.3-rc.1-ee.3 (2019-10-21)

Bug Fixes

  • check if there is environments before adding them to the options (bb29363)
  • test for env change, uses api to insert new conversations (f728eaa)

0.16.3-rc.1-ee.2 (2019-10-21)

0.16.3-rc.1-ee.1 (2019-10-20)

0.16.3-ee.1 (2019-10-18)

Features

0.16.2-ee.6 (2019-10-17)

Bug Fixes

  • fixed permission for entities in story editor (e7f3488)

0.16.2-ee.5 (2019-10-16)

0.16.2-ee.4 (2019-10-16)

0.16.2-ee.3 (2019-10-16)

Features

  • conversation environement selector ui (15472b3)
  • corrections following tests (532a336)
  • environement selector in conversations (0e958bd)
  • tests for multi environments in conversations (ba98e92)

Bug Fixes

  • update regex so it handle change of root url (d4bd05f)

0.16.2-ee.2 (2019-10-10)

0.16.2-ee.1 (2019-10-10)

Bug Fixes

  • project deletion test was not working on the cloud ci (ba08842)

0.16.0-rc.13-ee.1 (2019-10-09)

0.16.0-rc.12-ee.2 (2019-10-09)

0.16.0-rc.12-ee.1 (2019-10-09)

0.16.0-rc.11-ee.2 (2019-10-07)

Bug Fixes

  • display the current language response content (9fe6d2f)

0.16.0-rc.11-ee.1 (2019-10-04)

Features

  • test for the creation/deletion of a project (8f2e536)

Bug Fixes

  • improve project test to ensure (e7b9f00)
  • project deletionan optional argument did not have default value (ba0bd0b)

0.16.0-rc.10-ee.2 (2019-10-03)

0.16.0-rc.10-ee.1 (2019-10-03)

0.16.0-rc.9-ee.2 (2019-09-30)

0.16.0-rc.9-ee.1 (2019-09-26)

Features

  • default default domain in admin settings (5e2fe07)

Bug Fixes

  • default default domain for gke (ae3e116)

0.16.0-rc.8-ee.3 (2019-09-24)

0.16.0-rc.8-ee.2 (2019-09-23)

0.16.0-rc.8-ee.1 (2019-09-23)

Features

  • added default settings for gke dev (70f5739)
  • story error boundary (e665afb)

Bug Fixes

  • better errors for templates and slots (c5becb9)
  • story errors related to templates (7a2f9ec)

0.16.0-rc.7-ee.2 (2019-09-17)

Bug Fixes

  • float slot set to float value (df8bddf)
  • null slots represented as strings (0c93d3f)

0.16.0-rc.7-ee.1 (2019-09-13)

Features

  • offline templates: error catching for missing templates (07019bd)
  • add a popup for story group exception alerts (5fe6531)
  • offline templates: full responses are exported with domain (6478df2)
  • add bad lines to prevent crashes on md error (894c6eb)
  • add BadLineLabel for errors in visual editor (ff13088)
  • add exceptions in visual story editor (2333986)
  • add icon indicators for story exceptions (77e788b)
  • add icon indicators for story exceptions (2ca4bb8)
  • add response context to StotyEditorContainer (4344938)
  • collapsable stories (f52d54b)
  • exclude stories with errors from training (bde114b)
  • frontend excepetion handling in visual story (acb6d93)
  • links to Spectrum in menu and docs (3f77d44)
  • merge deleted stories (ebab5f6)

Bug Fixes

  • bot responses wrap correctly if unhovered (0c9ccb3)
  • add empty branches to new stories (f6d810e)
  • add quickreply button hiddem (739f1c4)
  • adjust line height for story group menu items (33f3648)
  • alerts not removed if intro story deleted (7f49c41)
  • backwards compatibility for exceptions (198d3c3)
  • crash in BranchTabLabel with old DataBases (be8e625)
  • crash in BranchTabLabel with old DataBases (3513ea3)
  • crashing in story utils with old DBs (14b1763)
  • default settings prevent widget display (a6b8553)
  • deleting a story deletes the whole story group (9401987)
  • display warnings for bot responses (6662be4)
  • empty default object in extractDomain (086d1b1)
  • error when no warnings/errors (a4cda4e)
  • exceptionAlerts warnings passed bad prop (1279ce3)
  • extra character caused a crash on start (ecad735)
  • project.deployment test fix (2103e23)
  • remove console.log and es lint errors (0735601)
  • remove duplicate context (e53b222)
  • show success message after CLI install (5fa3642)
  • stop crash when creating new story group (f603527)
  • story groups not deleting (fe86a65)
  • storyGroupMenu selected items are blue (f071f4a)
  • the selected story group is blue (f59a903)
  • typo in docker compose template (f9db13b)
  • undefined bot responses preventing training (f912b43)
  • visual editor lines with no type are BadLines (b8b06fd)
  • wrong default base_url in credentials (a38a0c9)

0.16.0-rc.4-ee.1 (2019-09-11)

Features

  • add deployment tab to settings menu (779b360)
  • add option to enable additional environment (3f4186a)
  • add seperate environments and settings (679eb09)
  • add style.less file for settings ui (f008256)
  • create tests for deployment env settings (2937518)

Bug Fixes

  • add backwards compatability for data (f4b8cce)
  • cannot add environment - namespace missing (8ccefcd)
  • change constants.json import to new path (1aacb37)
  • change credentials env menu to render once (59d6652)
  • stop ace editor unsaved text carryover (9d6a79c)
  • undefined environment handling (becb592)
  • undefined environment tag handling (4d01b4d)

0.15.5-ee.13 (2019-09-05)

0.15.5-ee.12 (2019-09-04)

0.15.5-ee.11 (2019-08-28)

Bug Fixes

  • add language param to bot response template (38300c7)
  • remove console.log (58fb26f)

0.15.5-ee.10 (2019-08-25)

Bug Fixes

0.15.5-ee.9 (2019-08-19)

0.15.5-ee.8 (2019-08-19)

0.15.5-ee.7 (2019-08-16)

Features

  • quick replies: comply with Messenger protocol (02b65a3)
  • quick replies: first commit (746c88d)
  • quick replies: refactor state management (cbd718e)
  • quick replies: save text-less responses (5dbfcae)
  • slot popup content: link to slots (846d8e5)
  • visual editor: close all hanging menus onmouseleave (5c97eb4)

Bug Fixes

  • delete response on empty text (a1924d4)
  • delete response on empty text (2c75938)
  • typo in utility function (e6df4a9)

0.15.5-ee.6 (2019-08-15)

Features

0.15.5-ee.5 (2019-08-14)

Features

  • story controller: getPossibleInsertions (61d4f58)
  • user utterance container: save on blur (63a1cc5)
  • user utterance container: save on blur (907443c)

Bug Fixes

  • focus bug with bot utterance input (cf35888)
  • prop type declaration (7ea7f27)

0.15.5-ee.4 (2019-08-12)

Features

  • bot response: new bubble on enter (045bec2)
  • bot response input: change placeholder (6adefbe)
  • disable loading model from bucket (fa8f4cf)

Bug Fixes

  • comment onChange prop for UtteranceContainer (91372bd)
  • wrong db initialization (4988954)

0.15.5-ee.3 (2019-08-12)

0.15.5-ee.2 (2019-08-12)

Features

  • action viewer: Add action viewer component. (3c25573)
  • action viewer: Add action viewer component. (3870668)
  • ActionPopupContent/SlotPopupContent: misc (a7d05a4)
  • BotResponseContainer: edit mode (aab2cc2)
  • BotResponseContainer: wip (91380c7)
  • BotResponseContainer: wip (8db4b47)
  • BotResponsePopupContent: fix close on modal open (ae02426)
  • BotResponsesContainer: click ellipsis to insert (efd2e61)
  • slot-label: add slot label (f0627fb)
  • slot-label: add slot label (cb730b8)
  • stories: add toggle to switch between markdown/visual editor (b66e2c9)
  • StoryController: initial commit (4b2ccc5)
  • StoryVisualEditor: better insert experience (8c54aeb)
  • StoryVisualEditor: can add action and slot (8a2e843)
  • StoryVisualEditor: can add action and slot (894f69a)
  • StoryVisualEditor: can add every type of line (f30b840)
  • StoryVisualEditor: can add every type of line (91573b3)
  • StoryVisualEditor: style specificity (8b135e4)
  • quick replies component (4e81555)
  • StoryVisualEditor: can add user utterance from input (fcb173f)
  • StoryVisualEditor: can add user utterance from input (d5793ce)
  • StoryVisualEditor: can add user utterance from payload (37be9b8)
  • StoryVisualEditor: can add user utterance from payload (1bef4f6)
  • StoryVisualEditor: don't display error on payload fetch fail (4af8dc4)
  • StoryVisualEditor: don't update DOM when blur target is descendent (f58c0d7)
  • StoryVisualEditor: integrate getUtteranceFromPayload (2ae6824)
  • StoryVisualEditor: integration (37d4a4d)
  • StoryVisualEditor: new utterances are parsed (bd1e888)
  • StoryVisualEditor: null intents marked with dash (8b0dbd0)
  • StoryVisualEditor: place insertLine cursor on last line by default (11db5de)
  • StoryVisualEditor: remove duplicate method (05d8586)
  • StoryVisualEditor: style fixes; add trash to action and slot lines (6c90a16)
  • StoryVisualEditor: use StoryController (9e342af)
  • StoryVisualEditor: wip (104ec88)
  • toggle: make toggle appear outside intro stories (3dd3c8a)
  • toggle: refactor style (75267c3)
  • UserUtteranceContainer: fill onDelete prop (053cd8e)
  • UtteranceContainer: wip (a41abfe)
  • UtteranceContainer: wip (cce53b2)
  • VisualStoryEditor: wip (4d524ca)
  • VisualStoryEditor: wip (2097fe8)
  • context setup for stories (2bfe62a)
  • get utterance from payload (6a8d13b)
  • method to insert an example with the language (1f33dc8)
  • persist story mode (f370e0e)

Bug Fixes

  • deletable on all visual story editor lines (2d13697)
  • duplicate imports (e420372)
  • preprend ci script with npx (cffad49)
  • regex to set correct image version on release (1b99e3d)
  • initial-payload: payload for the widget is unique (ee54b44)
  • slot popup: show only categories relevant to selected slot (69c3a0d)
  • Stories: wip-- toggle between code and visual (a37d830)
  • unique key warning (cdd5de8)
  • wrong second argument for useEffect (9295c61)
  • wrong second argument for useEffect (2ecc37d)
  • StoryVisualEditor: place insertLine cursor on last line by default (027bff4)
  • StoryVisualEditor: place insertLine cursor on last line by default (73b2c46)
  • VisualStoryEditor: don't save invalid Md (c660809)

0.15.2-ee.1 (2019-07-25)

Features

  • Action/UserUtterancePopupContent: don't save on whitespace or null (7add46d)
  • ActionPopupContent: first commit (c5a7002)
  • ActionPopupContent: fix overzealous search & replace (c17a199)
  • AddStoryLine: add availableActions prop (5fcce76)
  • AddStoryLine: first commit (2b3cd75)
  • BotResponsePopupContent: add limitedSelection prop (8d3434f)
  • BotResponsePopupContent: add noButtonResponse prop (ecf5141)
  • BotResponsePopupContent: close modal on dimmer click (9080f5b)
  • BotResponsePopupContent: first commit (4668b22)
  • BotResponsePopupContent: fix close on modal open (e977d0a)
  • BotResponsesContainer: click ellipsis to insert (9e73aa8)
  • conversation editor: DashedButton component (35b9163)
  • logo: Added logo field in the global public settings (8be19f2)
  • oos: change export format from tsv to csv (9f3abd1)
  • oos: make intent nullifiable (b7eae05)
  • PayloadEditor: add entity button only shown if all entities have value set (90d886e)
  • PayloadEditor: first commit (65d676b)
  • rasa-1.0: Migrated rasa-1.0 from the open source (e8f4583)
  • rbac: added roles for project info & Rules (de3cd68)
  • rbc: add Process in bulk for nlu-data:w (7a3b832)
  • rbc: add roles for activity - validate, delete and intent (f8a80ac)
  • rbc: add roles for the NLU model menu adn playground (c5b4a89)
  • rbc: add roles to activity panes (313cae5)
  • rbc: add roles to NLU model (complete), for frontend (507f2ba)
  • rbc: add roles to NLU model menu (d4727be)
  • rbc: added roles for project settings (a748b72)
  • rbc: disabled entity popup for required permision (ef1c71c)
  • rbc: new and duplicate models removed instead of disabled (c9b476e)
  • rbc: NLU model frontend (679fb1b)
  • roles: add viewer, editor and admin for front end (1e09537)
  • roles: added backend tests (176b2c8)
  • roles: better roles for nlu settings (8706452)
  • roles: conversations (860bf5d)
  • roles: dynamic routing (eaab9bc)
  • roles: dynamic sidebar and routing + tests (e3e6012)
  • roles: improvements (140fde5)
  • roles: made nlu_models pub secure (e6209e8)
  • roles: nlu models (23b3d94)
  • roles: nlu-model:x can now view models (c0ac1ea)
  • roles: responses (0d38892)
  • roles: roles on nlu_model backend (89ee4f4)
  • SlotPopupContent: context controlled by storybook knob (a81a1e4)
  • SlotPopupContent: first commit (4ab79e6)
  • SlotPopupContent: refactor, add Link (0c44139)
  • smart tips: added boldface parser for tip message body (bdb58b1)
  • smart tips: changed message wording (462326f)
  • smart tips: global threshold can now be set in project settings (e45b0a1)
  • smart tips: integrated smart tips in activity screen (31a8420)
  • smart tips: make default nlu th 0.75 (e8abe94)
  • smart tips: style -- changed look of action buttons according to spec (d66949f)
  • smart tips: ui changes (a93b986)
  • stories: permissions (09c4d71)
  • stories-roles: Added permission to stories back end. (90752d8)
  • stories-roles: Added permission to stories front end. (8906edd)
  • stories-slots: Slots and stories are added to ee. (c36023a)
  • StoryVisualEditor: better insert experience (87cecdf)
  • StoryVisualEditor: don't update DOM when blur target is descendent (89808bb)
  • StoryVisualEditor: wip (3408d16)
  • UserUtterancePopupContent: User says menu (42f13fe)
  • UtteranceContainer: wip (a28bfd1)
  • UtteranceContainer: wip (291e8d1)
  • activity api roles (0ed9f73)
  • added field to set small logo (1cd338e)
  • re-enabled bot response NLU criterias (13ef2a2)

Bug Fixes

  • code style (ca393fd)
  • default settings (423d1bb)
  • instance creation on project creation (5618a3b)
  • rbac: removed unecessary code (f6f1869)
  • storybooks build (b12047e)
  • tests were not creating users with scope (0e2ec0e)
  • test: removed nlu-meta spec file (6f23110)
  • Train button inactive on NLU (7b791ac)
  • training data sub (83f7f2b)
  • upload model to GCS if GKE and Core bucket present (5bd9595)
  • useless code changes (e767c1a)
  • wrong channel name in default settings (f5dad8a)
  • roles: reverted back a file (964fb93)
  • wrong format in global settings schema (280437c)
  • project-creation: bug fix while creating a new project (44a0019)
  • rbc: Fixed nlu-data:w test, Online/Offline button for nlu-model:w (dd409f4)
  • roles: minor fixes (68a0bc8)
  • roles: permissions (df65719)
  • roles: Removed fieldset (bbf5758)
  • stories: Fix roles for stories and train button (bf85d86)
  • test: Moved chats test after roles test (1a605cd)

0.19.0-alpha.4 (2020-01-07)

Bug Fixes

  • botResponseEditor, prevent close on save (a6ae54d)
  • cannot close empty custom response (edbfc1d)
  • intent confidence alignment in conversations (#417) (ec8b8b3)
  • quick reply, select button intent (2943a0b)

Tests

  • add custom response via visual editor (19c4bf4)
  • expect error on responseEditor close (71f1178)
  • fix bot response test, fails to edit (1ec4b5c)

0.19.0-alpha.3 (2020-01-07)

Bug Fixes

  • allow any type of ars in NLG endpoint to support forms (#410) (a2f6d5f)
  • metadata and delete icons remain visible (#407) (0ec6c18)
  • story visual editor can't retrieve bot responses (#415) (083af1e)
  • strip slashes when parsing and no model trained (#412) (6ad1f66)

Features

0.19.0-alpha.2 (2020-01-04)

Bug Fixes

  • text should not be null in image payload (6321efd)
  • cli: docker-compose file must not be generated on project init (#404) (ce11213)

0.19.0-alpha.1 (2020-01-03)

Bug Fixes

  • bug with utterance insertion in visual story editor (#385) (61605db)
  • enforce uniqueness of index in bot responses (befe4fb)
  • language retrieval failure preventing activity logging (8f215ba)

Features

  • cli: improvements in version management and file generation (#396) (e2a9258)
  • language selector: make multiple selection possible (#389) (4dce052)
  • seq: don't commit response unless actually changed (2f04706)
  • seqs: move resolved responses to state (5d814dd)
  • sequences: context update function (2ce2257)
  • sequences: new line logic (cf760a6)
  • sequences: sequent delete logic (3f1d3e2)
  • sequences: wip (29df2b1)
  • user id: add user id to conversations (e434d60)
  • add a statistics page to training data (#397) (11786a5)
  • ensure consistency between stories and responses (#366) (097211f)
  • user id: show user id in conversation viewer (2d41018)
  • images can be added to the story visual editor (#401) (866bb7f)
  • log conversation language too (3a5e458)

Tests

  • adapt canonical test to new intent label component (e2c30f2)
  • fix more tests (62f0ec3)
  • fix tests (f494a00)
  • stop overwriting endpoints with fixtures (984572c)

0.19.0-alpha.0 (2019-12-19)

Bug Fixes

  • add entities in the NLU Playground (9f5d2e3)
  • canonical popup alignment and style (7df72e1)
  • change training status determination method (9aa6e15)
  • crash in incoming (af33948)
  • default settings for development setup are incorrect (#373) (7a6add8)
  • deprecated parameter in context parse method (b1969f4)
  • import project error message not displayed (#348) (0a049ce)
  • instantaneous chat answers (3ed1695)
  • keep only allowed fields in activity insertion/reparse (8704cd3)
  • meteor server setup up for graphQL subscriptions (e2bb30e)
  • mongo connection failure message (f045af3)
  • remember story group selection (febf6ef)
  • cli: error when running the CLI outside a project folder (#374) (1f6a3f8)
  • wrong default API host in default-settings.docker-compose.dev.json (5f932d6)
  • cli: selecting logs in the main menu crashes the CLI (777670c)

Features

  • add conversations mutations names (913ade7)
  • cli: show more relevant commands on botfront up (b393e16)
  • add graphQL schema for activity (c846b6d)
  • add resolver for activity (e30d3e2)
  • add security layer to GraphQL API (#368) (b79684d)
  • include intent confidence score in conversations viewer (#358) (5ffe46d)
  • activity: batch reinterpret only visible items (efd548b)
  • mark any first example for an intent & entity combination canonical (#356) (5152d13)
  • actions: rebuild action server on file change (9724433)
  • activity: add sorting by confidence % (87c18fe)
  • activity: attempt at optimistic rerendering (7989b56)
  • activity: use subscriptions instead of query (1534c76)
  • data table: add props for fixed w&h (a6eadc4)
  • data table: show header only if present, add fixedRows prop (0d5dd34)
  • intent dropdown: sort selected first (d8f4f4b)
  • intent label: new intent label wip (2c16be8)
  • project context: refresh intents and entities on mount (#354) (bc36c91)

Tests

  • enable eslint no-undef (858a8ce)
  • fix cypress tests (5345fa6)
  • fix cypress tests (9d980c7)
  • fix incoming tests (e326e4c)
  • fix test, polyfill fromEntries (621ea41)
  • fix tests (d837348)
  • fix the fix (92b0176)
  • persist working language (b7cba07)
  • reintroduce qr postback button test (c62817b)
  • activity: update tests (016a2c7)
  • remove incoming from redux language tests (58b0544)
  • removes callback might fix random bug (65ea143)
  • update selectors to new dataCy selectors (a49073d)

0.18.5 (2019-11-22)

0.18.4 (2019-11-22)

0.18.3 (2019-11-22)

Bug Fixes

  • display update warnings for bot sequences (6974bc0)
  • export for Rasa: domain contains language information (8330b23)

Tests

  • fixes visual edit tests after removing sequences (57f3748)

0.18.2 (2019-11-18)

Bug Fixes

  • before/after each in convo tests (e6f7fad)
  • before/after each in convo tests (94b2dde)
  • branch deletion in visual_branches test (9d1bb6c)
  • clean up state before tests instead of after (2ece10f)
  • conversation test needs to wait for rasa (38985f1)
  • duplicate keys after deleting branch (ecbbea7)
  • import delayed refresh causes test to fail (1a1ebf1)
  • merge conversation changes from master (bc4d091)
  • merge conversation changes from master (1a740f6)
  • merge conversation pagination (09c7d57)
  • nlu training button permanatly disabled (03d85cd)
  • standeradize test steps to delete branches (2852dbc)
  • training on linked stories (4ade3a6)
  • training state stuck in training after import (46ab050)
  • use importProject cypress command in tests (568e212)
  • use importProject cypress command in tests (63fb46a)
  • use withRouter for routing, func for get url (a49cd47)
  • use withRouter for routing, func for get url (e593a27)

Features

  • add cy.findCy command (fe99ed5)
  • remove reload in conversation tests (0b3e55a)
  • test deleting a branch in the visual editor (4f1abdd)

Tests

0.18.1 (2019-11-12)

0.18.0 (2019-11-12)

0.18.0-rc.2 (2019-11-12)

0.18.0-rc.1 (2019-11-12)

Tests

0.18.0-rc.0 (2019-11-11)

Bug Fixes

  • capitalize select a language (54ad0d6)
  • change conversations.specs to "...".spec (d77747c)
  • change to satisfy eslint prefer destructuring (395c620)
  • conditions for updating redux story group (ba11397)
  • crach in incoming after import (6247ca3)
  • deep links for conversation (57c801a)
  • delete conversation when deleting a project (f4ea674)
  • dimensions in NLU statistics (86d6e9c)
  • enable rasa export (c396375)
  • es lint warning for ++ operator (ca8415f)
  • eslint and browser warnings (f44bd4e)
  • eslint issues (bfb8b15)
  • eslint warning, add a space (5cbc42e)
  • eslint warnings in conversationsBrowser (6919671)
  • evaluation data when linking from incoming (294d905)
  • export for rasa info message text (21c03d0)
  • file download causes timeout in cypress tests (e024ccb)
  • fixed rasa parsing in visual story editor (#314) (be97fe9)
  • import tests failing after visual story merge (df0c43e)
  • link from activity evaluates wrong data (ff67fb3)
  • loose ends and tests (c99570c)
  • missing period in info message (a35adb1)
  • names of export project test (71f073c)
  • nlu training button permanatly disabled (77829cf)
  • rasa X export explanation (ef19cbd)
  • story group redux selection random behaviour (b7e40cd)
  • style sort utterances dropdown (4fc0f4d)
  • test finds an element before it is removed (c84e0ff)
  • testing link in export success message (a1918c3)
  • train empty stories (e2be980)
  • training spec train button click failing (2884b12)
  • yaml extension must be yml (f750728)

Features

  • loader does not show up if request fast (css anim) (b68ea07)
  • add export for rasa (ae11aee)
  • add export for rasa (14ca3fe)
  • add fields to conversation schema/resolver (98f65eb)
  • add infor messages to rasa/rasaX export (52ae84f)
  • add loading when switching (e73302f)
  • add missing fields to conversation resolvers/schema (9d300b6)
  • add mutations for conversations (875e99a)
  • add popup for canonical examples (af9f2e1)
  • add possibility to toggle canonical on examples (6d5f4fd)
  • add sort and filter to graphlql query (a5bfb62)
  • add tabs for the sections of incoming (1487534)
  • connect required data to incoming tab (984a764)
  • conversation analytics (9850b4e)
  • conversation details fetching with graphQL (2d3a0bf)
  • delete use grahpQL mutation (2369097)
  • disable editing for canonical examples (458888d)
  • disable trash when example is canonical (b792284)
  • enable import and export tests (2e84a81)
  • filtering switch for canonical examples (0303444)
  • hide intents text if none, improve css (7752e6c)
  • hide language selector on the conversation tab (a0d6b9a)
  • hide subComponent on canonicals (60c22fd)
  • incoming language now from redux (1a49953)
  • keep route when switching project (308c1a8)
  • language in training data saved in redux (42947cf)
  • language selector in stories ! (9fb8ef9)
  • link to evaluation from incoming (9ff1568)
  • message when switching a canonical example (b5d66e6)
  • move activity to new page with conversations (854893f)
  • nlu analytics with graphql (3ba51ae)
  • optimistic removes read markers (c0b7e46)
  • pagination for conversation (5058643)
  • popups blocking editing when canonical (ba272db)
  • update conversation data on delete (3091354)
  • use graphQL in conversation browser (867a472)
  • use mutation for marking as read (14609ad)
  • back to project settings: ensure projectId set (ffbccf7)
  • canonical examples: sort by canonical status on train (48cf643)
  • canonical examples: sort by canonical status on train (1efcd84)
  • visual story editor: initial commit (511fe9a)
  • sort new utterances by date, new or old (cf0269c)

Tests

  • add build docs job (396e777)
  • add cypress testing routines (b1fd3e1)
  • add cypress tests (78bf1a3)
  • add tests for conversations (527b394)
  • add tests for incoming tab (16a0345)
  • beforeEach deletes previous models (fbe1bc6)
  • changes/improvement for previous modifications (f21f67a)
  • enable videos (bdfafdc)
  • fix caching (23338b9)
  • fix caching (3387d99)
  • fix Examples test with canonical (232fd72)
  • fix order in test (1529475)
  • fix previous commit (b5011ba)
  • fix screenshot on failure (b79a332)
  • fixed new utterances test (a92d89f)
  • fixes after rebase (52521db)
  • force click (a5dccc9)
  • improve way to access icons, might fix tests on the ci (fe3bacb)
  • improved cypress tests stability (4da626c)
  • install chai for cypress (1da716f)
  • may fix failling test (ecb2df2)
  • might fix canonical switching test (74745ce)
  • potential tests fixes (07f2fb1)
  • re-enable test for rasa export (4e40a85)
  • rename canonical tests (85f2d85)
  • test for conversation paginations (3e22113)
  • test language dropdown in rasa export (1a1db59)
  • uniqueness of canonical intent, value, entity (1f90923)
  • update ci vars (e6b25df)
  • update to test non-edition on canonical (91ff862)
  • wait for sg to exist before navigating away (8ee5aaa)
  • zip dir instead of tarball (df45e58)

0.17.2 (2019-10-30)

Bug Fixes

  • no response duplication (384c096)

Features

Tests

0.17.0 (2019-10-26)

0.17.0-rc.1 (2019-10-26)

0.17.0-rc.0 (2019-10-26)

Bug Fixes

  • missing stash files from the latest commit (8b89667)

Features

  • add botfront api files (a0513e6)
  • add support for cli arguments (292a79f)

Tests

0.16.7 (2019-10-25)

Tests

0.16.6 (2019-10-25)

0.16.5 (2019-10-25)

Bug Fixes

  • potential fix for the story exceptions (46275e4)
  • potential fix for the story group test not passing (ce2414a)
  • removes popup presence checking (ea5c4fd)
  • test destination story warning (627eda1)

Features

  • widen the story name input field (d037702)

Tests

0.16.4 (2019-10-23)

0.16.4 (2019-10-22)

0.16.3-rc.1 (2019-10-20)

Bug Fixes

  • add check to ensure story is linked (ef22a6a)
  • change self link test for the cloud nuild (477cd02)

0.16.3 (2019-10-18)

Bug Fixes

  • add test triggering the bug (27a7a09)
  • bug introduced with nlu import (abd0b4b)
  • can't fetch entities when an nlu example has no entities key (f4d78c1)
  • crash in NLU page after loading (b559399)
  • css for rasa-webchat (882d2b9)
  • destination stories don't trigger warnings if no intent (2dd38a8)
  • disabled api dependant tests (bf4b73b)
  • export test expects success msg on fail (d644d07)
  • fixed empty stories not training (b55453d)
  • force clicks on elements that may be hidden (a695514)
  • test failing to find .popup when slow (242f104)
  • use data-cy instead of class names (8a64aca)
  • useEffect to update the group name on render (4853ada)
  • webchat on firefox (c644d16)

Features

  • add option to export conversations (f82ecee)
  • add test triggering the bug (2e1dc3e)
  • export request optional and default settings (6cfa259)
  • self link when a story has branches (63d67e5)
  • test to self link on stories with branches (c68969f)

Tests

  • fixed test for exceptions in story branches (9f32c31)
  • porting error messages and export link url (f5ce211)

0.16.2 (2019-10-10)

Bug Fixes

  • cognetive complexity in ExportProject (90699d3)
  • add import/export tests to ignoreTestFiles (fb212b3)
  • add period to success message (abfbfb0)
  • capital API in error message (8760e8f)
  • change slot name to a better name (67de146)
  • code climate cognetive complexity (60b8b65)
  • code climate complexity in ExportProject (8a6bf74)
  • code climate complexity in ImportProject (b9d91ed)
  • code climate complexity in ImportProject (f9ffa2e)
  • code climate complexity in ImportProject (57b1a75)
  • code climate complexity in ImportProject (f13b1d2)
  • cogenetive complexity in ExportProject (88c01f7)
  • cognetive complexity in ExportProject (3cbd3b9)
  • cognetive complexity in ExportProject (f928a85)
  • cognetive complextiy in ExportProject (4362697)
  • cognitive complexity in ExportProject (ef11501)
  • force a refresh after importing a project (c701e26)
  • import project button alignment (81d7031)
  • import project tab crashing when opened (9409901)
  • import/export error message text (897aec8)
  • import/export failing for medium+ projects (7fe11f2)
  • importProject codeclimate complexity (24ccab4)
  • missing request settings for import request (dd580b0)
  • prevent build from failing when slow (e239cbe)
  • reduced length of exportProject method (bed56b5)
  • remove importAgain button (3e85bd1)
  • remove timeout interval from export.methods (cb183ce)
  • replace identical code code with utils (dd5e243)

Features

  • connect export ui to api (cd288d2)
  • connect import UI to API (23271f1)
  • ui for Import and Export of a project (b949f23)

Tests

  • import project and export project Ui tests (b0106e7)
  • verify botfront project import (cc05fbb)

0.16.0-rc.13 (2019-10-09)

Bug Fixes

  • chitchat data not added (1b7aeac)

0.16.0-rc.12 (2019-10-08)

Bug Fixes

  • crash on null intent_evaluation result (0444424)
  • fixed stories crashing after update (760d01e)
  • import of large nlu files (e622a1c)
  • improve branching tab color (ece007d)
  • not complete comment (d665519)
  • quick reply schema also add tests (259bffc)
  • remplace flat() so it is supported by electron (b9ceac3)
  • storyGroup deletion was not available after a unlinking (03e373f)
  • tagging of accentuated characters (24becda)
  • wrong slot properties (66df140)
  • cli: fixed docker-cli-js to 2.5.x (a909ef4)

Features

  • add ellipsis menu in place of story edit (9b6b668)
  • add tests for story group deletion (84c4bc5)
  • check before storygroup deletion (14180be)
  • component for each story group (fb4b75b)
  • storygroup deletion without checks (a450ca3)
  • update tests to support new ellipsis menu (cb3a98f)

Tests

  • removed useless scrolling test (5d92d45)

0.16.0-rc.11 (2019-10-04)

Bug Fixes

  • cli: fixed docker-cli-js to 2.5.x (a909ef4)
  • improve branching tab color (ece007d)
  • not complete comment (d665519)
  • remplace flat() so it is supported by electron (b9ceac3)

Features

  • add ellipsis menu in place of story edit (9b6b668)
  • add tests for story group deletion (84c4bc5)
  • check before storygroup deletion (14180be)
  • component for each story group (fb4b75b)
  • storygroup deletion without checks (a450ca3)
  • update tests to support new ellipsis menu (cb3a98f)

0.16.0-rc.10 (2019-10-03)

Bug Fixes

  • checkpoint creation with linked stories (00a4c23)
  • codeclimate similar code warning (2bf176f)
  • codeclimate warnings (0b067de)
  • connected stories popup trigger behaviour (a295e5a)
  • correction for the test story_exceptionsn3 (0d89fb9)
  • eslint warning (25041f7)
  • move Storylinker code to the StoryFooter (283ff70)
  • naming issues of css class for linking state (919ee35)
  • padding style for connected alert popup (4bf3cef)
  • reduce padding for story group title in popup (93bd8ff)
  • refactor codeclimate similar code (eb0755b)
  • remove import of unexisting file in main.less (6ec58d0)
  • remove possibility to link a story to itself (329b70e)
  • remove usage of important in css (6eb9070)
  • resolve eslint warnings (479c50e)
  • stop delete on branches with linked siblings (0fb6351)
  • stop inherit checkpoints on story duplication (f691fd5)
  • style for destination story popup (176c6f3)
  • test on linking leaf stories (979037f)
  • tests (4543496)
  • use find insead of get to retreive descendent element (929698d)

Features

  • add disabled prop to the stories linker (248bcb2)
  • add fields and methods to create checkpoints (2b37ee4)
  • add methods to removeCheckpoints (67504e6)
  • add tests for story linking (29dded5)
  • comments for addlinkCheckpoints (cca459d)
  • connect checkpoint data to frontend (09501dc)
  • function to add rasa checkpoints to linked stories (d4f129b)
  • handle changing the link to a story (3e466e5)
  • hide linking menu when linking is not possible (530902d)
  • improves comments of the reccursiveSearch use to find a branchId (340379e)
  • linked stories are used in rasa (75360d1)
  • list of stories in the story editor footer (link to) (448a46a)
  • popup for connected stories alert (468191c)
  • popup for story is connected Popup (68e570d)
  • refactor code from StoryFooter to StoryEditorContainer (9a23127)
  • sort stories name in the linking dropdown (2ce56f8)
  • style for connected story top menu (d409fd1)
  • style for ToolTipPopup (e1c9d16)
  • support state change linked or not linked (c5932a5)
  • tests for checkpoint creation of linked stories (bbdc2fb)
  • tooltip popup when a story cannot be deleted (9c9a854)
  • ui use backend to add a link to a story (221e24c)
  • update stories tests as you cannot link to a story itself (232b3c5)
  • warning in story topMenu when connected (ed4883e)

Tests

  • add training test (5af0174)
  • fix dependencies (e963951)
  • story delete buttons disable on linked (0f32b05)

0.16.0-rc.9 (2019-09-26)

Bug Fixes

  • better error message for training (bbf122c)
  • better errors for failed training (92b4b2f)
  • rename storiesLight to stories (0b25ede)
  • templates for stories training (1b16259)

Features

  • default domain: declare default domain in project settings (#224) (5b03ac5)
  • all story of a projet are fetch in the StoryContainer (bf619fa)
  • exclude services when starting (78f73a8)

Tests

  • fixed slot test (0aeed0f)
  • fixed unit tests for story traversal (da50360)

0.16.0-rc.8 (2019-09-23)

Bug Fixes

Tests

  • test that new slots are detected in stories (920ce7e)

0.16.0-rc.7 (2019-09-13)

0.16.0-rc5 (2019-09-13)

0.16.0-rc.4 (2019-09-11)

Bug Fixes

  • add empty branches to new stories (582208a)

0.16.0-rc.3 (2019-09-11)

0.16.0-rc.2 (2019-09-10)

Bug Fixes

  • adjust line height for story group menu items (52185d7)
  • alerts not removed if intro story deleted (3898d83)
  • crash in BranchTabLabel with old DataBases (46d0c12)
  • extra character caused a crash on start (292f498)
  • storyGroupMenu selected items are blue (909dda2)
  • the selected story group is blue (c71a1b5)
  • undefined bot responses preventing training (1658daa)
  • wrong default base_url in credentials (8d3c28a)

Features

  • add icon indicators for story exceptions (26ff2aa)
  • add response context to StotyEditorContainer (c0bdb40)
  • add response context to StotyEditorContainer (08fc2ed)
  • exclude stories with errors from training (bfccd22)
  • links to Spectrum in menu and docs (d093604)

Tests

  • add tests for exceptions in markdown (4982ab9)

0.16.0-rc.1 (2019-09-09)

Bug Fixes

  • adjust testing for new title save action (f017cc7)
  • backwards compatibility for exceptions (d3c8109)
  • bug indexing over string (12d7967)
  • bug on stories without branches in db (06beece)
  • bug when deleting mother branch (2519369)
  • change css so selected story group is blue (e9b2217)
  • change from push to spreadsyntax for path (357f8f0)
  • crash in BranchTabLabel with old DataBases (6aa6e67)
  • crashing in story utils with old DBs (b306a70)
  • exceptionAlerts warnings passed bad prop (66f9071)
  • fix the fix of the fix (5ff8b24)
  • manual rollback re add intent warning msg (2208dc6)
  • new method of verifying default story test (29b6b29)
  • remove console.log and es lint errors (32a0206)
  • remove unnecessary method call (1647b13)
  • standardize story title save + discard events (452595f)
  • stop crash when creating new story group (51391c0)
  • story groups not deleting (6158fc6)
  • typo (9e3798d)
  • typo in docker compose template (8bdde39)
  • wrong default base_url in credentials (#201) (b5835c3)

Features

  • add a popup for story group exception alerts (df29b22)
  • add icon indicators for story exceptions (37cd372)
  • add StoryFooter component and StoryPathPopup (84ad69e)
  • change story popup now shows full path (6991ce8)
  • change wrap StoryFooter in Segment component (6dd4a0a)
  • merge deleted stories (a65068e)
  • branching: "recursive" schema, update update method (9988140)
  • branching: add new branch (68521a8)
  • branching: add story field to mock data (444176c)
  • offline templates: error catching for missing templates (a512d4b)
  • offline templates: full responses are exported with domain (69a5e69)
  • collapsable stories (10dbc7a)
  • open first branches by default (1b37c13)
  • persist branch path across application (33e26b4)
  • branch tab label: es-lint, proptypes minor fix (126a468)
  • branching: confirm deletion (eb96c23)
  • branching: disallow two sibling branches from having same name (bf5c2a7)
  • branching: integrate StoryFooter (5b0566b)
  • add StoryFooter prop that hides continue (243ca5e)
  • style story footer and remove warnings (db700a7)
  • styled story footer and branch+link buttons (07f53d0)
  • branching: domain generation/story compilation (70fcb3a)
  • branching: hotfix for backsupport (86f9af3)
  • branching: integrate tab labels (9c9942d)
  • branching: make room for footer (2eb5e67)
  • branching: refactor, integrate with db (8eb1a71)
  • branching: remove fixture, fix behavior with branch-less branches (4fa3abd)
  • branching: switch active branch on deletion (8e2c551)
  • branching: update extractDomainFromStories (71fc936)
  • add branch tab component for branch menu (97c45d8)
  • add default story group on project insert (2ca4cd7)
  • add warning when NLU can't be trained because of n < 2 intents (b47996a)
  • refactor BranchTabLabel and style (87f8d45)
  • branching: wip (fe0d24d)

Tests

  • add story_title tests for saving discarding (9276d08)
  • add tests for story utils (cdd550e)
  • added test for branches edge cases (0f464b7)
  • branching (ae5b893)
  • collapsable stories (60f7c46)
  • confirm intro story group is not deleted (026b58d)
  • fixed tests (248210c)
  • merging branches (435fec1)
  • move story_controller tests to mocha (55ecb67)
  • new for add 3rd branch and delete branches (dfb0eb5)
  • remove cypress test (a865589)
  • story branches persistence (187b602)
  • story-state-persistence (73fb41d)
  • updated stories text for default story group (d99ddbc)
  • wrap component in environment (6fefe62)

0.15.5 (2019-08-11)

Bug Fixes

  • should redirect to stories after setup (9e1b7c4)

Features

  • easier setup to develop against the docker-compose stack (630171b)
  • faster sidebar transition (051448c)
  • save current story group (41d1f4e)

0.15.4 (2019-07-31)

Bug Fixes

  • missing cloudbuild image update (5185489)
  • set correct initial version in default model (a2dd24c)

Features

  • context-helper: add entities and intent generation function (ffecc52)

Tests

  • add unit test for intent and entity extraction (4b500e1)
  • fixed typos (8025a2e)

0.15.3 (2019-07-26)

Features

  • FloatingIconButton: add color & size props (f0060b2)
  • postinstall script starts botfront right after npm install (7998c31)

0.15.2 (2019-07-25)

Bug Fixes

  • deps: re-add react-syntax-highlighter (3cf562c)
  • utterance-viewer: fix entity recall logic (3beb473)

Features

  • UtteranceInput: add excludedTarget prop to exclude some blur triggers (dff4587)

Tests

0.15.1 (2019-07-19)

Bug Fixes

  • domain generation: no hard coded action in domain (#126) (c205e31)
  • initalPayload: removed bug where other stories were also present for initialPayload (3c85144)
  • uncompatible model version due to rasa-for-bf version (#130) (9eee0fb)
  • utterance-viewer: Fix onChange and onDelete for utteranceviewer (20be977)

Features

  • cli: CLI suggests to update the npm package and to update projects (#112) (2fc3b7c)
  • entity: Add a generic entity component (682edc3)
  • utterance-input: Add utterance input (67e6615)
  • utterance-viewer: Add Intent, Entity, and UtteranceViewer component (d0fadd1)
  • UtteranceInput: add fluid prop (a841be6)
  • scripts to help with release automation (#131) (5559df4)
  • unique slot names (3a179ed)

Tests

0.15.0 (2019-07-09)

Bug Fixes

  • empty-storygroup-name: Story group with empty name is not attempted to save. (00d0e55)
  • commented dangerous db query (8e3d990)
  • fixed error that prevented training (2b81691)
  • wrong title in stories (3135318)

Features

  • intro-stories: Add intro-stories for the front and backend (9b1171e)
  • new-train-button: Add a generic train button (38a82ae)
  • stories: Add intro stories at start of a project (1ae1dd5)
  • train-storyGroup: Only selected stories are trained (2daa6f0)

0.15.0-rc.0 (2019-06-23)

Bug Fixes

  • activity: Fixed language field from models (bd42879)
  • add-language: backspace cannot be used to remove a language (5cbddc3)
  • chat: use environment variable for socket url (5509a86)
  • cli: botfront log displays continous logs (eb2555e)
  • cli: Error when init a new project (69afddc)
  • cli: logs from CLI main menu not working (5d7fcdb)
  • core policy: pr changes (f2d36c5)
  • delete instance: removed the delete instance bug (0b918b2)
  • nlu: evaluation broken due to a missing instance (226f7d2)
  • nlu: Missing import for the Loaded in API tab (93e07a3)
  • nlu: Wrong logger components (62ca16e)
  • nlu: wrong component name (1234902)
  • slots: domain would not generate when no slot (017f0d9)
  • slots: slots validation (6dbdce6)
  • switch languages: minor fixes for switch language feature (0c08815)
  • test-switch-langauge: Test adaptation complete (f933411)
  • tests: Made tests independent of NLUModel (6ade15a)
  • user-email: email address is trimmed before storing (8a30066)
  • adding a story (e1a28d1)
  • core policy test (6ab8411)
  • correct actions base image in project template (e1ff3b1)
  • default actions server port in environment variables (8071a5c)
  • eslint error (b8cfb6f)
  • gathering training data (c18d778)
  • merge related fixes (6f80729)
  • minor fixes project info (eadf2dc)
  • PR (2d7b8c3)
  • PR changes (a0e185a)
  • useless div (16c5ddc)
  • wrong message in Project info (c8df530)

Features

  • cli: A CLI to create and start a project (fdca615)
  • cli: added a debug flag to rasa in the docker-compose file (7a73953)
  • cli: Added project start prompt after project is created (78c2730)
  • cli: contextual start and stop options (faee3d9)
  • cli: Messages variations when checking / pulling (d8fba18)
  • cli: more intuitive commands (1c9363e)
  • cli: Poss. to change Docker image tags (478f9c9)
  • cli: pull only if needed; fixed const reassign (043bddb)
  • cli: too many things (51e536a)
  • data-import: uploaded file is converted to json by rasa endpoint (b2dc297)
  • instances: instance type is now hidden if empty (c526f34)
  • model-creation: Associated new models with default model instance (18a6eb0)
  • nlu: set 'data' as default tab when opening a model (e443530)
  • nlu: Support for NLU parsing with new Rasa API (695351a)
  • Project Info: Language selection (baa1001)
  • project-settings: added default core policy (d01b504)
  • slots: boilerplate (6af17f3)
  • slots: fixed up the UI (29e8b22)
  • slots: slots are added to domain file (ec96b5f)
  • slots: specific forms for specific types (01b54a4)
  • slots: validation for float slot type (223d53f)
  • slots: you can create and edit slots (2895fe9)
  • stories: added tests for story validator (b5b902d)
  • stories: auto sav (2201ae3)
  • stories: definitive ESLint compliance; improved exception handling (e97db4e)
  • stories: delete stories and format errors (625ab62)
  • stories: ESLint compliance; improved exception handling (b0db64a)
  • stories: friendly md messages (9bbddd5)
  • stories: initial commit for StoryValidator class lib (8e3fd42)
  • stories: lazy loading (30a5b0f)
  • stories: popup confirm to delete stories (671690d)
  • stories: story validation - output at most 1 'title' error (84eb5ec)
  • stories: updated test & fixture file to use error codes (9379516)
  • stories: you can now save stories (821cf82)
  • added model_id param to HttpLogger component (61f6287)
  • auto extract triggered actions from policy to domain (f85391c)
  • menu and adding story groups (f855b29)
  • switch-langauges: Added support for legacy models (acad437)
  • simpler consent for product updates (8608c7e)
  • train stories: Training button added to stories (ee22054)
  • train stories: Training button added to stories (35a11df)
  • training: fixed model name (779002d)
  • stories (wip) (896fecb)

Tests

  • training data fix (494ccb3)
  • docker-compose: Added a test to check that the orchestrator is docker-compose (02fbb80)
  • project-instances: added create, edit and delete instance test (3e57a78)
  • project-setting: added test for core policy (b550473)
  • switch language: added test for adding and deleting model (0396ab4)

0.14.5 (2019-05-16)

Bug Fixes

0.14.4 (2019-05-16)

Bug Fixes

Features

  • side chat now supports no language (6f39945)

Tests

  • testing no language in chat (6a71e06)

0.14.3 (2019-05-10)

Bug Fixes

Tests

0.14.2 (2019-05-09)

Bug Fixes

  • object in ace field (b1156a9)
  • bot responses: import fails (38a9d99)
  • removed useles instance property (a8c9d58)

Features

  • better confirmation for publish model (8ecf500)
  • confirmation for model duplication (45e9bb0)
  • pull request template (2c9f554)

Tests

  • duplicate and publish models (bbc863b)

0.14.0 (2019-05-06)

Bug Fixes

Features

  • disabled activity button in Populate (5d60c61)