This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/go_modules/github.com/redhat-developer/service-binding-operator-1.1.1 in repository https://gitbox.apache.org/repos/asf/camel-k.git
discard 1249e9e72 chore(deps): bump github.com/redhat-developer/service-binding-operator 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 5d4e8ec5d chore(deps): bump github.com/redhat-developer/service-binding-operator 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 (1249e9e72) \ N -- N -- N refs/heads/dependabot/go_modules/github.com/redhat-developer/service-binding-operator-1.1.1 (5d4e8ec5d) 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 | 9 + 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/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/util/camel/camel_dependencies.go | 9 +- 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 +- 50 files changed, 860 insertions(+), 505 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%)