Skip to content

Releases: botpress/botpress

v12.30.9

22 Jun 19:23
3516ba2
Compare
Choose a tag to compare

12.30.9 (2023-06-22)

Bug Fixes

Features

Studio

0.0.67 (2023-06-22)

v12.30.8

24 Apr 15:59
aae1fac
Compare
Choose a tag to compare

12.30.8 (2023-04-24)

Bug Fixes

Features

Studio

0.0.66 (2023-04-05)

Bug Fixes

  • studio: allow context menu on non default language (#410) (651c1af)

Features

Messaging

1.2.10 (2023-04-19)

Features

v12.30.7

16 Feb 22:54
c656540
Compare
Choose a tag to compare

12.30.7 (2023-02-16)

Bug Fixes

v12.30.6

06 Dec 21:58
de08aee
Compare
Choose a tag to compare

12.30.6 (2022-12-06)

Bug Fixes

Features

Studio

0.0.65 (2022-11-30)

Bug Fixes

  • studio: skillbar hidden on non default lang (#407) (6431901)

0.0.64 (2022-11-24)

Features

  • studio: multilingual captions for skill transitions (#405) (3b50dc2)

v12.30.5

02 Nov 20:05
a1f57e8
Compare
Choose a tag to compare

12.30.5 (2022-11-02)

Bug Fixes

v12.30.4

26 Oct 23:45
37d8f5f
Compare
Choose a tag to compare

12.30.4 (2022-10-26)

Bug Fixes

Studio

0.0.63 (2022-10-24)

Bug Fixes

  • studio: studio crash on undefined content item (#399) (1f29187)
  • ui: prevent long content type to overflow (#400) (e484773)
  • properly set content type form step (#401) (f713de1)
  • studio: click on placeholder will focus on input field (#398) (d10d7e5)
  • studio: studio crash on undefined content item (#397) (d39bae8)

Features

  • double click on draggable item to edit (#402) (f6619f1)

v12.30.3

20 Oct 03:05
7ffac84
Compare
Choose a tag to compare

12.30.3 (2022-10-20)

Bug Fixes

Studio

0.0.62 (2022-10-05)

Bug Fixes

  • studio: fix NLU utterances placholder on chrome (#393) (51e003c)

Features

  • flow-editor: Drag n Drop to reorder node element items (#392) (d4f9cf0)

Messaging

1.2.7 (2022-10-19)

Bug Fixes

  • webchat: remove start conversion button (#541) (9d5b5e5)

Features

  • server: added prometheus metrics to messaging server (#546) (bf7fd94)
  • telegram: allow receiving file/audio/video/image (#543) (ba628dd)

1.2.6 (2022-09-23)

Bug Fixes

  • components: fix dropdown not disappearing after selection (#507) (d3558f6)
  • components: focus composer when single choice btn is clicked (#525) (f467a13)

Features

  • messenger: allow receiving file content elements (#480) (cfab6a1)
  • webchat: added bot info page to webchat (#537) (bff1b2f)
  • webchat: allow to react on message click (#521) (ace6d45)
  • webchat: allow users to subscribe to different webchat events (#522) (d41eb38), closes #523
  • webchat: create conversation from iframe api (#524) (39bc15e)

v12.30.2

15 Sep 00:47
b02f0e6
Compare
Choose a tag to compare

12.30.2 (2022-09-15)

Bug Fixes

Nlu

1.0.2 (2022-09-09)

Bug Fixes

v12.30.1

01 Sep 15:08
cb671ad
Compare
Choose a tag to compare

12.30.1 (2022-09-01)

Bug Fixes

v12.30.0

30 Aug 15:56
4b82f6c
Compare
Choose a tag to compare

12.30.0 (2022-08-29)

⚠ Important Change Notice

Please note that this release contains a security improvement for the Docker image. We went from running as the root user to a non-root botpress user by default. For more details about the Dockerfile USER instruction, please refer to this documentation: https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#user.

Those changes will most likely not impact existing users but might require some to execute manual changes before being able to use the new image.

Only those who use or count on using local bind mounts for the /data folder will need to follow these steps:

  1. On the host machine, create a botpress user with UID=999 and GID=999.
    • E.g. on ubuntu the commands would look like: groupadd -g 999 botpress && useradd -m -r -u 999 -g botpress botpress
  2. Change the ownership of the local /data folder to the newly created user.
    • E.g.: chown -R botpress:botpress <path to /data>
  3. Now you can start the docker image using the botpress account and use the host mount with all the security improvements.

Or those that extend the botpress/server image:

FROM botpress/server:v12_30_0
# Changes the user to root so you can run privileged commands.
+USER root
# Code that requires superuser privilege
# ...
# Switch back to the botpress user to keep the security improvement.
+USER botpress

Bug Fixes

  • channel-web: dropdown should disable composer (#12102) (4c9924b)
  • dockerfile: revert workaround and use proper solution (#12103) (3d2bf51)
  • docker: fix passing env vars to running shell (#12051) (9e8f3a1)
  • google-speech: error when detecting SSML (#12070) (c08a86e)
  • security: only Super Admins can reboot the server (#12100) (39e2e0f)

Features

Studio

0.0.61 (2022-08-25)

Features

  • studio: allow third party content types to preview images (#390) (d119641)

0.0.60 (2022-08-22)

Bug Fixes

0.0.59 (2022-08-18)

Bug Fixes

  • studio: fix img renderer for node preview (#385) (3f928c3)

0.0.58 (2022-08-18)

Bug Fixes

Features

  • studio: preview content elements from skills (#382) (88121c3)