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

Skip to content

Commit 5f9a418

Browse files
authored
feat: release 0.3.0 (#183)
1 parent 93ba186 commit 5f9a418

File tree

11 files changed

+29
-15
lines changed

11 files changed

+29
-15
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,23 @@ title: Changelog
2323

2424
## Table of Contents
2525

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

30+
## 0.3.0
31+
32+
This release mainly provides the ability to get headers from upstream, and support download the project from Maven Center.
33+
34+
### Change
35+
36+
- rename the name of the function that gets all the headers. [132](https://github.com/apache/apisix-java-plugin-runner/pull/132)
37+
38+
### Core
39+
40+
- support filter upstream response headers. [164](https://github.com/apache/apisix-java-plugin-runner/pull/164)
41+
- support hot reload of plugin filters. [158](https://github.com/apache/apisix-java-plugin-runner/pull/158)
42+
2943
## 0.2.0
3044

3145
This release mainly provides the ability to get variables and request body.

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.3.0-SNAPSHOT
20+
VERSION ?= 0.3.0
2121
RELEASE_SRC = apisix-java-plugin-runner-${VERSION}-src
2222

2323
.PHONY: release-src

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.3.0-SNAPSHOT</version>
25+
<version>0.3.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.3.0-SNAPSHOT</version>
27+
<version>0.3.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.0-SNAPSHOT</version>
39+
<version>0.3.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.3.0-SNAPSHOT</version>
26+
<version>0.3.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.3.0-SNAPSHOT</version>
26+
<version>0.3.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.3.0-SNAPSHOT</version>
26+
<version>0.3.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.0-SNAPSHOT</version>
38+
<version>0.3.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.3.0-SNAPSHOT</version>
27+
<version>0.3.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.3.0-SNAPSHOT</version>
26+
<version>0.3.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.0-SNAPSHOT</version>
38+
<version>0.3.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.3.0-SNAPSHOT</version>
26+
<version>0.3.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.0-SNAPSHOT</version>
38+
<version>0.3.0</version>
3939
</dependency>
4040

4141
<dependency>

0 commit comments

Comments
 (0)