You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by gi...@apache.org on 2023/03/17 10:18:39 UTC

[apisix-ingress-controller] branch dependabot/go_modules/test/e2e/github.com/onsi/ginkgo/v2-2.9.1 updated (89317ef8 -> 2b9a09f1)

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

github-bot pushed a change to branch dependabot/go_modules/test/e2e/github.com/onsi/ginkgo/v2-2.9.1
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


 discard 89317ef8 chore(deps): bump github.com/onsi/ginkgo/v2 in /test/e2e
     add 3abe8af8 feat: ApisixTls suuport ingressClass (#1714)
     add 07c7d9d6 feat: ApisixConsumer support ingressClass (#1717)
     add 271d89fe feat: ApisixClusterConfig support IngressClass (#1720)
     add f1395f11 ci: regression test on apisix-and-all and apisix (#1726)
     add d871a2c3 fix: when secret created later than apisixtls it should be updated (#1715)
     add a431dd0b feat: Support GatewayAPI route attachment restriction (#1440)
     add 2b9a09f1 chore(deps): bump github.com/onsi/ginkgo/v2 in /test/e2e

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   (89317ef8)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/test/e2e/github.com/onsi/ginkgo/v2-2.9.1 (2b9a09f1)

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 +
 cmd/ingress/ingress.go                             |   5 +-
 cmd/ingress/ingress_test.go                        |   2 +-
 go.mod                                             |   4 +-
 go.sum                                             |  18 +-
 pkg/kube/apisix/apis/config/v2/types.go            |  19 +
 pkg/providers/apisix/apisix_cluster_config.go      |  33 +-
 pkg/providers/apisix/apisix_consumer.go            |  22 +-
 pkg/providers/apisix/apisix_tls.go                 |  64 ++-
 pkg/providers/apisix/apisix_upstream.go            |   9 +-
 pkg/providers/controller.go                        |   5 +-
 pkg/providers/gateway/gateway.go                   |  15 +-
 pkg/providers/gateway/gateway_class.go             |   3 -
 pkg/providers/gateway/gateway_httproute.go         |   8 +
 pkg/providers/gateway/gateway_tcproute.go          |   9 +
 pkg/providers/gateway/gateway_tlsroute.go          |   9 +-
 pkg/providers/gateway/gateway_udproute.go          |  10 +-
 pkg/providers/gateway/provider.go                  |  36 ++
 pkg/providers/gateway/translation/gateway.go       |  35 +-
 .../gateway/translation/gateway_httproute.go       |   8 +-
 pkg/providers/gateway/types/types.go               |  49 ++-
 pkg/providers/gateway/validator.go                 | 274 ++++++++++++
 pkg/providers/k8s/endpoint/endpoint.go             |   2 +-
 pkg/providers/k8s/endpoint/endpointslice.go        |   4 +-
 pkg/providers/k8s/namespace/namespace.go           |   3 +
 pkg/providers/k8s/secret.go                        |   5 +-
 pkg/providers/utils/domain.go                      |  70 ++++
 .../utils/{schema_test.go => domain_test.go}       |  30 +-
 pkg/providers/utils/string.go                      |   9 +
 samples/deploy/crd/v1/ApisixClusterConfig.yaml     |   2 +
 samples/deploy/crd/v1/ApisixConsumer.yaml          |   2 +
 samples/deploy/crd/v1/ApisixTls.yaml               |   2 +
 samples/deploy/rbac/apisix_view_clusterrole.yaml   |   2 +
 test/e2e/go.mod                                    |   2 +-
 test/e2e/go.sum                                    |   4 +-
 test/e2e/scaffold/ingress.go                       |   9 +
 test/e2e/scaffold/scaffold.go                      |   8 +-
 test/e2e/scaffold/ssl.go                           |  11 +-
 test/e2e/suite-gateway/route_attchment.go          | 288 +++++++++++++
 .../suite-ingress-features/ingress-class.go        | 459 ++++++++++++++++++++-
 .../suite-ingress/suite-ingress-features/secret.go | 133 +++++-
 41 files changed, 1594 insertions(+), 90 deletions(-)
 create mode 100644 pkg/providers/gateway/validator.go
 create mode 100644 pkg/providers/utils/domain.go
 copy pkg/providers/utils/{schema_test.go => domain_test.go} (50%)
 create mode 100644 test/e2e/suite-gateway/route_attchment.go