Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Release Notes
⚠ Important Change Notice
In this release, the channel web was converted to use the new messaging server. This shouldn't cause any noticeable change in useability, but it does bring a large migration that converts all the messages and conversations stored in the channel-web's
web_conversationsandweb_messagestables to tables managed by the messaging server. It also migrates any references to these conversations and messages that exist in other tables. As such, it should not incur any loss of data, and previously existing conversations will still be accesible to users, as well as previously existing HITL handoffs.Since this migration is so large and impacts so many tables, it has been designed to work using a transaction, meaning that if anything goes wrong during the migration, all changes will be rollbacked automatically to prevent loss of data. You can also run this migration in dry mode using the
--drycommand line option. This will run the entire migration without applying the changes and will display the number of conversations and messages that will be migrated.It's possible that some messages and some conversations get deleted due to new constraints required by the messaging server. For example a message pointing to a deleted or null conversation will be deleted, and a conversation pointing to a null botId will also be removed.
Payloads are now sent to the channel-web in the same format as they are stored in the content element files. This means that some usage of the sdk that relied on channel-web specific format of payloads to create events is now invalid. For example :
Should be replaced with :
I you we using the renderElement method already then everything should still work
This change only affects builtin content types. Custom content types still use the backend renderers defined in
renderElementfunction.Bug Fixes
Features
NLU
0.1.4 ==> 0.1.5 see changes here
Studio
0.0.33 ==> 0.0.34 see changes here
Messaging
0.1.8 ==> 0.1.12 see changes here