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

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


 discard b2c62913 chore(deps): bump k8s.io/api from 0.25.4 to 0.26.0
     add c0cb74dd docs: add external service tutorial (#1527)
     add a1187272 docs: update Ingress controller httpbin tutorial (#1524)
     add 4208ca7c refactor: unified factory and informer (#1530)
     add f162f711 feat: support for specifying port in external services (#1500)
     add 67d60fe9 docs: add external service discovery tutorial (#1535)
     add 15d881ee chore: 1.6.0-rc1 release (#1537)
     add 9208f582 docs: update APISIX CRD tutorial (#1544)
     add 39cffdc8 docs: update synchronization status check docs (#1548)
     add 60061d05 docs: update tutorial on installing APISIX in Kubernetes 
(#1550)
     add e734b2d7 chore: extra annotations logs (#1549)
     add 1c429936 fix: bad configuration item: apisix-admin-api-version (#1551)
     add b5e89cf6 chore: set v1.6 as protect branch (#1556)
     add 5f98bc17 docs: add match stream route with SNI tutorial (#1543)
     add 949c1da5 chore: admin-api default version v2 (#1558)
     add 695a5e1f docs: add instructions to use Network LoadBalancer (#1557)
     add 634b43f5 feat: sync route crd labels to apisix (#1526)
     add b62be90c chore(deps): bump github.com/onsi/ginkgo/v2 in /test/e2e 
(#1541)
     add b6b6a98f chore(deps): bump k8s.io/api from 0.25.4 to 0.26.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   (b2c62913)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/k8s.io/api-0.26.0 
(b6b6a98f)

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:
 .asf.yaml                                          |   3 +
 .github/workflows/codeql-analysis.yml              |   2 +-
 .github/workflows/dependency-review.yml            |   2 +-
 .github/workflows/e2e-test-ci-v2-cron.yml          |   2 +-
 .github/workflows/e2e-test-ci.yml                  |   2 +-
 .github/workflows/golangci-lint.yml                |   2 +-
 .github/workflows/license-checker.yml              |   2 +-
 .github/workflows/lint-checker.yml                 |   2 +-
 .github/workflows/spell-checker.yml                |   2 +-
 .github/workflows/unit-test-ci.yml                 |   2 +-
 .github/workflows/verify-codegen.yml               |   2 +-
 CHANGELOG.md                                       | 244 +++++++++++++++++++
 Makefile                                           |   6 +-
 conf/config-default.yaml                           |   3 +-
 docs/en/latest/config.json                         |   4 +-
 docs/en/latest/deployments/aws.md                  |  16 ++
 docs/en/latest/tutorials/check-crd-status.md       |  73 +++---
 .../latest/tutorials/external-service-discovery.md |  90 +++++++
 docs/en/latest/tutorials/external-service.md       | 241 +++++++++++++++++++
 .../latest/tutorials/match-stream-route-by-sni.md  | 230 ++++++++++++++++++
 .../proxy-the-httpbin-service-with-ingress.md      |  95 ++++----
 .../latest/tutorials/proxy-the-httpbin-service.md  |  67 +++---
 docs/en/latest/tutorials/the-hard-way.md           | 266 +++++++++++----------
 pkg/config/config.go                               |   4 +
 pkg/config/config_test.go                          |   5 +
 pkg/kube/apisix/apis/config/v2/types.go            |   3 +
 .../apisix/apis/config/v2/zz_generated.deepcopy.go |   5 +
 pkg/providers/apisix/apisix_cluster_config.go      |  22 +-
 pkg/providers/apisix/apisix_consumer.go            |  24 +-
 pkg/providers/apisix/apisix_plugin_config.go       |  27 +--
 pkg/providers/apisix/apisix_route.go               |  32 +--
 pkg/providers/apisix/apisix_tls.go                 |  26 +-
 pkg/providers/apisix/apisix_upstream.go            |  31 +--
 pkg/providers/apisix/provider.go                   |  88 +------
 pkg/providers/apisix/provider_init.go              |  23 +-
 pkg/providers/apisix/translation/apisix_route.go   |   4 +
 .../apisix/translation/apisix_upstream.go          |  40 ++--
 .../apisix/translation/apisix_upstream_test.go     | 127 ++++++++++
 pkg/providers/controller.go                        | 142 +++++++++--
 pkg/providers/gateway/provider.go                  |   3 +-
 pkg/providers/ingress/ingress.go                   |  46 +---
 pkg/providers/ingress/provider.go                  |  34 +--
 .../annotations/upstreamscheme/upstreamscheme.go   |   3 +
 pkg/providers/k8s/configmap/configmap.go           |  14 +-
 pkg/providers/k8s/configmap/provider.go            |   8 +-
 pkg/providers/k8s/namespace/namespace_provider.go  |   2 +-
 pkg/providers/k8s/pod/provider.go                  |   4 -
 pkg/providers/types/types.go                       |  66 +++--
 .../{translation/meta_const.go => utils/schema.go} |  18 +-
 .../meta_const.go => utils/schema_test.go}         |  25 +-
 .../{translation/meta_const.go => utils/scheme.go} |  23 +-
 .../meta_const.go => utils/scheme_test.go}         |  23 +-
 releases/{v1.2.0.toml => v1.5.1.toml}              |  10 +-
 releases/{v1.5.0.toml => v1.6.0.toml}              |   8 +-
 samples/deploy/crd/v1/ApisixUpstream.yaml          |   2 +
 test/e2e/go.mod                                    |   2 +-
 test/e2e/go.sum                                    |   6 +-
 test/e2e/suite-chore/consistency.go                |  48 ++++
 58 files changed, 1642 insertions(+), 664 deletions(-)
 create mode 100644 docs/en/latest/tutorials/external-service-discovery.md
 create mode 100644 docs/en/latest/tutorials/external-service.md
 create mode 100644 docs/en/latest/tutorials/match-stream-route-by-sni.md
 create mode 100644 pkg/providers/apisix/translation/apisix_upstream_test.go
 copy pkg/providers/{translation/meta_const.go => utils/schema.go} (55%)
 copy pkg/providers/{translation/meta_const.go => utils/schema_test.go} (66%)
 copy pkg/providers/{translation/meta_const.go => utils/scheme.go} (60%)
 copy pkg/providers/{translation/meta_const.go => utils/scheme_test.go} (71%)
 copy releases/{v1.2.0.toml => v1.5.1.toml} (85%)
 copy releases/{v1.5.0.toml => v1.6.0.toml} (78%)

Reply via email to