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 45ab9b286 (commit) to dc91f2492 (commit) discard 45ab9b286 chore(ci): v2.5.0-nightly release updates add 8b9571f70 chore(deps): bump org.apache.maven.plugins:maven-surefire-plugin add 515c7629b feat(api): Kit-less Integration add 422bba510 feat(cli): promote kitless add e0a3931c5 chore: nightly automatic updates new dc91f2492 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 (45ab9b286) \ N -- N -- N refs/tags/v2.5.0-nightly (dc91f2492) 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 | 5 +- README.adoc | 2 +- addons/telemetry/telemetry.go | 4 - docs/charts/camel-k-2.5.0-nightly.tgz | Bin 272256 -> 272256 bytes docs/charts/index.yaml | 6 +- .../modules/ROOT/pages/running/camel-runtimes.adoc | 8 +- docs/modules/ROOT/pages/running/promoting.adoc | 10 +- e2e/advanced/tekton_test.go | 5 - e2e/install/upgrade/upgrade_test.go | 10 +- e2e/native/native_test.go | 3 - e2e/support/test_support.go | 22 +- java/crds/pom.xml | 2 +- pkg/apis/camel/v1/integration_types_support.go | 10 + .../camel/v1/integration_types_support_test.go | 24 ++ pkg/apis/camel/v1/integrationkit_types.go | 1 + pkg/apis/camel/v1/integrationkit_types_support.go | 8 +- .../camel/v1/integrationkit_types_support_test.go | 13 +- pkg/builder/image.go | 7 +- pkg/builder/image_test.go | 13 +- pkg/cmd/promote.go | 159 ++++----- pkg/cmd/promote_test.go | 221 ++----------- pkg/cmd/run.go | 8 - pkg/controller/integration/build_kit.go | 30 +- pkg/controller/integration/build_kit_test.go | 358 +++++++++++++++++++++ pkg/controller/integration/initialize.go | 5 + pkg/controller/integration/kits.go | 16 +- pkg/controller/integration/monitor.go | 78 ++--- pkg/controller/integrationkit/error.go | 1 + .../integrationkit/integrationkit_controller.go | 1 + pkg/controller/integrationkit/monitor.go | 14 +- .../bases/camel-k.clusterserviceversion.yaml | 2 +- pkg/trait/builder_test.go | 7 +- pkg/trait/camel.go | 30 +- pkg/trait/camel_test.go | 26 +- pkg/trait/container.go | 39 +-- pkg/trait/container_probes_test.go | 1 + pkg/trait/container_test.go | 47 ++- pkg/trait/cron.go | 3 - pkg/trait/istio_test.go | 7 +- pkg/trait/jvm.go | 129 +++++--- pkg/trait/jvm_test.go | 33 +- pkg/trait/quarkus.go | 56 ++-- pkg/trait/quarkus_test.go | 20 ++ pkg/trait/service_test.go | 21 +- pkg/trait/trait_types_test.go | 29 +- pkg/util/camel/camel_runtime.go | 4 +- pkg/util/kubernetes/camel.go | 3 + 47 files changed, 858 insertions(+), 643 deletions(-) create mode 100644 pkg/controller/integration/build_kit_test.go