-
#10412: Fix Socket IO connection issues by upgrading sanic to v21.12.
The bug is caused by an invalid function signature and is fixed in v21.12.
This update brings some deprecations in
sanic
:- Sanic and Blueprint may no longer have arbitrary properties attached to them
- Fixed this by moving user defined properties to the
instance.ctx
object
- Fixed this by moving user defined properties to the
- Sanic and Blueprint forced to have compliant names
- Fixed this by using string literal names instead of the module's name via __name__
sanic.exceptions.abort
is Deprecated- Fixed by replacing it with
sanic.exceptions.SanicException
- Fixed by replacing it with
sanic.response.StreamingHTTPResponse
is deprecated- Fixed by replacing it with sanic.response.ResponseStream
- Sanic and Blueprint may no longer have arbitrary properties attached to them
-
#10447: Update
rasa data validate
to not fail whenactive_loop
isnull
Improved Documentation
- #10798: Updated the
model_confidence
parameter inTEDPolicy
andDIETClassifier
. Thelinear_norm
is removed
as it is no longer supported. - #10940: Added an additional step to
Receiving Messages
section in slack.mdx documentation. After a slack update this
additional step is needed to allow direct messages to the bot. - #10957: Backport the updated deployment docs to 3.0.x.