File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ title: Changelog
2424## Table of Contents
2525
2626- [ 0.1.0] ( #010 )
27+ - [ 0.2.0] ( #020 )
2728
2829## 0.1.0
2930
@@ -37,3 +38,18 @@ This release mainly provides basic features and adds test cases.
3738- supported custom ` stop ` and ` rewrite ` plugin development.
3839
3940[ Back to TOC] ( #table-of-contents )
41+
42+ ## 0.2.0
43+
44+ This release mainly refactors the operation objects of request/response and the way of automatic loading of plugins for
45+ more efficient plugin development.
46+
47+ ### Core
48+
49+ - ` Request ` and ` Response ` operation object refactoring.
50+ - Plugin ` auto registr ` and ` auto loading ` refactoring.
51+ - Supports getting the ` request body ` and ` Nginx built-in variables ` in the plugin.
52+ - Specification and unifies the input and output of RPC requests.
53+ - Inheritance interface for specification plugins.
54+
55+ [ Back to TOC] ( #table-of-contents )
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ from apisix.runner.server.server import Server as RunnerServer
2424from apisix .runner .server .config import Config as RunnerConfig
2525from apisix .runner .plugin .core import PluginProcess as RunnerPlugin
2626
27- RUNNER_VERSION = "0.1 .0"
27+ RUNNER_VERSION = "0.2 .0"
2828
2929
3030@click .group ()
Original file line number Diff line number Diff line change 11{
2- "version" : 0.1 ,
2+ "version" : 0.2 ,
33 "sidebar" : [
44 {
55 "type" : " doc" ,
Original file line number Diff line number Diff line change 1717
1818from setuptools import setup , find_packages
1919
20- __version__ = "0.1 .0"
20+ __version__ = "0.2 .0"
2121
2222requirements = open ('requirements.txt' ).readlines ()
2323
You can’t perform that action at this time.
0 commit comments