Skip to content

Commit 32be235

Browse files
chore: v1.5.1 release (#1474)
1 parent 93930b7 commit 32be235

4 files changed

Lines changed: 78 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
# Table of Contents
2121

22+
- [1.5.1](#151)
2223
- [1.5.0](#150)
2324
- [1.5.0-rc1](#150-rc1)
2425
- [1.4.1](#141)
@@ -34,6 +35,38 @@
3435
- [0.2.0](#020)
3536
- [0.1.0](#010)
3637

38+
# 1.5.1
39+
40+
Welcome to the 1.5.1 release of apisix-ingress-controller!
41+
42+
This is a Patch version release.
43+
44+
Please try out the release binaries and report any issues at
45+
https://github.com/apache/apisix-ingress-controller/issues.
46+
47+
### Contributors
48+
49+
* Jintao Zhang
50+
* Young
51+
52+
### Changes
53+
<details><summary>5 commits</summary>
54+
<p>
55+
56+
* [`93930b7`](https://github.com/apache/apisix-ingress-controller/commit/93930b7b2e2c3cb465d303194abb40c66405ed6a) bug: failed to reflect pluginConfig delete to cache(#1439) (#1470)
57+
* [`97e417b`](https://github.com/apache/apisix-ingress-controller/commit/97e417b8d9c66df655c0e9a6d0c7f9ebbce63757) fix: cluster.metricsCollector invoked before assign when MountWebhooks (#1428) (#1469)
58+
* [`a288408`](https://github.com/apache/apisix-ingress-controller/commit/a288408ef71b7e7c456ba7e178013eefba8ee21c) cherry-pick #1331: fix: Using different protocols at the same time in ApisixUpstream (#1464)
59+
* [`dd5acd3`](https://github.com/apache/apisix-ingress-controller/commit/dd5acd3b94321a54552e6f50c80cd61e6a97960d) docs: fix `server-secret.yaml` link in `mtls.md` (#1434)
60+
* [`21f39e9`](https://github.com/apache/apisix-ingress-controller/commit/21f39e966dedb0765a9848302f8cb713aa461cfe) fix: handle v2 ApisixPluginConfig status (#1409)
61+
</p>
62+
</details>
63+
64+
### Dependency Changes
65+
66+
This release has no dependency changes
67+
68+
Previous release can be found at [1.5.0](https://github.com/apache/apisix-ingress-controller/releases/tag/1.5.0)
69+
3770
# 1.5.0
3871

3972
Welcome to the 1.5.0 release of apisix-ingress-controller!

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
default: help
1818

19-
VERSION ?= 1.5.0
19+
VERSION ?= 1.5.1
2020
RELEASE_SRC = apache-apisix-ingress-controller-${VERSION}-src
2121
REGISTRY ?="localhost:5000"
2222
IMAGE_TAG ?= dev

docs/en/latest/references/apisix_upstream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ title: ApisixUpstream Reference
3333
| timeout.connect | time duration in the form "72h3m0.5s" | The connect timeout. |
3434
| timeout.read | time duration in the form "72h3m0.5s" | The read timeout. |
3535
| timeout.send | time duration in the form "72h3m0.5s" | The send timeout. |
36-
| healthCheck | object | The health check parameters, see [Health Check](https://github.com/apache/apisix/blob/master/docs/en/latest/health-check.md) for more details. |
36+
| healthCheck | object | The health check parameters, see [Health Check](https://github.com/apache/apisix/blob/master/docs/en/latest/tutorials/health-check.md) for more details. |
3737
| healthCheck.active | object | active health check configuration, which is a mandatory field. |
3838
| healthCheck.active.type | string | health check type, can be `http`, `https` and `tcp`, default is `http`. |
3939
| healthCheck.active.timeout | time duration in the form "72h3m0.5s" | the timeout settings for the probe, default is `1s`. |

releases/v1.5.1.toml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one or more
3+
# contributor license agreements. See the NOTICE file distributed with
4+
# this work for additional information regarding copyright ownership.
5+
# The ASF licenses this file to You under the Apache License, Version 2.0
6+
# (the "License"); you may not use this file except in compliance with
7+
# the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
# commit to be tagged for new release
18+
commit = "HEAD"
19+
20+
# project_name is used to refer to the project in the notes
21+
project_name = "apisix-ingress-controller"
22+
23+
# github_repo is the github project, only github is currently supported
24+
github_repo = "apache/apisix-ingress-controller"
25+
26+
# match_deps is a pattern to determine which dependencies should be included
27+
# as part of this release. The changelog will also include changes for these
28+
# dependencies based on the change in the dependency's version.
29+
match_deps = "^github.com/(apache/[a-zA-Z0-9-]+)$"
30+
31+
# previous release of this project for determining changes
32+
previous = "1.5.0"
33+
34+
# pre_release is whether to include a disclaimer about being a pre-release
35+
pre_release = false
36+
37+
# preface is the description of the release which precedes the author list
38+
# and changelog. This description could include highlights as well as any
39+
# description of changes. Use markdown formatting.
40+
preface = """\
41+
This is a Patch version release.
42+
43+
"""

0 commit comments

Comments
 (0)