This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/github.com/slok/kubewebhook/v2-2.3.0
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


 discard b5875edf chore(deps): bump github.com/slok/kubewebhook/v2 from 2.2.0 
to 2.3.0
     add 810f1a1c docs: rename practices to tutorials and add index (#1123)
     add 4aa2ca5a test: support ApisixRoute v2 and split suit-plugins (#1103)
     add 4bc9f0ca fix: update Makefile verify-mdlint (#1126)
     add 70c08706 chore(deps): bump github.com/gruntwork-io/terratest from 
0.32.8 to 0.40.17 in /test/e2e (#1112)
     add aae2105e feat: ingress annotations support enable websocket (#1101)
     add ed85e3d8 chore(deps): bump github.com/slok/kubewebhook/v2 from 2.2.0 
to 2.3.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   (b5875edf)
            \
             N -- N -- N   
refs/heads/dependabot/go_modules/github.com/slok/kubewebhook/v2-2.3.0 (ed85e3d8)

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/workflows/e2e-test-ci.yml                  |   2 +-
 Makefile                                           |   2 +-
 docs/en/latest/concepts/annotations.md             |  33 +
 docs/en/latest/config.json                         |  25 +-
 docs/en/latest/deployments/ack.md                  |   2 +-
 docs/en/latest/deployments/aws.md                  |   2 +-
 docs/en/latest/deployments/azure.md                |   2 +-
 docs/en/latest/deployments/gke.md                  |   2 +-
 docs/en/latest/deployments/k3s-rke.md              |   2 +-
 docs/en/latest/deployments/kind.md                 |   2 +-
 docs/en/latest/deployments/kubesphere.md           |   2 +-
 docs/en/latest/deployments/minikube.md             |   2 +-
 docs/en/latest/deployments/tke.md                  |   2 +-
 .../{practices => tutorials}/cert-manager/ca.yaml  |   0
 .../cert-manager/issuer.yaml                       |   0
 .../{practices => tutorials}/check-crd-status.md   |   0
 .../enable-authentication-and-restriction.md       |   0
 ...cess-Apache-APISIX-Prometheus-Metrics-on-k8s.md |   0
 ...ow-to-use-go-plugin-runner-in-apisix-ingress.md |   0
 docs/en/latest/{practices => tutorials}/index.md   |   0
 .../manage-certificates-with-cert-manager.md       |   2 +-
 ...anage-ingress-certificates-with-cert-manager.md |   2 +-
 docs/en/latest/{practices => tutorials}/mtls.md    |   2 +-
 .../en/latest/{practices => tutorials}/mtls/ca.pem |   0
 .../mtls/client-ca-secret.yaml                     |   0
 .../latest/{practices => tutorials}/mtls/mtls.yaml |   0
 .../{practices => tutorials}/mtls/route.yaml       |   0
 .../mtls/server-secret.yaml                        |   0
 .../{practices => tutorials}/mtls/server.key       |   0
 .../{practices => tutorials}/mtls/server.pem       |   0
 .../latest/{practices => tutorials}/mtls/tls.yaml  |   0
 .../latest/{practices => tutorials}/mtls/user.key  |   0
 .../latest/{practices => tutorials}/mtls/user.pem  |   0
 .../{practices => tutorials}/proxy-grpc-service.md |   0
 .../proxy-the-httpbin-service-with-ingress.md      |   0
 .../proxy-the-httpbin-service.md                   |   0
 .../{practices => tutorials}/the-hard-way.md       |   0
 install.md                                         |   2 +-
 pkg/ingress/status.go                              |  17 +
 pkg/kube/translation/ingress.go                    |   8 +
 pkg/kube/translation/ingress_test.go               | 261 +++++++
 samples/deploy/crd/v1/ApisixRoute.yaml             |  12 +
 test/e2e/e2e.go                                    |   6 +-
 test/e2e/go.mod                                    |  17 +-
 test/e2e/go.sum                                    | 230 +-----
 test/e2e/scaffold/consumer.go                      |  19 +-
 test/e2e/scaffold/ingress.go                       |   3 +-
 test/e2e/scaffold/scaffold.go                      | 153 ++--
 test/e2e/suite-annotations/websocket.go            | 306 ++++++++
 test/e2e/suite-endpoints/endpoints.go              | 130 ++--
 test/e2e/suite-features/consumer.go                |  40 +-
 test/e2e/suite-features/global_rule.go             |  10 +-
 test/e2e/suite-features/healthcheck.go             |  90 +--
 test/e2e/suite-features/remote_addrs_match.go      |  59 +-
 test/e2e/suite-features/retries.go                 | 178 ++---
 test/e2e/suite-features/route_match_exprs.go       | 768 +++++++++++----------
 test/e2e/suite-features/scheme.go                  | 134 ++--
 test/e2e/suite-features/subset.go                  | 127 ++--
 test/e2e/suite-features/traffic_split.go           | 142 ++--
 test/e2e/suite-features/websocket.go               |  84 +--
 test/e2e/suite-ingress/compare.go                  |   2 +-
 test/e2e/suite-ingress/namespace.go                | 142 ++--
 test/e2e/suite-ingress/resourcepushing.go          | 633 ++++++++---------
 test/e2e/suite-ingress/resourcesync.go             | 271 ++++----
 test/e2e/suite-ingress/sanity.go                   | 295 ++++----
 test/e2e/suite-ingress/secret.go                   | 216 +++---
 test/e2e/suite-ingress/ssl.go                      |   2 +-
 test/e2e/suite-ingress/status.go                   |  48 +-
 test/e2e/suite-ingress/stream.go                   |  93 ++-
 test/e2e/suite-ingress/upstream_tls.go             |  92 +--
 test/e2e/suite-ingress/webhook.go                  |  58 +-
 .../suite-plugins-general/echo.go                  | 236 +++++++
 .../suite-plugins-general/redirect.go              | 221 ++++++
 .../suite-plugins-general}/server-info.go          |   2 +-
 .../suite-plugins-other}/plugin_config.go          |  24 +-
 .../suite-plugins-other}/serverless.go             |  55 +-
 .../suite-plugins-security/consumer-restriction.go | 231 +++++++
 .../suite-plugins-security/cors.go                 | 331 +++++++++
 .../suite-plugins-security/csrf.go                 | 142 ++++
 .../suite-plugins-security/ip-restriction.go       | 239 +++++++
 .../suite-plugins-security/referer-restriction.go  | 320 +++++++++
 .../suite-plugins-security/uri_blocker.go          | 246 +++++++
 .../suite-plugins-traffic}/api_breaker.go          |  93 +--
 .../suite-plugins-traffic/client-control.go        | 132 ++++
 .../suite-plugins-traffic/limit_count.go           | 240 +++++++
 .../suite-plugins-traffic/request-validation.go    | 197 ++++++
 .../suite-plugins-traffic/request_id.go            | 181 +++++
 .../fault_injection.go                             | 244 +++++++
 .../suite-plugins-transformation/proxy_rewrite.go  | 241 +++++++
 .../response_rewrite.go                            | 246 +++++++
 test/e2e/suite-plugins/client-control.go           | 131 ----
 test/e2e/suite-plugins/consumer-restriction.go     | 230 ------
 test/e2e/suite-plugins/cors.go                     | 330 ---------
 test/e2e/suite-plugins/csrf.go                     | 141 ----
 test/e2e/suite-plugins/echo.go                     | 235 -------
 test/e2e/suite-plugins/fault_injection.go          | 243 -------
 test/e2e/suite-plugins/ip-restriction.go           | 238 -------
 test/e2e/suite-plugins/limit_count.go              | 239 -------
 test/e2e/suite-plugins/proxy_rewrite.go            | 240 -------
 test/e2e/suite-plugins/redirect.go                 | 220 ------
 test/e2e/suite-plugins/referer-restriction.go      | 319 ---------
 test/e2e/suite-plugins/request-validation.go       | 196 ------
 test/e2e/suite-plugins/request_id.go               | 180 -----
 test/e2e/suite-plugins/response_rewrite.go         | 245 -------
 test/e2e/suite-plugins/uri_blocker.go              | 245 -------
 test/e2e/testbackend/Dockerfile                    |   2 +-
 106 files changed, 6201 insertions(+), 5588 deletions(-)
 rename docs/en/latest/{practices => tutorials}/cert-manager/ca.yaml (100%)
 rename docs/en/latest/{practices => tutorials}/cert-manager/issuer.yaml (100%)
 rename docs/en/latest/{practices => tutorials}/check-crd-status.md (100%)
 rename docs/en/latest/{practices => 
tutorials}/enable-authentication-and-restriction.md (100%)
 rename docs/en/latest/{practices => 
tutorials}/how-to-access-Apache-APISIX-Prometheus-Metrics-on-k8s.md (100%)
 rename docs/en/latest/{practices => 
tutorials}/how-to-use-go-plugin-runner-in-apisix-ingress.md (100%)
 rename docs/en/latest/{practices => tutorials}/index.md (100%)
 rename docs/en/latest/{practices => 
tutorials}/manage-certificates-with-cert-manager.md (99%)
 rename docs/en/latest/{practices => 
tutorials}/manage-ingress-certificates-with-cert-manager.md (98%)
 rename docs/en/latest/{practices => tutorials}/mtls.md (99%)
 rename docs/en/latest/{practices => tutorials}/mtls/ca.pem (100%)
 rename docs/en/latest/{practices => tutorials}/mtls/client-ca-secret.yaml 
(100%)
 rename docs/en/latest/{practices => tutorials}/mtls/mtls.yaml (100%)
 rename docs/en/latest/{practices => tutorials}/mtls/route.yaml (100%)
 rename docs/en/latest/{practices => tutorials}/mtls/server-secret.yaml (100%)
 rename docs/en/latest/{practices => tutorials}/mtls/server.key (100%)
 rename docs/en/latest/{practices => tutorials}/mtls/server.pem (100%)
 rename docs/en/latest/{practices => tutorials}/mtls/tls.yaml (100%)
 rename docs/en/latest/{practices => tutorials}/mtls/user.key (100%)
 rename docs/en/latest/{practices => tutorials}/mtls/user.pem (100%)
 rename docs/en/latest/{practices => tutorials}/proxy-grpc-service.md (100%)
 rename docs/en/latest/{practices => 
tutorials}/proxy-the-httpbin-service-with-ingress.md (100%)
 rename docs/en/latest/{practices => tutorials}/proxy-the-httpbin-service.md 
(100%)
 rename docs/en/latest/{practices => tutorials}/the-hard-way.md (100%)
 create mode 100644 test/e2e/suite-annotations/websocket.go
 create mode 100644 test/e2e/suite-plugins-all/suite-plugins-general/echo.go
 create mode 100644 test/e2e/suite-plugins-all/suite-plugins-general/redirect.go
 rename test/e2e/{suite-plugins => 
suite-plugins-all/suite-plugins-general}/server-info.go (95%)
 rename test/e2e/{suite-plugins => 
suite-plugins-all/suite-plugins-other}/plugin_config.go (94%)
 rename test/e2e/{suite-plugins => 
suite-plugins-all/suite-plugins-other}/serverless.go (59%)
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-security/consumer-restriction.go
 create mode 100644 test/e2e/suite-plugins-all/suite-plugins-security/cors.go
 create mode 100644 test/e2e/suite-plugins-all/suite-plugins-security/csrf.go
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-security/ip-restriction.go
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-security/referer-restriction.go
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-security/uri_blocker.go
 rename test/e2e/{suite-plugins => 
suite-plugins-all/suite-plugins-traffic}/api_breaker.go (54%)
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-traffic/client-control.go
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-traffic/limit_count.go
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-traffic/request-validation.go
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-traffic/request_id.go
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-transformation/fault_injection.go
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-transformation/proxy_rewrite.go
 create mode 100644 
test/e2e/suite-plugins-all/suite-plugins-transformation/response_rewrite.go
 delete mode 100644 test/e2e/suite-plugins/client-control.go
 delete mode 100644 test/e2e/suite-plugins/consumer-restriction.go
 delete mode 100644 test/e2e/suite-plugins/cors.go
 delete mode 100644 test/e2e/suite-plugins/csrf.go
 delete mode 100644 test/e2e/suite-plugins/echo.go
 delete mode 100644 test/e2e/suite-plugins/fault_injection.go
 delete mode 100644 test/e2e/suite-plugins/ip-restriction.go
 delete mode 100644 test/e2e/suite-plugins/limit_count.go
 delete mode 100644 test/e2e/suite-plugins/proxy_rewrite.go
 delete mode 100644 test/e2e/suite-plugins/redirect.go
 delete mode 100644 test/e2e/suite-plugins/referer-restriction.go
 delete mode 100644 test/e2e/suite-plugins/request-validation.go
 delete mode 100644 test/e2e/suite-plugins/request_id.go
 delete mode 100644 test/e2e/suite-plugins/response_rewrite.go
 delete mode 100644 test/e2e/suite-plugins/uri_blocker.go

Reply via email to