This is an automated email from the ASF dual-hosted git repository.
kvn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-website.git
The following commit(s) were added to refs/heads/master by this push:
new 04eef9c chore: release ingress controller 0.5.0 (#305)
04eef9c is described below
commit 04eef9c2cd40d1924ad6a9fd97b29e5128453854
Author: Alex Zhang <[email protected]>
AuthorDate: Tue Apr 13 21:06:26 2021 +0800
chore: release ingress controller 0.5.0 (#305)
* chore: release ingress controller 0.5.0
* feat: add event
---
website/docusaurus.config.js | 4 +--
...-04-13-release-apisix-ingress-controller-0.5.md | 33 ++++++++++++++++++++++
2 files changed, 35 insertions(+), 2 deletions(-)
diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index a145992..57e9640 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -45,8 +45,8 @@ module.exports = {
shape: "hexagon",
color: "#2563EB",
githubRepo: "apache/apisix-ingress-controller",
- version: "0.4.0",
- releaseDate: "2021-03-12",
+ version: "0.5.0",
+ releaseDate: "2021-04-11",
firstDocPath: "/getting-started",
}
],
diff --git a/website/events/2021-04-13-release-apisix-ingress-controller-0.5.md
b/website/events/2021-04-13-release-apisix-ingress-controller-0.5.md
new file mode 100644
index 0000000..84cd53a
--- /dev/null
+++ b/website/events/2021-04-13-release-apisix-ingress-controller-0.5.md
@@ -0,0 +1,33 @@
+---
+title: Release Apache APISIX Ingress Controller 0.5
+---
+
+<!--truncate-->
+
+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), [...]