-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
- Loading branch information
1 parent
a1ef639
commit b7dd90a
Showing
4 changed files
with
178 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# commit to be tagged for new release | ||
commit = "HEAD" | ||
|
||
# project_name is used to refer to the project in the notes | ||
project_name = "apisix-ingress-controller" | ||
|
||
# github_repo is the github project, only github is currently supported | ||
github_repo = "apache/apisix-ingress-controller" | ||
|
||
# match_deps is a pattern to determine which dependencies should be included | ||
# as part of this release. The changelog will also include changes for these | ||
# dependencies based on the change in the dependency's version. | ||
match_deps = "^github.com/(apache/[a-zA-Z0-9-]+)$" | ||
|
||
# previous release of this project for determining changes | ||
previous = "1.3.0" | ||
|
||
# pre_release is whether to include a disclaimer about being a pre-release | ||
pre_release = false | ||
|
||
# preface is the description of the release which precedes the author list | ||
# and changelog. This description could include highlights as well as any | ||
# description of changes. Use markdown formatting. | ||
preface = """\ | ||
This is a **GA** release. | ||
## Highlights | ||
### Roadmap | ||
In next release(v1.5), custom resource's API version v2 will be GA released. Please go to [#707](https://github.com/apache/apisix-ingress-controller/issues/707) for detail. | ||
### Breaking Changes | ||
* In this release(v1.4), all custom resource's API version has been upgraded to `apisix.apache.org/v2beta3`, and we deleted `apisix.apache.org/v2beta3` and `apisix.apache.org/v2alpha1`. Please see [#746](https://github.com/apache/apisix-ingress-controller/pull/746) | ||
### New Features | ||
* We have introduced the **`apisix.apache.org/v2beta3` API version for all custom resources** and deleted `v2alpha1` and `v1` API version [#746](https://github.com/apache/apisix-ingress-controller/pull/746) | ||
* Initial support for Gateway API [#789](https://github.com/apache/apisix-ingress-controller/pull/789) | ||
* Add a new ApisixPluginConfig CRD for reuse common plugin configurations. [#638](https://github.com/apache/apisix-ingress-controller/issues/638) | ||
* Support regex in Ingress path [#779](https://github.com/apache/apisix-ingress-controller/pull/779) | ||
* We can update the load balancing IP of the Ingress, and it can work in various public cloud environments [#740](https://github.com/apache/apisix-ingress-controller/pull/740) | ||
""" |