You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2023/07/26 10:50:16 UTC

[camel-k] branch dependabot/go_modules/knative.dev/serving-0.38.0 updated (a94876c8c -> 997e080ef)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/go_modules/knative.dev/serving-0.38.0
in repository https://gitbox.apache.org/repos/asf/camel-k.git


 discard a94876c8c chore(deps): bump knative.dev/serving from 0.37.2 to 0.38.0
     add b41287ac2 feat(trait): Add maven profile to Integration in builder trait
     add c45027ad5 chore(ci): smoke test subset only
     add 25c83ad6e chore(ci): check against latest available runtime
     add 1bdf6c2c8 fix(doc): Add openshift builder image re-creation as known issue
     add c605ef722 chore(deps): bump knative.dev/eventing from 0.37.1 to 0.37.2
     add 997e080ef chore(deps): bump knative.dev/serving from 0.37.2 to 0.38.0

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   (a94876c8c)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/knative.dev/serving-0.38.0 (997e080ef)

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:
 .github/actions/automatic-updates/action.yml       |   2 +-
 .github/actions/e2e-common/action.yml              |   5 +
 .github/actions/e2e-common/exec-tests.sh           |   7 +-
 .github/actions/release-nightly/action.yml         |   1 +
 ...-native-test.yml => nightly-latest-runtime.yml} |  33 ++++---
 config/crd/bases/camel.apache.org_builds.yaml      |  44 +++++++++
 .../bases/camel.apache.org_integrationkits.yaml    |  10 ++
 .../camel.apache.org_integrationplatforms.yaml     | 104 +++++++++++++++++++++
 .../crd/bases/camel.apache.org_integrations.yaml   |  10 ++
 .../bases/camel.apache.org_kameletbindings.yaml    |  11 +++
 config/crd/bases/camel.apache.org_pipes.yaml       |  11 +++
 .../ROOT/pages/troubleshooting/known-issues.adoc   |  13 +++
 docs/modules/ROOT/partials/apis/camel-k-crds.adoc  |  17 ++++
 docs/modules/traits/pages/builder.adoc             |   6 ++
 e2e/common/traits/builder_test.go                  |  78 ++++++++++++++++
 go.mod                                             |   2 +-
 go.sum                                             |   4 +-
 helm/camel-k/crds/crd-build.yaml                   |  44 +++++++++
 helm/camel-k/crds/crd-integration-kit.yaml         |  10 ++
 helm/camel-k/crds/crd-integration-platform.yaml    | 104 +++++++++++++++++++++
 helm/camel-k/crds/crd-integration.yaml             |  10 ++
 helm/camel-k/crds/crd-kamelet-binding.yaml         |  11 +++
 helm/camel-k/crds/crd-pipe.yaml                    |  11 +++
 pkg/apis/camel/v1/common_types_support.go          |  45 +++++++++
 pkg/apis/camel/v1/common_types_support_test.go     |  84 +++++++++++++++++
 pkg/apis/camel/v1/maven_types.go                   |   3 +
 pkg/apis/camel/v1/trait/builder.go                 |   4 +
 pkg/apis/camel/v1/zz_generated.deepcopy.go         |   1 +
 pkg/builder/project.go                             |  14 +++
 .../applyconfiguration/camel/v1/mavenbuildspec.go  |   8 ++
 .../camel/applyconfiguration/camel/v1/mavenspec.go |   9 ++
 pkg/cmd/install.go                                 |   3 +-
 pkg/trait/builder.go                               |  10 ++
 pkg/trait/builder_test.go                          |  19 ++++
 pkg/util/maven/maven_project.go                    |   4 +
 pkg/util/maven/maven_project_test.go               |   3 +
 pkg/util/maven/maven_types.go                      |   5 +
 resources/traits.yaml                              |   8 ++
 script/Makefile                                    |  23 +++++
 39 files changed, 772 insertions(+), 19 deletions(-)
 copy .github/workflows/{nightly-native-test.yml => nightly-latest-runtime.yml} (72%)