This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to tag v2.6.0-nightly in repository https://gitbox.apache.org/repos/asf/camel-k.git
*** WARNING: tag v2.6.0-nightly was modified! *** from aca47f9a4 (commit) to ac3319266 (commit) discard aca47f9a4 chore(ci): v2.6.0-nightly release updates add ca21806ca chore: change deprecated quarkus property add 02891fe96 chore(doc): plain quarkus runtime provider add 01c4e3303 chore(doc): gitops tooling add beb6c828f chore(addons): deprecate Keda add 6f84747ba chore(addons): move master into traits add a91f56963 feat: support Error Handler add 00c939584 Revert "[kustomize] fix deprecated patch fields" new ac3319266 chore(ci): v2.6.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 (aca47f9a4) \ N -- N -- N refs/tags/v2.6.0-nightly (ac3319266) 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: addons/addons_test.go | 77 ------ addons/keda/keda.go | 1 + addons/master/client_test.go | 299 --------------------- addons/master/test_support.go | 21 -- addons/master/zz_desc_generated.go | 1 - addons/master/zz_generated_doc.go | 1 - addons/register_master.go | 27 -- docs/charts/camel-k-2.6.0-nightly.tgz | Bin 234138 -> 236475 bytes docs/charts/index.yaml | 6 +- docs/modules/ROOT/pages/architecture/runtime.adoc | 21 +- docs/modules/ROOT/pages/running/promoting.adoc | 82 ++++++ docs/modules/ROOT/pages/running/running.adoc | 26 ++ docs/modules/ROOT/partials/apis/camel-k-crds.adoc | 91 ++++++- docs/modules/traits/pages/keda.adoc | 2 + helm/camel-k/crds/camel-k-crds.yaml | 267 ++++++++++++++++-- pkg/apis/camel/v1/common_types.go | 4 +- pkg/apis/camel/v1/trait/master.go | 46 ++++ pkg/apis/camel/v1/trait/zz_generated.deepcopy.go | 46 ++++ pkg/apis/camel/v1/zz_generated.deepcopy.go | 10 +- pkg/builder/quarkus.go | 2 +- pkg/builder/quarkus_test.go | 2 +- pkg/builder/runtime_support.go | 4 +- .../camel/applyconfiguration/camel/v1/traits.go | 18 +- .../camel.apache.org_integrationplatforms.yaml | 76 +++++- .../camel.apache.org_integrationprofiles.yaml | 76 +++++- .../crd/bases/camel.apache.org_integrations.yaml | 76 +++++- .../config/crd/bases/camel.apache.org_pipes.yaml | 39 ++- .../bases/camel-k.clusterserviceversion.yaml | 2 +- pkg/resources/config/manifests/kustomization.yaml | 6 +- pkg/resources/config/samples/kustomization.yaml | 10 +- pkg/resources/config/scorecard/kustomization.yaml | 4 +- pkg/trait/knative.go | 1 + {addons/master => pkg/trait}/master.go | 53 +--- {addons/master => pkg/trait}/master_test.go | 30 +-- pkg/trait/quarkus.go | 4 +- pkg/trait/trait_register.go | 1 + pkg/util/source/inspector.go | 18 +- pkg/util/source/inspector_java_source_test.go | 21 ++ pkg/util/source/inspector_xml.go | 16 +- pkg/util/source/inspector_xml_test.go | 19 ++ pkg/util/source/inspector_yaml.go | 16 +- pkg/util/source/inspector_yaml_test.go | 54 ++++ script/camel-k-runtime-archetype/pom.xml | 2 +- script/offline_dependencies.sh | 4 +- 44 files changed, 975 insertions(+), 607 deletions(-) delete mode 100644 addons/addons_test.go delete mode 100644 addons/master/client_test.go delete mode 100644 addons/master/test_support.go delete mode 100644 addons/master/zz_desc_generated.go delete mode 100644 addons/master/zz_generated_doc.go delete mode 100644 addons/register_master.go create mode 100644 pkg/apis/camel/v1/trait/master.go rename {addons/master => pkg/trait}/master.go (71%) rename {addons/master => pkg/trait}/master_test.go (93%)