Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
23 changes: 19 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------------
Expand Down
2 changes: 1 addition & 1 deletion docs/en/latest/installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions runner-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion runner-dist/apisix-runner-bin-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion runner-dist/apisix-runner-src-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions runner-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion runner-plugin-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions runner-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions runner-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down