File tree 4 files changed +19
-3
lines changed
4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ title: Changelog
24
24
## Table of Contents
25
25
26
26
- [ 0.1.0] ( #010 )
27
+ - [ 0.2.0] ( #020 )
27
28
28
29
## 0.1.0
29
30
@@ -37,3 +38,18 @@ This release mainly provides basic features and adds test cases.
37
38
- supported custom ` stop ` and ` rewrite ` plugin development.
38
39
39
40
[ 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
24
24
from apisix .runner .server .config import Config as RunnerConfig
25
25
from apisix .runner .plugin .core import PluginProcess as RunnerPlugin
26
26
27
- RUNNER_VERSION = "0.1 .0"
27
+ RUNNER_VERSION = "0.2 .0"
28
28
29
29
30
30
@click .group ()
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : 0.1 ,
2
+ "version" : 0.2 ,
3
3
"sidebar" : [
4
4
{
5
5
"type" : " doc" ,
Original file line number Diff line number Diff line change 17
17
18
18
from setuptools import setup , find_packages
19
19
20
- __version__ = "0.1 .0"
20
+ __version__ = "0.2 .0"
21
21
22
22
requirements = open ('requirements.txt' ).readlines ()
23
23
You can’t perform that action at this time.
0 commit comments