File tree Expand file tree Collapse file tree 13 files changed +36
-20
lines changed Expand file tree Collapse file tree 13 files changed +36
-20
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,25 @@ title: Changelog
23
23
24
24
## Table of Contents
25
25
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 )
30
45
31
46
## 0.4.0
32
47
Original file line number Diff line number Diff line change 17
17
18
18
SHELL := /bin/bash -o pipefail
19
19
20
- VERSION ?= 0.4 .0
20
+ VERSION ?= 0.5 .0
21
21
RELEASE_SRC = apisix-java-plugin-runner-${VERSION}-src
22
22
23
23
.PHONY : release-src
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ Version Matrix
31
31
| 0.2.0 | >= [ 2.12.0] ( https://github.com/apache/apisix/blob/master/CHANGELOG.md#2102 ) |
32
32
| 0.3.0 | >= [ 2.15.0] ( https://github.com/apache/apisix/blob/master/CHANGELOG.md#2150 ) |
33
33
| 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 ) |
34
35
35
36
How it Works
36
37
-------------
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ Install
48
48
<dependency >
49
49
<groupId >org.apache.apisix</groupId >
50
50
<artifactId >apisix-runner-starter</artifactId >
51
- <version >0.4 .0</version >
51
+ <version >0.5 .0</version >
52
52
</dependency >
53
53
```
54
54
Original file line number Diff line number Diff line change 22
22
23
23
<groupId >org.apache.apisix</groupId >
24
24
<artifactId >apisix-plugin-runner</artifactId >
25
- <version >0.4 .0</version >
25
+ <version >0.5 .0</version >
26
26
27
27
<parent >
28
28
<groupId >org.apache</groupId >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<groupId >org.apache.apisix</groupId >
26
26
<artifactId >apisix-plugin-runner</artifactId >
27
- <version >0.4 .0</version >
27
+ <version >0.5 .0</version >
28
28
</parent >
29
29
30
30
<artifactId >apisix-runner-core</artifactId >
36
36
<dependency >
37
37
<groupId >org.apache.apisix</groupId >
38
38
<artifactId >apisix-runner-plugin-sdk</artifactId >
39
- <version >0.4 .0</version >
39
+ <version >0.5 .0</version >
40
40
</dependency >
41
41
<dependency >
42
42
<groupId >org.springframework.boot</groupId >
Original file line number Diff line number Diff line change 23
23
<parent >
24
24
<groupId >org.apache.apisix</groupId >
25
25
<artifactId >apisix-runner-dist</artifactId >
26
- <version >0.4 .0</version >
26
+ <version >0.5 .0</version >
27
27
</parent >
28
28
29
29
<artifactId >apisix-runner-bin-dist</artifactId >
Original file line number Diff line number Diff line change 23
23
<parent >
24
24
<groupId >org.apache.apisix</groupId >
25
25
<artifactId >apisix-runner-dist</artifactId >
26
- <version >0.4 .0</version >
26
+ <version >0.5 .0</version >
27
27
</parent >
28
28
29
29
<artifactId >apisix-runner-src-dist</artifactId >
Original file line number Diff line number Diff line change 23
23
<parent >
24
24
<groupId >org.apache.apisix</groupId >
25
25
<artifactId >apisix-plugin-runner</artifactId >
26
- <version >0.4 .0</version >
26
+ <version >0.5 .0</version >
27
27
</parent >
28
28
29
29
<artifactId >apisix-runner-dist</artifactId >
35
35
<dependency >
36
36
<groupId >org.apache.apisix</groupId >
37
37
<artifactId >apisix-runner-starter</artifactId >
38
- <version >0.4 .0</version >
38
+ <version >0.5 .0</version >
39
39
</dependency >
40
40
</dependencies >
41
41
<modules >
Original file line number Diff line number Diff line change 24
24
<parent >
25
25
<groupId >org.apache.apisix</groupId >
26
26
<artifactId >apisix-plugin-runner</artifactId >
27
- <version >0.4 .0</version >
27
+ <version >0.5 .0</version >
28
28
</parent >
29
29
30
30
<artifactId >apisix-runner-plugin-sdk</artifactId >
You can’t perform that action at this time.
0 commit comments