From 249f3bc33fceee57822f7d58a40d6769f25956a5 Mon Sep 17 00:00:00 2001 From: Kwok-kuen Cheung Date: Tue, 23 May 2017 14:53:49 +0800 Subject: [PATCH] Update CHANGELOG for v0.24.0 --- CHANGELOG.md | 16 ++++++++++++++++ setup.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df16abe..3afceec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +### Features + +- Make plugin transport ZMQ multiplex (SkygearIO/skygear-server#295) + + This feature will enable the bidirectional plugin transport and multiplexing. + + Calling `send_action` within the plugin will route back to the same worker + from now on. It is implicit, developer does not need to specific worker reuse + or not. + This merge also add dynamic threading at ZMQTransport. + It solved the problem of workers exhaust problem. + +### Bug Fixes + +- Fix unable to set envvar to `false` (#137) + ## 0.23.0 (2017-04-20) ### Features diff --git a/setup.py b/setup.py index 607ff0c..18e39de 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def run_tests(self): setup( name='skygear', - version='0.23.0', + version='0.24.0', packages=find_packages(), description='Python plugin runtime for Skygear', long_description=open(README).read(),