This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to tag v2.5.0-nightly in repository https://gitbox.apache.org/repos/asf/camel-k.git
*** WARNING: tag v2.5.0-nightly was modified! *** from dc91f2492 (commit) to 4e894b019 (commit) discard dc91f2492 chore(ci): v2.5.0-nightly release updates add 24b34b7d7 fix(e2e): Get the most recent pod in e2e tests add fc91c3eda feat(api): Kamelet version parameter add b82257944 feat(trait): support kamelet versions in Integration add 8f9b49dc0 feat: support kamelet version in Pipe add d871da986 chore: nightly automatic updates new 4e894b019 chore(ci): v2.5.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 (dc91f2492) \ N -- N -- N refs/tags/v2.5.0-nightly (4e894b019) 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: CHANGELOG.md | 8 +- README.adoc | 2 +- addons/keda/keda_test.go | 56 +- docs/charts/camel-k-2.5.0-nightly.tgz | Bin 272256 -> 274124 bytes docs/charts/index.yaml | 6 +- docs/modules/ROOT/pages/kamelets/kamelets-dev.adoc | 46 ++ .../modules/ROOT/pages/kamelets/kamelets-user.adoc | 15 + docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 43 +- .../files/.camel-jbang/camel-jbang-run.properties | 25 + .../traits/files/kamelet-it-main.yaml} | 5 +- .../traits/files/kamelet-it-v1.yaml} | 5 +- .../traits/files/my-timer-source.kamelet.yaml | 60 ++- e2e/common/traits/kamelet_test.go | 25 +- e2e/support/test_support.go | 13 +- helm/camel-k/crds/camel-k-crds.yaml | 593 +++++++++++++++++++++ pkg/apis/camel/v1/kamelet_types.go | 11 + pkg/apis/camel/v1/kamelet_types_support.go | 28 +- pkg/apis/camel/v1/zz_generated.deepcopy.go | 29 +- pkg/apis/camel/v1alpha1/kamelet_types_support.go | 10 - .../applyconfiguration/camel/v1/kameletspec.go | 22 +- .../v1/{kameletspec.go => kameletspecbase.go} | 22 +- pkg/client/camel/applyconfiguration/utils.go | 2 + pkg/controller/pipe/initialize_test.go | 42 +- .../crd/bases/camel.apache.org_kamelets.yaml | 593 +++++++++++++++++++++ .../bases/camel-k.clusterserviceversion.yaml | 2 +- pkg/trait/kamelets.go | 72 ++- pkg/trait/kamelets_support_test.go | 46 +- pkg/trait/kamelets_test.go | 302 ++++++----- pkg/util/bindings/bindings_test.go | 18 + pkg/util/bindings/kamelet.go | 26 +- pkg/util/source/kamelet.go | 8 + .../util/source/kamelet_test.go | 19 +- 32 files changed, 1847 insertions(+), 307 deletions(-) create mode 100644 e2e/common/traits/files/.camel-jbang/camel-jbang-run.properties copy e2e/{knative/files/knativech2.yaml => common/traits/files/kamelet-it-main.yaml} (93%) copy e2e/{knative/files/knativegetpost2.yaml => common/traits/files/kamelet-it-v1.yaml} (92%) copy pkg/resources/config/samples/bases/camel_v1_kamelet.yaml => e2e/common/traits/files/my-timer-source.kamelet.yaml (51%) copy pkg/client/camel/applyconfiguration/camel/v1/{kameletspec.go => kameletspecbase.go} (77%) copy e2e/support/util/structured_log_test.go => pkg/util/source/kamelet_test.go (58%)