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/common-0.36.0 in repository https://gitbox.apache.org/repos/asf/camel-k.git
discard e0e077523 chore(deps): bump github.com/prometheus/common from 0.35.0 to 0.36.0 add e4f8878c2 Fix CLI test - update file name path add d0de5ab35 Updated CHANGELOG.md add ee66f3d2a fix(build): `make generate-doc` outputs non-deterministic resources/traits.yaml add 37cba2f05 Updated CHANGELOG.md add c3b9c9be3 Handle OCP3 in e2e kustomize install tests add 36439e167 fix(cli): `kamel local build` doesn't support same dependency notation add 962c75e2a feat(build): go 1.17 min version add d394e915f fix(build): hack to make codegen works add f1349e4f1 fix: make code generator work add 840d98b75 fix(ci): go 1.17 installation add 2699c3af4 chore: codegen download refactoring add f81713c67 chore: add 1.17 installation to workflows add 88ebd002c [TEST] Add kamel debug test add ce2e4ec4a chore: small updates on Makefile add 91b9d5d49 Updated CHANGELOG.md add f1b7f1df6 fix(doc): fix camel-website build add 82a52eda8 chore(deps): bump github.com/prometheus/common from 0.35.0 to 0.36.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 (e0e077523) \ N -- N -- N refs/heads/dependabot/go_modules/github.com/prometheus/common-0.36.0 (82a52eda8) 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: .../actions/kamel-config-cluster-ocp3/action.yml | 2 +- .github/actions/kamel-prepare-env/action.yml | 2 +- .github/workflows/build.yml | 1 - .github/workflows/builder.yml | 1 - .github/workflows/common.yml | 1 - .github/workflows/install.yml | 1 - .github/workflows/knative.yml | 1 - .github/workflows/openshift.yml | 22 +- .github/workflows/release.yml | 4 +- .github/workflows/upgrade.yml | 1 - .github/workflows/validate.yml | 4 +- .github/workflows/verify-generate.yml | 5 +- CHANGELOG.md | 13 + cmd/util/doc-gen/generators/generators.go | 8 +- cmd/util/doc-gen/generators/traitdocgen.go | 11 +- cmd/util/doc-gen/generators/traitmetadatagen.go | 20 +- docs/modules/ROOT/pages/architecture/operator.adoc | 2 +- docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 304 +++++++-------- e2e/local/files/dependency.groovy | 2 +- e2e/local/local_build_test.go | 6 +- e2e/local/local_run_test.go | 25 ++ e2e/namespace/install/cli/debug_test.go | 117 ++++++ e2e/namespace/install/cli/delete_test.go | 2 +- e2e/namespace/install/cli/run_test.go | 4 +- e2e/namespace/install/kustomize/common.go | 24 +- e2e/namespace/install/kustomize/operator_test.go | 22 ++ e2e/namespace/install/kustomize/setup_test.go | 8 + go.mod | 100 ++++- install/Makefile | 14 +- install/script/check_crd_api_support.sh | 1 + pkg/apis/camel/go.mod | 21 +- pkg/apis/camel/v1/integration_types_support.go | 25 +- .../camel/v1/integration_types_support_test.go | 7 + pkg/client/camel/go.mod | 34 +- pkg/client/camel/go.sum | 23 -- pkg/cmd/local.go | 48 ++- pkg/cmd/local_build.go | 48 +-- pkg/cmd/local_build_test.go | 38 +- pkg/cmd/local_inspect.go | 35 +- pkg/cmd/local_inspect_test.go | 40 +- pkg/cmd/local_run.go | 57 +-- pkg/cmd/local_run_test.go | 66 ++-- pkg/cmd/{util_dependencies.go => local_util.go} | 45 +-- ...til_dependencies_test.go => local_util_test.go} | 0 pkg/cmd/root.go | 5 +- pkg/cmd/run.go | 4 +- pkg/kamelet/repository/go.mod | 37 +- pkg/kamelet/repository/go.sum | 20 - pkg/resources/resources.go | 2 +- pkg/util/camel/camel_dependencies.go | 9 +- resources/traits.yaml | 430 ++++++++++----------- script/Makefile | 52 +-- ...{check_platform.sh => check_crd_api_support.sh} | 57 +-- script/gen_client.sh | 7 +- script/gen_client_strimzi.sh | 2 +- script/gen_crd.sh | 2 +- script/gen_crd/gen_crd_api.sh | 4 +- 57 files changed, 1112 insertions(+), 734 deletions(-) create mode 100644 e2e/namespace/install/cli/debug_test.go create mode 120000 install/script/check_crd_api_support.sh rename pkg/cmd/{util_dependencies.go => local_util.go} (91%) rename pkg/cmd/{util_dependencies_test.go => local_util_test.go} (100%) copy script/{check_platform.sh => check_crd_api_support.sh} (58%)