This is an automated email from the ASF dual-hosted git repository.
kvn pushed a change to branch v0.2.0
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git.
discard aa74502 docs: style update
discard 42b321b add EOL
discard 3b05ae8 chore: allow duplicate headers in siblings
discard b1b648e fix: add EOL in CHANGELOG
discard 5964da2 fix: release-src name should contains controller
discard 2030910 chore: add release-src makefile
discard a4bab10 chore: change version to 0.2.0
discard 10dd97f chore: add Changelog
add 07080a9 fix: syntax error in e2e (#168)
add f924022 fix: broken unit test cases for pkg/cmd/ingress (#169)
add ef712f7 chore: update year to 2021 (#165)
add fd30f33 chore: add issue and pr templates (#166)
add 1669bba chore: namespaces filtering (#162)
add 536899f chore: add Changelog
add 319a9fe chore: change version to 0.2.0
add fa603ae chore: add release-src makefile
add 50d3a6b fix: release-src name should contains controller
add 5f8ae28 fix: add EOL in CHANGELOG
add dc01b00 chore: allow duplicate headers in siblings
add ad74355 add EOL
add 12ea1eb docs: style update
add 95c25c2 merge conflict
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (aa74502)
\
N -- N -- N refs/heads/v0.2.0 (95c25c2)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/ISSUE_TEMPLATE/bug-report.md | 26 +++++++++++
.github/ISSUE_TEMPLATE/request-help.md | 16 +++++++
.github/PULL_REQUEST_TEMPLATE | 29 ++++++++++++
Makefile | 16 +++++--
NOTICE | 2 +-
cmd/ingress/ingress.go | 5 ++
cmd/ingress/ingress_test.go | 20 ++++++--
conf/config-default.yaml | 2 +
pkg/config/config.go | 24 +++++++++-
pkg/config/config_test.go | 1 +
pkg/ingress/controller/apisix_route.go | 16 ++++++-
pkg/ingress/controller/apisix_service.go | 16 ++++++-
pkg/ingress/controller/apisix_tls.go | 16 ++++++-
pkg/ingress/controller/apisix_upstream.go | 13 +++++-
pkg/ingress/controller/controller.go | 66 ++++++++++++++++++++------
pkg/ingress/controller/endpoint.go | 10 +++-
test/e2e/ingress/namespace.go | 77 +++++++++++++++++++++++++++++++
test/e2e/ingress/resourcepushing.go | 38 +++++++--------
test/e2e/scaffold/crd.go | 31 +++++++++++--
test/e2e/scaffold/ingress.go | 15 +++---
test/e2e/scaffold/scaffold.go | 22 ++++-----
21 files changed, 386 insertions(+), 75 deletions(-)
create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md
create mode 100644 .github/ISSUE_TEMPLATE/request-help.md
create mode 100644 .github/PULL_REQUEST_TEMPLATE
create mode 100644 test/e2e/ingress/namespace.go