This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/go_modules/sigs.k8s.io/gateway-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
omit 480a203e chore(deps): bump sigs.k8s.io/gateway-api from 0.8.0 to 1.0.0
add e2870a83 Renamed field according to CRD (#2032)
add c111c122 chore(deps): bump github.com/gorilla/websocket in /test/e2e
(#2035)
add 676be37f chore: correct Makefile comments (#2038)
add d283536d docs: add best practice docs to avoid race condition bw
kubelet and apisix (#2045)
add f79b0585 chore(deps): bump k8s.io/apimachinery from 0.28.3 to 0.28.4
in /test/e2e (#2054)
add feb143c6 chore(deps): bump google.golang.org/grpc in /test/e2e (#2024)
add aa47882e chore(deps): bump google.golang.org/grpc in
/test/e2e/testbackend (#2026)
add 5c6427c2 chore(deps): bump github.com/onsi/ginkgo/v2 in /test/e2e
(#2041)
add dad53db7 chore: add Revolyssup in reviewers (#2059)
add ea6fbc95 chore(deps): bump k8s.io/client-go from 0.28.3 to 0.28.4 in
/test/e2e (#2052)
add e1a1b95b fix: replace string comparison with 64 bit int (#2062)
add bb3f92d7 feat: add release-drafter (#2068)
add 9b3b6059 fix: create unique TLS object for each item in Ingress tls
(#1989)
add 8bd4cd0c docs: Add doc for ApisixConsumer (#2074)
add b83c206f fix: upgrade etcd-adapter (#2078)
add 7a9a0fab chore(deps): bump k8s.io/api from 0.28.2 to 0.28.4 (#2056)
add b6ce5f25 chore(deps): bump sigs.k8s.io/gateway-api from 0.8.0 to 1.0.0
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 (480a203e)
\
N -- N -- N
refs/heads/dependabot/go_modules/sigs.k8s.io/gateway-api-1.0.0 (b6ce5f25)
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/dependabot.yml | 3 +
.../dependency-review.yml => release-drafter.yml} | 37 +-
.../{license-checker.yml => release-drafter.yml} | 23 +-
Makefile | 4 +-
docs/en/latest/concepts/apisix_consumer.md | 108 ++
docs/en/latest/concepts/apisix_global_rule.md | 2 +-
docs/en/latest/references/apisix_consumer_v2.md | 46 +
...ow-to-avoid-race-condition-when-scaling-down.md | 63 +
go.mod | 6 +-
go.sum | 12 +-
pkg/providers/apisix/apisix_cluster_config.go | 5 +-
pkg/providers/apisix/apisix_consumer.go | 5 +-
pkg/providers/apisix/apisix_global_rule.go | 5 +-
pkg/providers/apisix/apisix_plugin_config.go | 5 +-
pkg/providers/apisix/apisix_route.go | 5 +-
pkg/providers/apisix/apisix_tls.go | 5 +-
pkg/providers/apisix/apisix_upstream.go | 5 +-
pkg/providers/ingress/ingress.go | 5 +-
pkg/providers/ingress/translation/translator.go | 50 +-
.../ingress/translation/translator_test.go | 154 +++
test/e2e/go.mod | 24 +-
test/e2e/go.sum | 51 +-
test/e2e/suite-annotations/redirect.go | 20 +-
test/e2e/suite-features/external-service.go | 86 +-
.../suite-ingress/suite-ingress-features/secret.go | 121 +-
.../suite-ingress-resource/ingress.go | 73 +-
test/e2e/testbackend/go.mod | 8 +-
test/e2e/testbackend/go.sum | 1392 +++++++++++++++++++-
28 files changed, 2154 insertions(+), 169 deletions(-)
copy .github/{workflows/dependency-review.yml => release-drafter.yml} (60%)
copy .github/workflows/{license-checker.yml => release-drafter.yml} (72%)
create mode 100644 docs/en/latest/concepts/apisix_consumer.md
create mode 100644 docs/en/latest/references/apisix_consumer_v2.md
create mode 100644
docs/en/latest/tutorials/how-to-avoid-race-condition-when-scaling-down.md
create mode 100644 pkg/providers/ingress/translation/translator_test.go