You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2023/01/20 14:25:00 UTC

[camel-k] branch dependabot/go_modules/github.com/stoewer/go-strcase-1.2.1 updated (719187123 -> 025b6dc8c)

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

github-bot pushed a change to branch dependabot/go_modules/github.com/stoewer/go-strcase-1.2.1
in repository https://gitbox.apache.org/repos/asf/camel-k.git


    omit 719187123 chore(deps): bump github.com/stoewer/go-strcase from 1.2.0 to 1.2.1
     add e8a716965 chore: changelog automatic update
     add c3ec14262 chore(deps): bump github.com/redhat-developer/service-binding-operator
     add 94044baef chore(doc): cannot use build pod strategy
     add d6e20cc61 chore: nightly resource refresh
     add b536d0f75 chore(build): tiny fix for make codegen
     add 5e8fd7b35 chore(doc): KNative -> Knative in doc and script
     add 2c6189ff0 feat(trait): Add telemetry trait
     add 69d8d7302 feat(e2e): Add Telemetry e2e test
     add b407c5a42 chore(deps): bump github.com/onsi/gomega from 1.22.1 to 1.25.0
     add cdb779a96 Add TIP for optional prop placeholder for non-req param
     add 6dcd9d08a chore: changelog automatic update
     add 1a6119cb5 fix(#3988): Fix flaky E2E test on operator multi tenancy
     add 38f114357 chore: regen defaults.go
     add b7eb44b12 Fix broken link on website
     add 16c39482c chore: changelog automatic update
     add eddca6be0 chore(deps): bump github.com/spf13/viper from 1.14.0 to 1.15.0
     add 025b6dc8c chore(deps): bump github.com/stoewer/go-strcase from 1.2.0 to 1.2.1

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   (719187123)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/github.com/stoewer/go-strcase-1.2.1 (025b6dc8c)

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-common => e2e-telemetry}/action.yml       |  12 +-
 .../{e2e-builder => e2e-telemetry}/exec-tests.sh   |  12 +-
 .github/actions/kamel-cleanup/action.yaml          |   7 +
 .../kamel-cleanup/clean-telemetry-resources.sh     |  26 ++++
 .../kamel-install-otlp-collector/action.yml        | 117 +++++++++++++++
 .github/workflows/{upgrade.yml => telemetry.yml}   |  15 +-
 CHANGELOG.md                                       |   5 +
 addons/addons_test.go                              |  18 +--
 addons/{register_keda.go => register_telemetry.go} |   4 +-
 addons/{tracing => telemetry}/discovery/jaeger.go  |  10 +-
 addons/{tracing => telemetry}/discovery/locator.go |   8 +-
 addons/telemetry/telemetry.go                      | 158 +++++++++++++++++++++
 addons/telemetry/telemetry_test.go                 | 100 +++++++++++++
 addons/{master => telemetry}/test_support.go       |   6 +-
 addons/telemetry/zz_desc_generated.go              |   1 +
 addons/telemetry/zz_generated_doc.go               |   1 +
 addons/tracing/tracing.go                          |   8 +-
 docs/antora.yml                                    |   2 +-
 docs/modules/ROOT/nav.adoc                         |   3 +-
 .../ROOT/pages/contributing/local-development.adoc |   2 +
 docs/modules/ROOT/pages/index.adoc                 |   4 +-
 docs/modules/ROOT/pages/kamelets/kamelets-dev.adoc |   2 +
 docs/modules/traits/pages/telemetry.adoc           |  82 +++++++++++
 docs/modules/traits/pages/tracing.adoc             |   7 +-
 .../{common => telemetry}/files/rest-consumer.yaml |   0
 .../{common => telemetry}/files/rest-producer.yaml |   0
 e2e/global/telemetry/telemetry_test.go             |  73 ++++++++++
 .../install/cli/duplicate_parameters_test.go       |   6 +-
 .../install/cli/files/JavaDuplicateParams.java     |   2 +-
 .../install/operator_id_filtering_test.go          |   3 +-
 e2e/support/test_support.go                        |  34 +++++
 go.mod                                             |  27 ++--
 go.sum                                             |  55 ++++---
 pkg/apis/camel/v1/common_types.go                  |   2 +
 pkg/apis/camel/v1/common_types_support_test.go     |   6 +-
 pkg/resources/resources.go                         |   4 +-
 pkg/trait/util_test.go                             |   4 +-
 resources/traits.yaml                              |  49 ++++++-
 script/Makefile                                    |   6 +-
 script/gen_doc.sh                                  |   1 +
 script/update_docs.sh                              |   4 +-
 41 files changed, 780 insertions(+), 106 deletions(-)
 copy .github/actions/{e2e-common => e2e-telemetry}/action.yml (95%)
 copy .github/actions/{e2e-builder => e2e-telemetry}/exec-tests.sh (93%)
 create mode 100755 .github/actions/kamel-cleanup/clean-telemetry-resources.sh
 create mode 100644 .github/actions/kamel-install-otlp-collector/action.yml
 copy .github/workflows/{upgrade.yml => telemetry.yml} (91%)
 copy addons/{register_keda.go => register_telemetry.go} (89%)
 copy addons/{tracing => telemetry}/discovery/jaeger.go (82%)
 copy addons/{tracing => telemetry}/discovery/locator.go (81%)
 create mode 100644 addons/telemetry/telemetry.go
 create mode 100644 addons/telemetry/telemetry_test.go
 copy addons/{master => telemetry}/test_support.go (88%)
 create mode 100644 addons/telemetry/zz_desc_generated.go
 create mode 100644 addons/telemetry/zz_generated_doc.go
 create mode 100644 docs/modules/traits/pages/telemetry.adoc
 copy e2e/global/{common => telemetry}/files/rest-consumer.yaml (100%)
 copy e2e/global/{common => telemetry}/files/rest-producer.yaml (100%)
 create mode 100644 e2e/global/telemetry/telemetry_test.go