Skip to content

Commit fc7512a

Browse files
authored
feat: release 0.5.0 (#299)
1 parent 8afa49e commit fc7512a

File tree

13 files changed

+36
-20
lines changed

13 files changed

+36
-20
lines changed

CHANGELOG.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,25 @@ title: Changelog
2323

2424
## Table of Contents
2525

26-
- [0.4.0](#040)
27-
- [0.3.0](#030)
28-
- [0.2.0](#020)
29-
- [0.1.0](#010)
26+
- [0.5.0](#032)
27+
- [0.4.0](#046)
28+
- [0.3.0](#055)
29+
- [0.2.0](#068)
30+
- [0.1.0](#096)
31+
32+
## 0.5.0
33+
34+
This release mainly improves log4j configuration and CI, provides other encoding support and bug fixes.
35+
36+
### Core
37+
38+
- add log4j2 configuration. [214](https://github.com/apache/apisix-java-plugin-runner/pull/214)
39+
- `PostResponse` supports charset other than `UTF-8`. [239](https://github.com/apache/apisix-java-plugin-runner/pull/239)
40+
- update CI runs on ubuntu-latest. [242](https://github.com/apache/apisix-java-plugin-runner/pull/242)
41+
42+
### Bugfix
43+
44+
- fix `ExtraInfoResponse` class `getResult` method bug. [244](https://github.com/apache/apisix-java-plugin-runner/pull/244)
3045

3146
## 0.4.0
3247

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
SHELL := /bin/bash -o pipefail
1919

20-
VERSION ?= 0.4.0
20+
VERSION ?= 0.5.0
2121
RELEASE_SRC = apisix-java-plugin-runner-${VERSION}-src
2222

2323
.PHONY: release-src

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Version Matrix
3131
| 0.2.0 | >= [2.12.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#2102) |
3232
| 0.3.0 | >= [2.15.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#2150) |
3333
| 0.4.0 | >= [3.0.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#300) |
34+
| 0.5.0 | >= [3.0.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#300) |
3435

3536
How it Works
3637
-------------

docs/en/latest/installation-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Install
4848
<dependency>
4949
<groupId>org.apache.apisix</groupId>
5050
<artifactId>apisix-runner-starter</artifactId>
51-
<version>0.4.0</version>
51+
<version>0.5.0</version>
5252
</dependency>
5353
```
5454

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<groupId>org.apache.apisix</groupId>
2424
<artifactId>apisix-plugin-runner</artifactId>
25-
<version>0.4.0</version>
25+
<version>0.5.0</version>
2626

2727
<parent>
2828
<groupId>org.apache</groupId>

runner-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.apisix</groupId>
2626
<artifactId>apisix-plugin-runner</artifactId>
27-
<version>0.4.0</version>
27+
<version>0.5.0</version>
2828
</parent>
2929

3030
<artifactId>apisix-runner-core</artifactId>
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>org.apache.apisix</groupId>
3838
<artifactId>apisix-runner-plugin-sdk</artifactId>
39-
<version>0.4.0</version>
39+
<version>0.5.0</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.springframework.boot</groupId>

runner-dist/apisix-runner-bin-dist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.apisix</groupId>
2525
<artifactId>apisix-runner-dist</artifactId>
26-
<version>0.4.0</version>
26+
<version>0.5.0</version>
2727
</parent>
2828

2929
<artifactId>apisix-runner-bin-dist</artifactId>

runner-dist/apisix-runner-src-dist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.apisix</groupId>
2525
<artifactId>apisix-runner-dist</artifactId>
26-
<version>0.4.0</version>
26+
<version>0.5.0</version>
2727
</parent>
2828

2929
<artifactId>apisix-runner-src-dist</artifactId>

runner-dist/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.apisix</groupId>
2525
<artifactId>apisix-plugin-runner</artifactId>
26-
<version>0.4.0</version>
26+
<version>0.5.0</version>
2727
</parent>
2828

2929
<artifactId>apisix-runner-dist</artifactId>
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>org.apache.apisix</groupId>
3737
<artifactId>apisix-runner-starter</artifactId>
38-
<version>0.4.0</version>
38+
<version>0.5.0</version>
3939
</dependency>
4040
</dependencies>
4141
<modules>

runner-plugin-sdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.apisix</groupId>
2626
<artifactId>apisix-plugin-runner</artifactId>
27-
<version>0.4.0</version>
27+
<version>0.5.0</version>
2828
</parent>
2929

3030
<artifactId>apisix-runner-plugin-sdk</artifactId>

0 commit comments

Comments
 (0)