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/11 01:25:26 UTC

[apisix-ingress-controller] branch dependabot/go_modules/go.uber.org/multierr-1.11.0 updated (8799616e -> 235889f5)

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

github-bot pushed a change to branch dependabot/go_modules/go.uber.org/multierr-1.11.0
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


    omit 8799616e chore(deps): bump go.uber.org/multierr from 1.9.0 to 1.11.0
     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 bacb8f81 feat: sync apisix upstream labels (#1553)
     add eb019076 docs: describe how to generate secret from cert file (#1769)
     add 97f9ef90 feat: support webhook validate plugin (#1355)
     add e6dbaa7a fix: malformed URL created in schemaClient (#1772)
     add aad3ef6f e2e: ingress annotations does not need to use v2beta3 (#1503)
     add adf97572 chore(deps): bump github.com/spf13/cobra from 1.6.1 to 1.7.0 (#1773)
     add 235889f5 chore(deps): bump go.uber.org/multierr from 1.9.0 to 1.11.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   (8799616e)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/go.uber.org/multierr-1.11.0 (235889f5)

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:
 Makefile                                           |   3 +
 cmd/ingress/ingress.go                             |   4 +-
 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 +
 docs/en/latest/tutorials/mtls.md                   |  57 ++-
 go.mod                                             |   6 +-
 go.sum                                             |  12 +-
 pkg/api/router/webhook.go                          |  10 +-
 pkg/api/server.go                                  |  50 +--
 pkg/api/validation/apisix_consumer.go              |  77 ----
 .../validation/apisix_plugin_config.go}            |  21 +-
 pkg/api/validation/apisix_route.go                 | 115 +-----
 pkg/api/validation/apisix_route_test.go            |   4 +-
 pkg/api/validation/apisix_tls.go                   |  77 ----
 pkg/api/validation/apisix_upstream.go              |  77 ----
 pkg/api/validation/utils.go                        |  28 +-
 pkg/api/validation/validator.go                    | 100 ++++++
 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.go                               |   2 +-
 pkg/apisix/schema_test.go                          |  13 +-
 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                               |  66 ++--
 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 +-
 .../apisix/translation/apisix_upstream.go          |   3 +
 .../{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/admission/webhook-certs.yaml        |   9 +-
 samples/deploy/admission/webhook-registration.yaml |  32 +-
 samples/deploy/admission/webhook-service.yaml      |   4 +-
 samples/deploy/configmap/apisix-ingress-cm.yaml    |   2 +-
 test/e2e/e2e.go                                    |  16 +-
 test/e2e/scaffold/ingress.go                       | 212 ++++++-----
 test/e2e/scaffold/k8s.go                           |  30 ++
 test/e2e/scaffold/scaffold.go                      |  91 ++---
 test/e2e/scaffold/ssl.go                           |  46 +++
 test/e2e/suite-annotations/svc_namespace.go        | 389 ++-------------------
 test/e2e/suite-chore/admin_api.go                  |   4 +-
 test/e2e/suite-chore/consistency.go                |  39 +++
 test/e2e/suite-features/sync-comparison.go         | 183 ++++++++++
 test/e2e/suite-features/sync-delay.go              | 325 +++++++++++++++++
 .../suite-ingress-features/resourcesync.go         |   4 +-
 .../suite-ingress-features/webhook.go              | 165 +++++++--
 .../suite-ingress/suite-ingress-resource/stream.go |  48 +--
 test/e2e/testdata/webhook-create-cert.sh           | 145 ++++++++
 test/e2e/testdata/webhook-create-signed-cert.sh    | 152 --------
 91 files changed, 2852 insertions(+), 1816 deletions(-)
 create mode 100644 docs/en/latest/concepts/apisix_plugin_config.md
 delete mode 100644 pkg/api/validation/apisix_consumer.go
 copy pkg/{types/event_test.go => api/validation/apisix_plugin_config.go} (65%)
 delete mode 100644 pkg/api/validation/apisix_tls.go
 delete mode 100644 pkg/api/validation/apisix_upstream.go
 create mode 100644 pkg/api/validation/validator.go
 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
 create mode 100644 test/e2e/testdata/webhook-create-cert.sh
 delete mode 100644 test/e2e/testdata/webhook-create-signed-cert.sh