Skip to content

Commit 2c53299

Browse files
authored
feat: release 0.4.0 (#212)
1 parent 902defc commit 2c53299

File tree

13 files changed

+27
-16
lines changed

13 files changed

+27
-16
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,20 @@ title: Changelog
2323

2424
## Table of Contents
2525

26+
- [0.4.0](#040)
2627
- [0.3.0](#030)
2728
- [0.2.0](#020)
2829
- [0.1.0](#010)
2930

31+
## 0.4.0
32+
33+
This release mainly provides the ability to get body data from upstream.
34+
35+
### Core
36+
37+
- support for getting upstream response body. [200](https://github.com/apache/apisix-java-plugin-runner/pull/200)
38+
- support watching config changes. [205](https://github.com/apache/apisix-java-plugin-runner/pull/208)
39+
3040
## 0.3.0
3141

3242
This release mainly provides the ability to get headers from upstream, and support download the project from Maven Center.

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

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

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

2323
.PHONY: release-src

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Version Matrix
3030
| 0.1.0 | >= [2.7.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#270) |
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) |
33+
| 0.4.0 | >= [3.0.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#300) |
3334

3435
How it Works
3536
-------------

docs/en/latest/installation-guide.md

+1-1
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.3.1-SNAPSHOT</version>
51+
<version>0.4.0</version>
5252
</dependency>
5353
```
5454

pom.xml

+1-1
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.3.1-SNAPSHOT</version>
25+
<version>0.4.0</version>
2626

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

runner-core/pom.xml

+2-2
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.3.1-SNAPSHOT</version>
27+
<version>0.4.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.3.1-SNAPSHOT</version>
39+
<version>0.4.0</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.springframework.boot</groupId>

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

+1-1
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.3.1-SNAPSHOT</version>
26+
<version>0.4.0</version>
2727
</parent>
2828

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

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

+1-1
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.3.1-SNAPSHOT</version>
26+
<version>0.4.0</version>
2727
</parent>
2828

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

runner-dist/pom.xml

+2-2
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.3.1-SNAPSHOT</version>
26+
<version>0.4.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.3.1-SNAPSHOT</version>
38+
<version>0.4.0</version>
3939
</dependency>
4040
</dependencies>
4141
<modules>

runner-plugin-sdk/pom.xml

+1-1
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.3.1-SNAPSHOT</version>
27+
<version>0.4.0</version>
2828
</parent>
2929

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

runner-plugin/pom.xml

+2-2
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.3.1-SNAPSHOT</version>
26+
<version>0.4.0</version>
2727
</parent>
2828

2929
<artifactId>apisix-runner-plugin</artifactId>
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>org.apache.apisix</groupId>
3737
<artifactId>apisix-runner-plugin-sdk</artifactId>
38-
<version>0.3.1-SNAPSHOT</version>
38+
<version>0.4.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>com.google.code.gson</groupId>

runner-starter/pom.xml

+2-2
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.3.1-SNAPSHOT</version>
26+
<version>0.4.0</version>
2727
</parent>
2828

2929
<artifactId>apisix-runner-starter</artifactId>
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>org.apache.apisix</groupId>
3737
<artifactId>apisix-runner-core</artifactId>
38-
<version>0.3.1-SNAPSHOT</version>
38+
<version>0.4.0</version>
3939
</dependency>
4040

4141
<dependency>

sample/pom.xml

+2-2
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.3.1-SNAPSHOT</version>
26+
<version>0.4.0</version>
2727
</parent>
2828

2929
<artifactId>apisix-runner-sample</artifactId>
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>org.apache.apisix</groupId>
3737
<artifactId>apisix-runner-plugin-sdk</artifactId>
38-
<version>0.3.1-SNAPSHOT</version>
38+
<version>0.4.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>com.google.code.gson</groupId>

0 commit comments

Comments
 (0)