This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to tag v2.7.0-nightly in repository https://gitbox.apache.org/repos/asf/camel-k.git
*** WARNING: tag v2.7.0-nightly was modified! *** from 5e7712399 (commit) to 96195b392 (commit) discard 5e7712399 chore(ci): v2.7.0-nightly release updates add a51d0ee59 feat(pipe): bind to Integration, Pipe, Services add 8db8ed47e chore(deps): bump knative.dev/eventing from 0.44.5 to 0.45.0 add 03708dd29 chore: nightly automatic updates new 96195b392 chore(ci): v2.7.0-nightly release updates This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the tag 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 (5e7712399) \ N -- N -- N refs/tags/v2.7.0-nightly (96195b392) 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. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: README.adoc | 2 +- docs/antora.yml | 2 +- docs/charts/camel-k-2.7.0-nightly.tgz | Bin 239195 -> 239199 bytes docs/charts/index.yaml | 6 +- docs/modules/ROOT/pages/concepts/overview.adoc | 2 +- docs/modules/ROOT/pages/pipes/pipes.adoc | 27 +++ .../{cli/log_test.go => binding/binding_test.go} | 38 +-- .../hello.yaml} | 9 +- .../binding/it-binding.yaml} | 18 +- go.mod | 20 +- go.sum | 66 ++--- pkg/controller/pipe/initialize_test.go | 32 +-- .../bases/camel-k.clusterserviceversion.yaml | 2 +- pkg/util/bindings/camel_uri_test.go | 85 +++++++ pkg/util/bindings/knative_uri_test.go | 100 ++++++++ pkg/util/bindings/service_ref.go | 102 ++++++++ pkg/util/bindings/service_ref_test.go | 269 +++++++++++++++++++++ pkg/util/kubernetes/lookup.go | 24 ++ .../util/kubernetes/service.go | 25 +- 19 files changed, 716 insertions(+), 113 deletions(-) copy e2e/common/{cli/log_test.go => binding/binding_test.go} (51%) copy e2e/common/{config/files/timer-kamelet-integration-inlined-configuration-01.yaml => binding/hello.yaml} (85%) copy e2e/{kafka/files/timer-to-kafka.yaml => common/binding/it-binding.yaml} (86%) create mode 100644 pkg/util/bindings/camel_uri_test.go create mode 100644 pkg/util/bindings/knative_uri_test.go create mode 100644 pkg/util/bindings/service_ref.go create mode 100644 pkg/util/bindings/service_ref_test.go copy e2e/native/native_test_support.go => pkg/util/kubernetes/service.go (64%)