Skip to content

feat: release 0.2.0 #46

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ title: Changelog
## Table of Contents

- [0.1.0](#010)
- [0.2.0](#020)

## 0.1.0

Expand All @@ -37,3 +38,18 @@ This release mainly provides basic features and adds test cases.
- supported custom `stop` and `rewrite` plugin development.

[Back to TOC](#table-of-contents)

## 0.2.0

This release mainly refactors the operation objects of request/response and the way of automatic loading of plugins for
more efficient plugin development.

### Core

- `Request` and `Response` operation object refactoring.
- Plugin `auto registr` and `auto loading` refactoring.
- Supports getting the `request body` and `Nginx built-in variables` in the plugin.
- Specification and unifies the input and output of RPC requests.
- Inheritance interface for specification plugins.

[Back to TOC](#table-of-contents)
2 changes: 1 addition & 1 deletion bin/py-runner
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ from apisix.runner.server.server import Server as RunnerServer
from apisix.runner.server.config import Config as RunnerConfig
from apisix.runner.plugin.core import PluginProcess as RunnerPlugin

RUNNER_VERSION = "0.1.0"
RUNNER_VERSION = "0.2.0"


@click.group()
Expand Down
2 changes: 1 addition & 1 deletion docs/en/latest/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": 0.1,
"version": 0.2,
"sidebar": [
{
"type": "doc",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from setuptools import setup, find_packages

__version__ = "0.1.0"
__version__ = "0.2.0"

requirements = open('requirements.txt').readlines()

Expand Down