Skip to content

Commit ceefeb1

Browse files
authored
chore: add v1.7.1 release note (#2022)
Signed-off-by: Ling Samuel (WSL) <lingsamuelgrace@gmail.com>
1 parent b42ed7e commit ceefeb1

3 files changed

Lines changed: 79 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,39 @@
3838
- [0.2.0](#020)
3939
- [0.1.0](#010)
4040

41+
# 1.7.1
42+
43+
Welcome to the v1.7.1 release of apisix-ingress-controller!
44+
45+
This is a Patch version release.
46+
47+
## Highlights
48+
49+
Please try out the release binaries and report any issues at
50+
https://github.com/apache/apisix-ingress-controller/issues.
51+
52+
### Contributors
53+
54+
* Jintao Zhang
55+
* Sarasa Kisaragi
56+
* Xin Rong
57+
58+
### Changes
59+
<details><summary>3 commits</summary>
60+
<p>
61+
62+
* [`b42ed7e`](https://github.com/apache/apisix-ingress-controller/commit/b42ed7e3636b0a33e183ff8df17c7c622ae39632) fix: plugin_metadata not populating to the correct etcd key (#2012) (#2021)
63+
* [`a07a30b`](https://github.com/apache/apisix-ingress-controller/commit/a07a30bef39635fa823fa684b1fe881d62bfdf2f) fix: ingress-apisix version of deploy image tag and document (#1968) (#1972)
64+
* [`d91757a`](https://github.com/apache/apisix-ingress-controller/commit/d91757a1601e984f6bd0c22753b020a092adfc4e) chore: release v1.7.0 (#1952)
65+
</p>
66+
</details>
67+
68+
### Dependency Changes
69+
70+
This release has no dependency changes
71+
72+
Previous release can be found at [v1.7.0](https://github.com/apache/apisix-ingress-controller/releases/tag/v1.7.0)
73+
4174
# 1.7.0
4275

4376
Welcome to the 1.7.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.7.0
19+
VERSION ?= 1.7.1
2020

2121

2222
TARGET_APISIX_VERSION ?= "3.4.1-centos"

releases/v1.7.1.toml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 = "v1.7.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+
## Highlights
44+
45+
"""

0 commit comments

Comments
 (0)