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


 discard b2086d20 chore(deps): bump sigs.k8s.io/controller-runtime from 0.13.0 
to 0.14.6
     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 2f249945 chore(deps): bump sigs.k8s.io/controller-runtime from 0.13.0 
to 0.14.6

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   (b2086d20)
            \
             N -- N -- N   
refs/heads/dependabot/go_modules/sigs.k8s.io/controller-runtime-0.14.6 
(2f249945)

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                         |   1 +
 docs/en/latest/references/apisix_upstream.md       |   4 +
 go.mod                                             |   2 +-
 go.sum                                             |   4 +-
 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 +-
 pkg/providers/ingress/ingress.go                   |   6 +-
 pkg/providers/k8s/configmap/configmap.go           |   4 +-
 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/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 +--
 69 files changed, 2161 insertions(+), 708 deletions(-)
 create mode 100644 docs/en/latest/concepts/apisix_plugin_config.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

Reply via email to