Skip to content

Commit 9b34e12

Browse files
committed
chore: v2.0.1 release (#2700)
Signed-off-by: Ashing Zheng <axingfly@gmail.com> (cherry picked from commit 3bceaed)
1 parent b01b71b commit 9b34e12

File tree

3 files changed

+152
-1
lines changed

3 files changed

+152
-1
lines changed

CHANGELOG.md

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

2020
# Table of Contents
2121

22+
- [2.0.1](#201)
2223
- [2.0.0](#200)
2324
- [2.0.0-rc5](#200-rc5)
2425
- [2.0.0-rc4](#200-rc4)
@@ -45,6 +46,82 @@
4546
- [0.2.0](#020)
4647
- [0.1.0](#010)
4748

49+
# 2.0.1
50+
51+
apisix-ingress-controller 2.0.1
52+
53+
Welcome to the 2.0.1 release of apisix-ingress-controller!
54+
55+
## Highlights
56+
57+
This is a patch release that includes a new feature, bug fixes and dependency updates.
58+
59+
---
60+
61+
## Features
62+
63+
* feat: support custom gatewayproxy namespace for ingressclass [#2701](https://github.com/apache/apisix-ingress-controller/pull/2701)
64+
65+
---
66+
67+
## Bug Fixes
68+
69+
* fix: modify upstream name generation method [#2694](https://github.com/apache/apisix-ingress-controller/pull/2694)
70+
* fix: adjust apisix standalone mode adc sync result [#2697](https://github.com/apache/apisix-ingress-controller/pull/2697)
71+
72+
---
73+
74+
## Chores
75+
76+
* chore: update deps [#2698](https://github.com/apache/apisix-ingress-controller/pull/2698)
77+
* chore: log when kubernetes cluster version does not meet minimum requirement [#2693](https://github.com/apache/apisix-ingress-controller/pull/2693)
78+
79+
---
80+
81+
## Documentation
82+
83+
* docs: update k8s cluster version in README [#2688](https://github.com/apache/apisix-ingress-controller/pull/2688)
84+
* docs: update plugin metadata APISIX CRD example [#2687](https://github.com/apache/apisix-ingress-controller/pull/2687)
85+
* docs: mismatched namespace example of gatewayproxy [#2682](https://github.com/apache/apisix-ingress-controller/pull/2682)
86+
87+
Please try out the release binaries and report any issues at
88+
https://github.com/apache/apisix-ingress-controller/issues.
89+
90+
### Contributors
91+
92+
* Ashing Zheng
93+
* Traky Deng
94+
* Zeping Bai
95+
96+
### Changes
97+
<details><summary>8 commits</summary>
98+
<p>
99+
100+
* [`b52c26c8`](https://github.com/apache/apisix-ingress-controller/commit/b52c26c8519389600c968c497533c6a6cf9d485d) feat: support custom gatewayproxy namespace for ingressclass (#2701)
101+
* [`d23f7bf9`](https://github.com/apache/apisix-ingress-controller/commit/d23f7bf93b5a1ff50afa83478894d202a57f7f60) chore: update deps (#2698)
102+
* [`80585882`](https://github.com/apache/apisix-ingress-controller/commit/80585882b8460619bd123f85efa61d0465b1b218) fix: modify upstream name generation method (#2694)
103+
* [`a979e253`](https://github.com/apache/apisix-ingress-controller/commit/a979e253ce16c53539dc4d6d6386db8ea87a78b2) fix: adjust apisix standalone mode adc sync result (#2697)
104+
* [`b274316e`](https://github.com/apache/apisix-ingress-controller/commit/b274316e75e2e9bfb21ebde30a9ef61746fb9639) chore: log when kubernetes cluster version does not meet minimum requirement (#2693)
105+
* [`01fa72f9`](https://github.com/apache/apisix-ingress-controller/commit/01fa72f9f45ec702579803ea499dd63e07300e30) docs: update k8s cluster version in README (#2688)
106+
* [`68c072ea`](https://github.com/apache/apisix-ingress-controller/commit/68c072ea3825b6177abc5ecf506e2844a6acf4cc) docs: update plugin metadata APISIX CRD example (#2687)
107+
* [`dcf3b593`](https://github.com/apache/apisix-ingress-controller/commit/dcf3b593333e2b326a5ab76272a0dee2ac2e6b48) docs: mismatched namespace example of gatewayproxy (#2682)
108+
</p>
109+
</details>
110+
111+
### Dependency Changes
112+
113+
* **github.com/eclipse/paho.mqtt.golang** v1.5.0 -> v1.5.1
114+
* **golang.org/x/crypto** v0.37.0 -> v0.45.0
115+
* **golang.org/x/mod** v0.23.0 -> v0.29.0
116+
* **golang.org/x/net** v0.39.0 -> v0.47.0
117+
* **golang.org/x/sync** v0.13.0 -> v0.18.0
118+
* **golang.org/x/sys** v0.32.0 -> v0.38.0
119+
* **golang.org/x/term** v0.31.0 -> v0.37.0
120+
* **golang.org/x/text** v0.24.0 -> v0.31.0
121+
* **golang.org/x/tools** v0.30.0 -> v0.38.0
122+
123+
Previous release can be found at [2.0.0](https://github.com/apache/apisix-ingress-controller/releases/tag/2.0.0)
124+
48125
# 2.0.0
49126

50127
apisix-ingress-controller 2.0.0

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# Image URL to use all building/pushing image targets
1919

20-
VERSION ?= 2.0.0
20+
VERSION ?= 2.0.1
2121

2222
RELEASE_SRC = apache-apisix-ingress-controller-${VERSION}-src
2323

releases/v2.0.1.toml

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
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 = "2.0.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+
42+
## Highlights
43+
44+
This is a patch release that includes a new feature, bug fixes and dependency updates.
45+
46+
---
47+
48+
## Features
49+
50+
* feat: support custom gatewayproxy namespace for ingressclass [#2701](https://github.com/apache/apisix-ingress-controller/pull/2701)
51+
52+
---
53+
54+
## Bug Fixes
55+
56+
* fix: modify upstream name generation method [#2694](https://github.com/apache/apisix-ingress-controller/pull/2694)
57+
* fix: adjust apisix standalone mode adc sync result [#2697](https://github.com/apache/apisix-ingress-controller/pull/2697)
58+
59+
---
60+
61+
## Chores
62+
63+
* chore: update deps [#2698](https://github.com/apache/apisix-ingress-controller/pull/2698)
64+
* chore: log when kubernetes cluster version does not meet minimum requirement [#2693](https://github.com/apache/apisix-ingress-controller/pull/2693)
65+
66+
---
67+
68+
## Documentation
69+
70+
* docs: update k8s cluster version in README [#2688](https://github.com/apache/apisix-ingress-controller/pull/2688)
71+
* docs: update plugin metadata APISIX CRD example [#2687](https://github.com/apache/apisix-ingress-controller/pull/2687)
72+
* docs: mismatched namespace example of gatewayproxy [#2682](https://github.com/apache/apisix-ingress-controller/pull/2682)
73+
74+
"""

0 commit comments

Comments
 (0)