This is an automated email from the ASF dual-hosted git repository. monkeydluffy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/apisix-java-plugin-runner.git
The following commit(s) were added to refs/heads/main by this push: new fc7512a feat: release 0.5.0 (#299) fc7512a is described below commit fc7512ac66e27e169701c020a31d102329d26915 Author: Junyeong Jang <joy...@users.noreply.github.com> AuthorDate: Fri Jan 19 15:52:21 2024 +0900 feat: release 0.5.0 (#299) --- CHANGELOG.md | 23 +++++++++++++++++++---- Makefile | 2 +- README.md | 1 + docs/en/latest/installation-guide.md | 2 +- pom.xml | 2 +- runner-core/pom.xml | 4 ++-- runner-dist/apisix-runner-bin-dist/pom.xml | 2 +- runner-dist/apisix-runner-src-dist/pom.xml | 2 +- runner-dist/pom.xml | 4 ++-- runner-plugin-sdk/pom.xml | 2 +- runner-plugin/pom.xml | 4 ++-- runner-starter/pom.xml | 4 ++-- sample/pom.xml | 4 ++-- 13 files changed, 36 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2215b8..5b29e0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,10 +23,25 @@ title: Changelog ## Table of Contents -- [0.4.0](#040) -- [0.3.0](#030) -- [0.2.0](#020) -- [0.1.0](#010) +- [0.5.0](#032) +- [0.4.0](#046) +- [0.3.0](#055) +- [0.2.0](#068) +- [0.1.0](#096) + +## 0.5.0 + +This release mainly improves log4j configuration and CI, provides other encoding support and bug fixes. + +### Core + +- add log4j2 configuration. [214](https://github.com/apache/apisix-java-plugin-runner/pull/214) +- `PostResponse` supports charset other than `UTF-8`. [239](https://github.com/apache/apisix-java-plugin-runner/pull/239) +- update CI runs on ubuntu-latest. [242](https://github.com/apache/apisix-java-plugin-runner/pull/242) + +### Bugfix + +- fix `ExtraInfoResponse` class `getResult` method bug. [244](https://github.com/apache/apisix-java-plugin-runner/pull/244) ## 0.4.0 diff --git a/Makefile b/Makefile index 50b6c5a..8542faa 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ SHELL := /bin/bash -o pipefail -VERSION ?= 0.4.0 +VERSION ?= 0.5.0 RELEASE_SRC = apisix-java-plugin-runner-${VERSION}-src .PHONY: release-src diff --git a/README.md b/README.md index e96e2d6..9e687fb 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ Version Matrix | 0.2.0 | >= [2.12.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#2102) | | 0.3.0 | >= [2.15.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#2150) | | 0.4.0 | >= [3.0.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#300) | +| 0.5.0 | >= [3.0.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#300) | How it Works ------------- diff --git a/docs/en/latest/installation-guide.md b/docs/en/latest/installation-guide.md index 833afdd..1d65605 100644 --- a/docs/en/latest/installation-guide.md +++ b/docs/en/latest/installation-guide.md @@ -48,7 +48,7 @@ Install <dependency> <groupId>org.apache.apisix</groupId> <artifactId>apisix-runner-starter</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </dependency> ``` diff --git a/pom.xml b/pom.xml index c7a652d..e3e7a47 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ <groupId>org.apache.apisix</groupId> <artifactId>apisix-plugin-runner</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> <parent> <groupId>org.apache</groupId> diff --git a/runner-core/pom.xml b/runner-core/pom.xml index 2a50d77..81e0dc0 100644 --- a/runner-core/pom.xml +++ b/runner-core/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.apisix</groupId> <artifactId>apisix-plugin-runner</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </parent> <artifactId>apisix-runner-core</artifactId> @@ -36,7 +36,7 @@ <dependency> <groupId>org.apache.apisix</groupId> <artifactId>apisix-runner-plugin-sdk</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> diff --git a/runner-dist/apisix-runner-bin-dist/pom.xml b/runner-dist/apisix-runner-bin-dist/pom.xml index d393063..6cc2e34 100644 --- a/runner-dist/apisix-runner-bin-dist/pom.xml +++ b/runner-dist/apisix-runner-bin-dist/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.apisix</groupId> <artifactId>apisix-runner-dist</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </parent> <artifactId>apisix-runner-bin-dist</artifactId> diff --git a/runner-dist/apisix-runner-src-dist/pom.xml b/runner-dist/apisix-runner-src-dist/pom.xml index 212d9ce..cf53548 100644 --- a/runner-dist/apisix-runner-src-dist/pom.xml +++ b/runner-dist/apisix-runner-src-dist/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.apisix</groupId> <artifactId>apisix-runner-dist</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </parent> <artifactId>apisix-runner-src-dist</artifactId> diff --git a/runner-dist/pom.xml b/runner-dist/pom.xml index 1aa63b1..40acab4 100644 --- a/runner-dist/pom.xml +++ b/runner-dist/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.apisix</groupId> <artifactId>apisix-plugin-runner</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </parent> <artifactId>apisix-runner-dist</artifactId> @@ -35,7 +35,7 @@ <dependency> <groupId>org.apache.apisix</groupId> <artifactId>apisix-runner-starter</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </dependency> </dependencies> <modules> diff --git a/runner-plugin-sdk/pom.xml b/runner-plugin-sdk/pom.xml index c48418d..2ba9f77 100644 --- a/runner-plugin-sdk/pom.xml +++ b/runner-plugin-sdk/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.apisix</groupId> <artifactId>apisix-plugin-runner</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </parent> <artifactId>apisix-runner-plugin-sdk</artifactId> diff --git a/runner-plugin/pom.xml b/runner-plugin/pom.xml index f2e2acb..cabee96 100644 --- a/runner-plugin/pom.xml +++ b/runner-plugin/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.apisix</groupId> <artifactId>apisix-plugin-runner</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </parent> <artifactId>apisix-runner-plugin</artifactId> @@ -35,7 +35,7 @@ <dependency> <groupId>org.apache.apisix</groupId> <artifactId>apisix-runner-plugin-sdk</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> diff --git a/runner-starter/pom.xml b/runner-starter/pom.xml index 2351c3e..d6bda08 100644 --- a/runner-starter/pom.xml +++ b/runner-starter/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.apisix</groupId> <artifactId>apisix-plugin-runner</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </parent> <artifactId>apisix-runner-starter</artifactId> @@ -35,7 +35,7 @@ <dependency> <groupId>org.apache.apisix</groupId> <artifactId>apisix-runner-core</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </dependency> <dependency> diff --git a/sample/pom.xml b/sample/pom.xml index b61e2e3..7489b74 100644 --- a/sample/pom.xml +++ b/sample/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.apisix</groupId> <artifactId>apisix-plugin-runner</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </parent> <artifactId>apisix-runner-sample</artifactId> @@ -35,7 +35,7 @@ <dependency> <groupId>org.apache.apisix</groupId> <artifactId>apisix-runner-plugin-sdk</artifactId> - <version>0.4.0</version> + <version>0.5.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId>