Skip to content

Commit 7368f07

Browse files
authored
release: 0.6.0 (#322)
Signed-off-by: Nic <[email protected]>
1 parent b8836d3 commit 7368f07

File tree

13 files changed

+40
-24
lines changed

13 files changed

+40
-24
lines changed

CHANGELOG.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,26 @@ title: Changelog
2323

2424
## Table of Contents
2525

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)
26+
- [0.6.0](#060)
27+
- [0.5.0](#050)
28+
- [0.4.0](#040)
29+
- [0.3.0](#030)
30+
- [0.2.0](#020)
31+
- [0.1.0](#010)
32+
33+
## 0.6.0
34+
35+
This release mainly allows async plugins and upgrades dependencies & adopts Java 21, and fix some bugs.
36+
37+
### Core
38+
39+
- Allow async plugins. [313](https://github.com/apache/apisix-java-plugin-runner/pull/313)
40+
- Upgrade dependencies & adopt Java 21. [315](https://github.com/apache/apisix-java-plugin-runner/pull/315)
41+
42+
### Bugfix
43+
44+
- Update development doc link in installation-guide.md. [304](https://github.com/apache/apisix-java-plugin-runner/pull/304)
45+
- Restrict socket permissions and manage ACLs if needed. [318](https://github.com/apache/apisix-java-plugin-runner/pull/318)
3146

3247
## 0.5.0
3348

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.5.0
20+
VERSION ?= 0.6.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
@@ -32,6 +32,7 @@ Version Matrix
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) |
3434
| 0.5.0 | >= [3.0.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#300) |
35+
| 0.6.0 | >= [3.0.0](https://github.com/apache/apisix/blob/master/CHANGELOG.md#300) |
3536

3637
How it Works
3738
-------------

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.5.0</version>
51+
<version>0.6.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.5.0</version>
25+
<version>0.6.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.5.0</version>
27+
<version>0.6.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.5.0</version>
39+
<version>0.6.0</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.springframework.boot</groupId>

runner-dist/apisix-runner-bin-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-runner-dist</artifactId>
26-
<version>0.5.0</version>
26+
<version>0.6.0</version>
2727
</parent>
2828

2929
<artifactId>apisix-runner-bin-dist</artifactId>
@@ -74,4 +74,4 @@
7474
</plugin>
7575
</plugins>
7676
</build>
77-
</project>
77+
</project>

runner-dist/apisix-runner-src-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-runner-dist</artifactId>
26-
<version>0.5.0</version>
26+
<version>0.6.0</version>
2727
</parent>
2828

2929
<artifactId>apisix-runner-src-dist</artifactId>
@@ -73,4 +73,4 @@
7373
</plugin>
7474
</plugins>
7575
</build>
76-
</project>
76+
</project>

runner-dist/pom.xml

Lines changed: 3 additions & 3 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.5.0</version>
26+
<version>0.6.0</version>
2727
</parent>
2828

2929
<artifactId>apisix-runner-dist</artifactId>
@@ -35,11 +35,11 @@
3535
<dependency>
3636
<groupId>org.apache.apisix</groupId>
3737
<artifactId>apisix-runner-starter</artifactId>
38-
<version>0.5.0</version>
38+
<version>0.6.0</version>
3939
</dependency>
4040
</dependencies>
4141
<modules>
4242
<module>apisix-runner-bin-dist</module>
4343
<module>apisix-runner-src-dist</module>
4444
</modules>
45-
</project>
45+
</project>

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.5.0</version>
27+
<version>0.6.0</version>
2828
</parent>
2929

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

runner-plugin/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.5.0</version>
26+
<version>0.6.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.5.0</version>
38+
<version>0.6.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>com.google.code.gson</groupId>

runner-starter/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.5.0</version>
26+
<version>0.6.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.5.0</version>
38+
<version>0.6.0</version>
3939
</dependency>
4040

4141
<dependency>

sample/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.5.0</version>
26+
<version>0.6.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.5.0</version>
38+
<version>0.6.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>com.google.code.gson</groupId>

0 commit comments

Comments
 (0)