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/07 06:21:17 UTC

[apisix-ingress-controller] branch dependabot/go_modules/k8s.io/client-go-0.26.2 updated (cd1d0f9a -> dfd87bf8)

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

github-bot pushed a change to branch dependabot/go_modules/k8s.io/client-go-0.26.2
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


 discard cd1d0f9a chore(deps): bump k8s.io/client-go from 0.26.1 to 0.26.2
     add ec09d4f5 docs: Update the-hard-way.md (#1700)
     add 4cd8ad52 feat: sync plugin-config labels to apisix (#1538)
     add 5fcd3d0e feat: ApisixUpstream support IngressClass (#1674)
     add 7862e28f chore(deps): bump github.com/gin-gonic/gin from 1.8.2 to 1.9.0 (#1701)
     add acf3e369 chore(deps): bump golang.org/x/sys in /test/e2e/testbackend (#1687)
     add fad7955d docs: using APISIX Ingress as Istio egress gateway (#1667)
     add d7028098 chore(deps): bump k8s.io/code-generator from 0.26.1 to 0.26.2 (#1708)
     add dfd87bf8 chore(deps): bump k8s.io/client-go from 0.26.1 to 0.26.2

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   (cd1d0f9a)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/k8s.io/client-go-0.26.2 (dfd87bf8)

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:
 cmd/ingress/ingress.go                             |   2 +-
 conf/config-default.yaml                           |   3 +-
 docs/en/latest/tutorials/istio-egress-gateway      | 270 +++++++++++++++++++++
 docs/en/latest/tutorials/the-hard-way.md           | 180 +-------------
 go.mod                                             |  23 +-
 go.sum                                             |  65 +++--
 pkg/config/config.go                               |   5 +-
 pkg/kube/apisix/apis/config/v2/types.go            |   6 +
 pkg/providers/apisix/apisix_upstream.go            |  19 ++
 pkg/providers/apisix/provider.go                   |   1 +
 .../apisix/translation/apisix_pluginconfig.go      |   3 +
 pkg/providers/apisix/translation/translator.go     |   5 +-
 pkg/providers/controller.go                        |   1 +
 pkg/providers/ingress/ingress.go                   |  13 +-
 pkg/providers/k8s/endpoint/base.go                 |   7 +-
 pkg/providers/translation/service.go               |  21 +-
 pkg/providers/translation/translator.go            |   3 +-
 .../labels.go => providers/utils/ingress_class.go} |  24 +-
 samples/deploy/crd/v1/ApisixUpstream.yaml          |   2 +
 test/e2e/go.mod                                    |  21 +-
 test/e2e/go.sum                                    |  60 ++---
 test/e2e/scaffold/ingress.go                       |   6 +-
 test/e2e/scaffold/scaffold.go                      |   4 +
 test/e2e/suite-chore/consistency.go                |  41 ++++
 .../suite-ingress-features/ingress-class.go        | 223 +++++++++++++++++
 test/e2e/testbackend/go.mod                        |   2 +-
 test/e2e/testbackend/go.sum                        |   3 +-
 27 files changed, 734 insertions(+), 279 deletions(-)
 create mode 100644 docs/en/latest/tutorials/istio-egress-gateway
 copy pkg/{types/labels.go => providers/utils/ingress_class.go} (67%)
 create mode 100644 test/e2e/suite-ingress/suite-ingress-features/ingress-class.go