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/04/04 05:42:23 UTC

[apisix-ingress-controller] branch dependabot/go_modules/sigs.k8s.io/gateway-api-0.6.2 updated (5baaeee7 -> 8da911c2)

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-0.6.2
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


    omit 5baaeee7 chore(deps): bump sigs.k8s.io/gateway-api from 0.6.0 to 0.6.2
     add 0ad8eaad docs: add tutorial on using custom Plugins (#1745)
     add 379e92ee chore(deps): bump golang.org/x/net from 0.7.0 to 0.8.0 (#1725)
     add 405b6fb2 chore(deps): bump github.com/onsi/ginkgo/v2 in /test/e2e (#1746)
     add 7ccf5317 fix: missing upstream name in gateway-api routes (#1754)
     add e0f4cc23 docs: added Docker to prerequisite of Installation with Kind  (#1751)
     add 99b66340 docs: Deploy to OpenShift (#1761)
     add 0602314d docs: add traffic-split plugin usage (#1696)
     add 2cb99b89 feat: support comparison in resource sync (#1742)
     add 045f5e70 docs: Add lost entries of `discovery` in Upstream's reference doc. (#1766)
     add b316705b docs: add ApisixPluginConfig and update examples (#1752)
     add 38710e71 chore(deps): bump k8s.io/code-generator from 0.26.2 to 0.26.3 (#1764)
     add 8da911c2 chore(deps): bump sigs.k8s.io/gateway-api from 0.6.0 to 0.6.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   (5baaeee7)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/sigs.k8s.io/gateway-api-0.6.2 (8da911c2)

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                             |   3 +-
 conf/config-default.yaml                           |   2 +-
 docs/en/latest/concepts/apisix_plugin_config.md    |  55 ++++
 docs/en/latest/concepts/apisix_route.md            |  34 ++-
 docs/en/latest/config.json                         |   2 +
 docs/en/latest/deployments/kind.md                 |   1 +
 .../latest/deployments/{kind.md => openshift.md}   |  31 +-
 docs/en/latest/plugins/traffic-split.md            | 196 +++++++++++++
 docs/en/latest/references/apisix_upstream.md       |   4 +
 docs/en/latest/tutorials/using-custom-plugins.md   | 223 ++++++++++++++
 go.mod                                             |  10 +-
 go.sum                                             |  20 +-
 pkg/apisix/apisix.go                               | 103 +++----
 pkg/apisix/cache/cache.go                          |   6 +-
 pkg/apisix/cache/noop_db.go                        | 174 +++++++++++
 pkg/apisix/cluster.go                              | 278 +++++++++++++++++-
 pkg/apisix/cluster_test.go                         |  16 +-
 pkg/apisix/consumer.go                             |  60 ++--
 pkg/apisix/consumer_test.go                        |  17 +-
 pkg/apisix/global_rule.go                          |  72 ++---
 pkg/apisix/global_rule_test.go                     |  17 +-
 pkg/apisix/nonexistentclient.go                    |  30 +-
 pkg/apisix/noop.go                                 |   4 +-
 pkg/apisix/plugin_metadata.go                      |   7 +-
 pkg/apisix/plugin_test.go                          |  11 +-
 pkg/apisix/pluginconfig.go                         |  66 ++---
 pkg/apisix/pluginconfig_test.go                    |  17 +-
 pkg/apisix/route.go                                |  62 ++--
 pkg/apisix/route_test.go                           |  17 +-
 pkg/apisix/schema_test.go                          |  11 +-
 pkg/apisix/ssl.go                                  |  60 ++--
 pkg/apisix/ssl_test.go                             |  17 +-
 pkg/apisix/stream_route.go                         |  61 ++--
 pkg/apisix/stream_route_test.go                    |  17 +-
 pkg/apisix/upstream.go                             |  66 ++---
 pkg/apisix/upstream_test.go                        |   7 +-
 pkg/apisix/upstreamservicerelation.go              |   2 +-
 pkg/apisix/upstreamservicerelation_test.go         |  28 +-
 pkg/apisix/utils.go                                | 243 +++++++++++++++
 pkg/config/config.go                               |  64 ++--
 pkg/config/config_test.go                          |  65 +++--
 pkg/metrics/prometheus.go                          |  28 +-
 pkg/metrics/prometheus_test.go                     |  20 +-
 pkg/providers/apisix/apisix_cluster_config.go      |  36 ++-
 pkg/providers/apisix/apisix_consumer.go            |  24 +-
 pkg/providers/apisix/apisix_global_rule.go         |  33 ++-
 pkg/providers/apisix/apisix_plugin_config.go       |  28 +-
 pkg/providers/apisix/apisix_route.go               |  29 +-
 pkg/providers/apisix/apisix_tls.go                 |  25 +-
 pkg/providers/apisix/apisix_upstream.go            |  43 ++-
 pkg/providers/apisix/provider.go                   |  34 ++-
 .../{translation/meta_const.go => apisix/utils.go} |  18 +-
 pkg/providers/controller.go                        |  23 +-
 pkg/providers/gateway/gateway_httproute.go         |   2 +-
 pkg/providers/gateway/gateway_tcproute.go          |   2 +-
 pkg/providers/gateway/gateway_tlsroute.go          |   2 +-
 pkg/providers/gateway/gateway_udproute.go          |   2 +-
 .../gateway/translation/gateway_httproute.go       |   9 +-
 .../gateway/translation/gateway_httproute_test.go  | 318 +++++++++++++-------
 .../gateway/translation/gateway_tlsroute.go        |   4 +-
 .../gateway/translation/gateway_udproute.go        |   6 +-
 pkg/providers/ingress/ingress.go                   |   6 +-
 pkg/providers/k8s/configmap/configmap.go           |   4 +-
 pkg/providers/k8s/secret.go                        |   2 +-
 pkg/providers/types/types.go                       |  24 +-
 pkg/providers/utils/manifest.go                    |  31 +-
 pkg/types/event.go                                 |  14 +
 samples/deploy/configmap/apisix-ingress-cm.yaml    |   2 +-
 test/e2e/e2e.go                                    |  16 +-
 test/e2e/go.mod                                    |   4 +-
 test/e2e/go.sum                                    |   9 +-
 test/e2e/scaffold/ingress.go                       |  21 +-
 test/e2e/scaffold/k8s.go                           |  30 ++
 test/e2e/scaffold/scaffold.go                      |  59 ++--
 test/e2e/scaffold/ssl.go                           |  46 +++
 test/e2e/suite-chore/admin_api.go                  |   4 +-
 test/e2e/suite-features/sync-comparison.go         | 183 ++++++++++++
 test/e2e/suite-features/sync-delay.go              | 325 +++++++++++++++++++++
 .../suite-ingress-features/resourcesync.go         |   4 +-
 .../suite-ingress/suite-ingress-resource/stream.go |  48 +--
 80 files changed, 2835 insertions(+), 862 deletions(-)
 create mode 100644 docs/en/latest/concepts/apisix_plugin_config.md
 copy docs/en/latest/deployments/{kind.md => openshift.md} (73%)
 create mode 100644 docs/en/latest/plugins/traffic-split.md
 create mode 100644 docs/en/latest/tutorials/using-custom-plugins.md
 create mode 100644 pkg/apisix/cache/noop_db.go
 create mode 100644 pkg/apisix/utils.go
 copy pkg/providers/{translation/meta_const.go => apisix/utils.go} (76%)
 create mode 100644 test/e2e/suite-features/sync-comparison.go
 create mode 100644 test/e2e/suite-features/sync-delay.go