This is an automated email from the ASF dual-hosted git repository.
tokers pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new ff3ca2e chore: release 0.5.0 (#359)
ff3ca2e is described below
commit ff3ca2e99dae47fb28c1031c586fb4a07ff3b524
Author: Alex Zhang <[email protected]>
AuthorDate: Sat Apr 10 16:39:12 2021 +0800
chore: release 0.5.0 (#359)
---
CHANGELOG.md | 31 +++++++++++++++++++++++++++++++
Makefile | 2 +-
docs/en/latest/getting-started.md | 1 +
3 files changed, 33 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5b4a81a..5010448 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,11 +19,42 @@
# Table of Contents
+- [0.5.0](#050)
- [0.4.0](#040)
- [0.3.0](#030)
- [0.2.0](#020)
- [0.1.0](#010)
+# 0.5.0
+
+A lot of important features are supported in this release, it makes
apisix-ingress-controller more powerful and flexible.
+Also, several bugs are fixed so the robustness is also enhanced.
+
+We recommend you to use [Apache APISIX
2.5](https://github.com/apache/apisix/releases/tag/2.5) with this release. Note
since CRDs are updated, when
+you upgrade your old release, **manual steps are required to apply the new
ApisixRoute**. Please see the instruction `7` in
[FAQ](https://github.com/apache/apisix-ingress-controller/blob/master/docs/en/latest/FAQ.md)
for more details.
+
+## Core
+
+* Support traffic split feature
([#308](https://github.com/apache/apisix-ingress-controller/pull/308))
+* Support route match exprs
([#304](https://github.com/apache/apisix-ingress-controller/pull/304),
[#306](https://github.com/apache/apisix-ingress-controller/pull/306))
+* Support to configure
[Ingress](https://kubernetes.io/docs/concepts/services-networking/ingress/)
resources in version `extensions/v1beta1`
([#296](https://github.com/apache/apisix-ingress-controller/pull/296),
[#315](https://github.com/apache/apisix-ingress-controller/pull/315))
+* Add name fields when generating APISIX Routes and Upstreams
([#333](https://github.com/apache/apisix-ingress-controller/pull/333))
+* Support to use remote addrs as route match conditions
([#347](https://github.com/apache/apisix-ingress-controller/pull/347))
+* Schema for ApisixRoute CRD
([#345](https://github.com/apache/apisix-ingress-controller/pull/345))
+
+## Fix
+
+* Sometimes ApisixRoute update is ineffective
([#319](https://github.com/apache/apisix-ingress-controller/pull/319))
+* Priority field is not passed to APISIX
([#329](https://github.com/apache/apisix-ingress-controller/pull/329))
+* Route rule name in ApisixRoute can be duplicated
([#330](https://github.com/apache/apisix-ingress-controller/pull/330))
+* Use `PUT` instead of `PATCH` method when updating resources
([#353](https://github.com/apache/apisix-ingress-controller/pull/353))
+* Secrets controller doesn't push the newest cert and priv key to APISIX
([#337](https://github.com/apache/apisix-ingress-controller/pull/337))
+
+## Test
+
+* Use [Kind](https://kind.sigs.k8s.io/) to run e2e suites
([#331](https://github.com/apache/apisix-ingress-controller/pull/331))
+* Add e2e test cases for plugins redirect, uri-blocker, fault-injection,
request-id, limit-count, echo, cors, response-rewrite, proxy-rewrite
([#320](https://github.com/apache/apisix-ingress-controller/pull/320),
[#327](https://github.com/apache/apisix-ingress-controller/pull/327),
[#328](https://github.com/apache/apisix-ingress-controller/pull/328),
[#334](https://github.com/apache/apisix-ingress-controller/pull/334),
[#336](https://github.com/apache/apisix-ingress-controller/pull/336), [...]
+
# 0.4.0
This release mainly improves the program robustness and adds some features.
diff --git a/Makefile b/Makefile
index baf1078..b336cbd 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@
#
default: help
-VERSION ?= 0.4.0
+VERSION ?= 0.5.0
RELEASE_SRC = apache-apisix-ingress-controller-${VERSION}-src
LOCAL_REGISTRY="localhost:5000"
IMAGE_TAG ?= dev
diff --git a/docs/en/latest/getting-started.md
b/docs/en/latest/getting-started.md
index 36cb1bd..f6fbb72 100644
--- a/docs/en/latest/getting-started.md
+++ b/docs/en/latest/getting-started.md
@@ -77,4 +77,5 @@ The following table describes the compatibility between
apisix-ingress-controlle
| apisix-ingress-controller | Apache APISIX |
| ----:| ---:|
| `master` | `>= 2.4`, `2.5` is recommended. |
+| `0.5` | `>= 2.4`, `2.5` is recommended. |
| `0.4` |`>= 2.4`|