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 2022/11/25 22:37:49 UTC

[apisix-ingress-controller] branch dependabot/go_modules/github.com/prometheus/client_model-0.3.0 updated (c49239f3 -> d188f667)

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

github-bot pushed a change to branch dependabot/go_modules/github.com/prometheus/client_model-0.3.0
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


 discard c49239f3 chore(deps): bump github.com/prometheus/client_model from 0.2.0 to 0.3.0
     add 8c3515dc chore(deps): bump github.com/onsi/ginkgo/v2 in /test/e2e (#1454)
     add 51c07453 docs: update API references (#1459)
     add a318f499 docs: update ApisixUpstream reference (#1450)
     add 6ec804f4  feat(makefile): allow to custom registry port for `make kind-up` (#1417)
     add 47906a53 docs: update ApisixRoute/v2 reference (#1423)
     add 632d5c12 feat: support HTTPRequestMirrorFilter in HTTPRoute (#1461)
     add d610041d chore(deps): bump k8s.io/client-go from 0.25.3 to 0.25.4 in /test/e2e (#1453)
     add d95ae083 docs: Add more descriptions and examples in the prometheus doc (#1467)
     add be7edf6b feat: support apisix v3 admin api (#1449)
     add e6eb3bf2 feat: support variable in ApisixRoute exprs scope (#1466)
     add 803fdeb1 chore(deps): bump k8s.io/client-go from 0.25.3 to 0.25.4 (#1458)
     add ec88b49c chore(deps): bump k8s.io/code-generator from 0.25.3 to 0.25.4 (#1456)
     add c8d3bd52 feat: add support for integrate with DP service discovery (#1465)
     add d188f667 chore(deps): bump github.com/prometheus/client_model from 0.2.0 to 0.3.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   (c49239f3)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/github.com/prometheus/client_model-0.3.0 (d188f667)

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:
 .../{e2e-test-ci.yml => e2e-test-ci-v2-cron.yml}   |  24 +-
 Makefile                                           |  21 +-
 cmd/ingress/ingress.go                             |   1 +
 conf/config-default.yaml                           |   1 +
 .../latest/references/apisix_cluster_config_v2.md  |  34 ++-
 .../references/apisix_cluster_config_v2beta3.md    |  34 ++-
 .../en/latest/references/apisix_pluginconfig_v2.md |  22 +-
 .../references/apisix_pluginconfig_v2beta3.md      |  22 +-
 docs/en/latest/references/apisix_route_v2.md       | 153 ++++++-----
 docs/en/latest/references/apisix_route_v2beta3.md  | 130 ++++-----
 docs/en/latest/references/apisix_tls_v2.md         |  36 ++-
 docs/en/latest/references/apisix_tls_v2beta3.md    |  36 ++-
 docs/en/latest/references/apisix_upstream.md       | 110 ++++----
 ...cess-Apache-APISIX-Prometheus-Metrics-on-k8s.md | 102 ++++++-
 go.mod                                             |   8 +-
 go.sum                                             |  16 +-
 pkg/api/server.go                                  |   1 +
 pkg/api/validation/utils.go                        |   2 +-
 pkg/apisix/apisix.go                               |  12 +-
 pkg/apisix/cluster.go                              |  82 ++++--
 pkg/apisix/cluster_test.go                         |   4 +-
 pkg/apisix/consumer.go                             |  12 +-
 pkg/apisix/global_rule.go                          |  12 +-
 pkg/apisix/plugin_metadata.go                      |  10 +-
 pkg/apisix/pluginconfig.go                         |  12 +-
 pkg/apisix/resource.go                             |  14 +-
 pkg/apisix/route.go                                |  12 +-
 pkg/apisix/ssl.go                                  |  17 +-
 pkg/apisix/stream_route.go                         |  12 +-
 pkg/apisix/upstream.go                             |  10 +-
 pkg/apisix/upstreamservicerelation.go              |   4 +
 pkg/config/config.go                               |   2 +
 pkg/kube/apisix/apis/config/v2/types.go            |  11 +
 .../apisix/apis/config/v2/zz_generated.deepcopy.go |  28 ++
 pkg/kube/apisix/const/const.go                     |   2 +
 pkg/kube/apisix_cluster_config.go                  |   2 +-
 pkg/providers/apisix/apisix_cluster_config.go      |   2 +-
 pkg/providers/apisix/apisix_upstream.go            | 135 +++++-----
 pkg/providers/apisix/translation/apisix_route.go   |  18 +-
 .../apisix/translation/apisix_upstream.go          |  18 +-
 pkg/providers/controller.go                        |   3 +-
 .../gateway/translation/gateway_httproute.go       |  32 ++-
 pkg/providers/k8s/endpoint/endpointslice.go        |   2 +-
 pkg/providers/translation/apisix_upstream.go       |  14 +
 pkg/providers/types/types.go                       |   4 +
 pkg/types/apisix/v1/plugin_types.go                |   6 +
 pkg/types/apisix/v1/types.go                       |  82 ++++++
 pkg/types/apisix/v1/zz_generated.deepcopy.go       |  23 ++
 samples/deploy/crd/v1/ApisixRoute.yaml             |   3 +
 samples/deploy/crd/v1/ApisixUpstream.yaml          |  11 +
 test/e2e/README.md                                 |  12 +
 test/e2e/go.mod                                    |  10 +-
 test/e2e/go.sum                                    |  22 +-
 test/e2e/scaffold/apisix.go                        |   6 +-
 test/e2e/scaffold/cluster_config.go                |   2 +-
 test/e2e/scaffold/etcd.go                          |   4 +-
 test/e2e/scaffold/httpbin.go                       |   6 +-
 test/e2e/scaffold/ingress.go                       |  22 +-
 test/e2e/scaffold/k8s.go                           |  52 ++--
 test/e2e/scaffold/scaffold.go                      |  29 +-
 test/e2e/scaffold/ssl.go                           |  10 +-
 test/e2e/scaffold/test_backend.go                  |   8 +-
 test/e2e/scaffold/upstream_tls.go                  |   4 +-
 test/e2e/suite-features/external-sd.go             | 286 ++++++++++++++++++++
 test/e2e/suite-features/route_match_exprs.go       | 299 +++++++++++++++++++++
 test/e2e/suite-gateway/gateway_httproute.go        |  93 ++++++-
 ...onfig.yaml => apisix-gw-config-v3-with-sd.yaml} |  38 ++-
 ...six-gw-config.yaml => apisix-gw-config-v3.yaml} |  31 ++-
 ...w-config.yaml => apisix-gw-config-with-sd.yaml} |   7 +
 utils/kind-with-registry.sh                        |   4 +-
 70 files changed, 1766 insertions(+), 543 deletions(-)
 copy .github/workflows/{e2e-test-ci.yml => e2e-test-ci-v2-cron.yml} (89%)
 create mode 100644 test/e2e/suite-features/external-sd.go
 copy test/e2e/testdata/{apisix-gw-config.yaml => apisix-gw-config-v3-with-sd.yaml} (64%)
 copy test/e2e/testdata/{apisix-gw-config.yaml => apisix-gw-config-v3.yaml} (66%)
 copy test/e2e/testdata/{apisix-gw-config.yaml => apisix-gw-config-with-sd.yaml} (83%)