[GitHub] [camel-k] oscerd commented on issue #3605: Release 1.10.1
oscerd commented on issue #3605: URL: https://github.com/apache/camel-k/issues/3605#issuecomment-1272867088 I'm starting the release process. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel] orpiske commented on a diff in pull request #8499: [camel-18588] Added condition around commitManager.forceCommit method to not reset from zero if there is no information on the las
orpiske commented on code in PR #8499: URL: https://github.com/apache/camel/pull/8499#discussion_r990967060 ## components/camel-kafka/src/main/java/org/apache/camel/component/kafka/consumer/support/KafkaRecordProcessor.java: ## @@ -131,8 +131,11 @@ private boolean processException( LOG.warn("Will seek consumer to offset {} and start polling again.", partitionLastOffset); } -// force commit, so we resume on next poll where we failed -commitManager.forceCommit(partition, partitionLastOffset); +// force commit, so we resume on next poll where we failed except when the failure happened +// at the first message in a poll +if(partitionLastOffset != -1) { Review Comment: Please use `AbstractCommitManager.START_OFFSET` instead of -1, so it's easier to read. Thanks! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel] orpiske merged pull request #8500: Bump actions/labeler from 4.0.1 to 4.0.2
orpiske merged PR #8500: URL: https://github.com/apache/camel/pull/8500 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel] branch main updated: Bump actions/labeler from 4.0.1 to 4.0.2
This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git The following commit(s) were added to refs/heads/main by this push: new e88a28eabb1 Bump actions/labeler from 4.0.1 to 4.0.2 e88a28eabb1 is described below commit e88a28eabb1bdace85b6a26206b085830c33b840 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Mon Oct 10 06:25:39 2022 + Bump actions/labeler from 4.0.1 to 4.0.2 Bumps [actions/labeler](https://github.com/actions/labeler) from 4.0.1 to 4.0.2. - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v4.0.1...v4.0.2) --- updated-dependencies: - dependency-name: actions/labeler dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/generic-pr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generic-pr.yaml b/.github/workflows/generic-pr.yaml index 9042185aa13..c44d132e1ed 100644 --- a/.github/workflows/generic-pr.yaml +++ b/.github/workflows/generic-pr.yaml @@ -42,7 +42,7 @@ jobs: (github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize') -uses: actions/labeler@v4.0.1 +uses: actions/labeler@v4.0.2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} configuration-path: .github/workflows/generic-pr/label-config.yml
[GitHub] [camel] github-actions[bot] commented on pull request #8500: Bump actions/labeler from 4.0.1 to 4.0.2
github-actions[bot] commented on PR #8500: URL: https://github.com/apache/camel/pull/8500#issuecomment-1272875042 :no_entry_sign: There are (likely) no components to be tested in this PR -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-quarkus] branch camel-main updated (1337b0056d -> 98ccdeafd2)
This is an automated email from the ASF dual-hosted git repository. jiriondrusek pushed a change to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git discard 1337b0056d Upgrade Camel to 3.20.0 add 657ca87152 Inherit Azure SDK BOM version from Camel add 69b6301483 Sync Azure Vert.x HTTP client from azure-sdk project add f14f834b04 Regenerate BOM with correct knative component versions add 66aab8d41d Upgrade Quarkus to 2.13.1.Final add 6b483e8fe7 Disable tests for native mode serialization due to #4148 add 2f24671fe4 Disable XStream native tests due to #4149 add e91eb3943d Add sync tag for ahc.version property add 53f762ae61 Updated CHANGELOG.md new 98ccdeafd2 Upgrade Camel to 3.20.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 (1337b0056d) \ N -- N -- N refs/heads/camel-main (98ccdeafd2) 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 | 10 + docs/antora.yml| 2 +- .../deployment/pom.xml | 5 + .../vertx/AzureCoreHttpClientVertxProcessor.java | 10 + .../azure/core/http/vertx/DeadlockTests.java | 25 +- .../http/vertx/SimpleBasicAuthHttpProxyServer.java | 132 .../http/vertx/VertxAsyncClientTestHelper.java | 47 ++ ... VertxAsyncHttpClientAsyncHttpClientTests.java} | 37 +- .../vertx/VertxAsyncHttpClientBuilderTests.java| 464 ++ .../vertx/VertxAsyncHttpClientProviderTests.java | 213 ++ ...> VertxAsyncHttpClientResponseTransformer.java} | 6 +- .../vertx/VertxAsyncHttpClientRestProxyTests.java | 145 + ...HttpClientRestProxyWithAsyncHttpProxyTests.java | 192 ++ .../vertx/VertxAsyncHttpClientSingletonTests.java | 83 +++ ...ntTests.java => VertxAsyncHttpClientTests.java} | 144 +++-- .../http/vertx/VertxHttpClientBuilderTests.java| 183 -- .../http/vertx/VertxHttpClientProviderTests.java | 114 .../http/vertx/VertxHttpClientRestProxyTests.java | 65 -- ...VertxHttpClientRestProxyWithHttpProxyTests.java | 88 --- .../azure-core-http-client-vertx/runtime/pom.xml | 4 - ...ientProvider.java => QuarkusVertxProvider.java} | 35 +- .../core/http/vertx/VertxAsyncHttpClient.java | 139 .../http/vertx/VertxAsyncHttpClientBuilder.java| 288 + .../http/vertx/VertxAsyncHttpClientProvider.java | 82 +++ .../core/http/vertx/VertxHttpAsyncResponse.java| 52 -- .../azure/core/http/vertx/VertxHttpClient.java | 133 .../core/http/vertx/VertxHttpClientBuilder.java| 264 .../core/http/vertx/VertxHttpResponseHandler.java | 59 -- .../{VertxHttpRequest.java => VertxProvider.java} | 25 +- .../BufferedVertxHttpResponse.java | 34 +- .../implementation/VertxHttpAsyncResponse.java | 61 ++ .../VertxHttpResponseBase.java}| 24 +- .../com.azure.core.http.HttpClientProvider | 2 +- ...kus.support.azure.core.http.vertx.VertxProvider | 1 + extensions-support/azure-core/runtime/pom.xml | 10 +- .../camel/quarkus/component/http/it/HttpTest.java | 2 + .../messaging/jms/AbstractJmsMessagingTest.java| 2 + .../quarkus/component/xstream/it/XstreamTest.java | 2 + pom.xml| 24 +- poms/bom/src/main/generated/flattened-full-pom.xml | 711 +++-- .../src/main/generated/flattened-reduced-pom.xml | 80 +-- .../generated/flattened-reduced-verbose-pom.xml| 212 +++--- 42 files changed, 2579 insertions(+), 1632 deletions(-) create mode 100644 extensions-support/azure-core-http-client-vertx/deployment/src/test/java/org/apache/camel/quarkus/support/azure/core/http/vertx/SimpleBasicAuthHttpProxyServer.java create mode 100644 extensions-support/azure-core-http-client-vertx/deployment/src/test/java/org/apache/camel/quarkus/support/azure/core/http/vertx/VertxAsyncClientTestHelper.java rename extensions-support/azure-core-http-client-vertx/deployment/src/test/java/org/apache/camel/quarkus/support/azure/core/http/vertx/{VertxHttpClientHttpClientTests.java => VertxAsyncHttpClientAsyncHttpClien
[camel-website-pub] branch asf-site updated (5de223c1a1 -> 5d9e8bc194)
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a change to branch asf-site in repository https://gitbox.apache.org/repos/asf/camel-website-pub.git discard 5de223c1a1 Website updated to 2ec258e1e33d6fc9b8fd94f5a07d0e7488f81c24 discard 6292d845b4 Website updated to 325e929157412b27394080f4d4dba3d821476ddf new 039f93ed98 Website updated to 325e929157412b27394080f4d4dba3d821476ddf new 5d9e8bc194 Website updated to 92a69175a08865c98917024147a082a85c9fb529 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 (5de223c1a1) \ N -- N -- N refs/heads/asf-site (5d9e8bc194) 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 2 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: .htaccess | 120 +- .well-known/security.txt | 2 +- blog/2022/10/Emacsdap/index.html | 2 +- blog/2022/10/camel-karavan-roadmap/index.html | 1 + .../10/camel-karavan-roadmap/karavan-clouds.png| Bin 0 -> 321879 bytes .../10/camel319-whatsnew}/featured.png | Bin ...d316c94_3975989_800x0_resize_q95_gaussian_3.png | Bin blog/2022/10/camel319-whatsnew/index.html | 7 + blog/index.html| 2 +- blog/index.xml |27 +- blog/page/10/index.html| 2 +- blog/page/11/index.html| 2 +- blog/page/12/index.html| 2 +- blog/page/13/index.html| 2 +- blog/page/14/index.html| 2 +- blog/page/15/index.html| 2 +- blog/page/16/index.html| 2 +- blog/page/17/index.html| 2 +- blog/page/18/index.html| 2 +- blog/page/19/index.html| 2 +- blog/page/2/index.html | 2 +- blog/page/20/index.html| 2 +- blog/page/21/index.html| 2 +- blog/page/22/index.html| 2 +- blog/page/23/index.html| 2 +- blog/page/24/index.html| 2 +- blog/page/25/index.html| 2 +- blog/page/26/index.html| 2 +- blog/page/27/index.html| 2 +- blog/page/28/index.html| 2 +- blog/page/29/index.html| 2 +- blog/page/3/index.html | 2 +- blog/page/30/index.html| 2 +- blog/page/31/index.html| 2 +- blog/page/32/index.html| 2 +- blog/page/33/index.html| 2 +- blog/page/34/index.html| 2 +- blog/page/35/index.html| 2 +- blog/page/36/index.html| 2 +- blog/page/37/index.html| 2 +- blog/page/38/index.html| 2 +- blog/page/39/index.html| 2 +- blog/page/4/index.html | 2 +- blog/page/40/index.html| 2 +- blog/page/41/index.html| 2 +- blog/page/42/index.html| 2 +- blog/page/43/index.html| 2 +- blog/page/44/index.html| 2 +- blog/page/45/index.html| 2 +- blog/page/46/index.html| 2 +- blog/page/47/index.html| 2 +- blog/page/48/index.html| 2 +- blog/page/49/index.html| 2 +- blog/page/5/index.html | 2 +- blog/page/50/index.html| 2 +- blog/page/51/index.html| 2 +
Error while running github feature from .asf.yaml in camel-website-pub!
An error occurred while running github feature in .asf.yaml!: 422 {"message": "Validation Failed", "errors": [{"message": "Sorry, you need to allow at least one merge strategy. (no_merge_method)", "resource": "Repository", "field": "merge_commit_allowed", "code": "invalid"}], "documentation_url": "https://docs.github.com/rest/reference/repos#update-a-repository"}
[GitHub] [camel] github-actions[bot] commented on pull request #8497: CAMEL-18582: Remove SocketTimeoutException from non retryable classes
github-actions[bot] commented on PR #8497: URL: https://github.com/apache/camel/pull/8497#issuecomment-1272885415 :no_entry_sign: There are (likely) no components to be tested in this PR -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch release-1.10.x updated: Preparing for release 1.10.1
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch release-1.10.x in repository https://gitbox.apache.org/repos/asf/camel-k.git The following commit(s) were added to refs/heads/release-1.10.x by this push: new d9c59880b Preparing for release 1.10.1 d9c59880b is described below commit d9c59880ba329746593cc0c271cd4f1549d603c9 Author: Andrea Cosentino AuthorDate: Mon Oct 10 09:24:34 2022 +0200 Preparing for release 1.10.1 --- pkg/resources/resources.go | 12 +- resources/camel-catalog-1.15.0.yaml | 2835 +++ 2 files changed, 2845 insertions(+), 2 deletions(-) diff --git a/pkg/resources/resources.go b/pkg/resources/resources.go index 2a9937a0b..85e9b4ea6 100644 --- a/pkg/resources/resources.go +++ b/pkg/resources/resources.go @@ -608,12 +608,19 @@ var assets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x5b\x77\xdb\x38\xb2\xee\x7b\x7e\x05\x57\xe7\x65\xef\x75\x46\x98\xee\x64\xce\xee\xbd\xfa\x3c\xd9\x72\x9c\xd8\xb1\x13\x27\xf2\xa4\x33\xf3\xd2\x0b\x22\x21\x09\x16\x49\x50\x00\x28\xcb\xf9\xf5\x67\x01\x04\xaf\x52\x8a\x17\x17\x3c\x7e\x30\x29\xa2\xf0\x15\xea\xc3\x85\xb8\xb1\xf0\x3a\x98\xe1\xfd\xbd\x7a\x1d\xdc\xf0\x90\xa5\x8a\x45\x81\x16\x81\xde\xb0\xe0\x2c\xa3\xe1\x86\x05\x0b\xb1\xd2\x8f\x54\xb2\xe0\x52\xe4\x69\x44\x [...] }, + "/camel-catalog-1.15.0.yaml": &vfsgen۰CompressedFileInfo{ + name: "camel-catalog-1.15.0.yaml", + modTime: time.Time{}, + uncompressedSize: 86293, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x5b\x77\xdb\x38\x92\xff\x7b\x3e\x05\x4f\xe7\x65\xf7\xfc\x47\x98\xee\x64\x76\x7b\x4f\xff\x9f\x6c\x39\x4e\xec\xd8\x89\x13\x79\xd2\x99\x79\xe9\x03\x91\x90\x04\x89\x24\x68\x00\x94\xe5\x7c\xfa\x3d\x00\xc1\xab\x94\xe2\xc5\x05\xaf\x1f\x4c\x8a\x28\xfc\x0a\xf5\xc3\x85\xb8\xb1\xf0\x3a\x98\xe1\xfd\xbd\x7a\x1d\xdc\xf0\x90\xa5\x8a\x45\x81\x16\x81\xde\xb0\xe0\x2c\xa3\xe1\x86\x05\x0b\xb1\xd2\x8f\x54\xb2\xe0\x52\xe4\x69\x44\x [...] + }, "/traits.yaml": &vfsgen۰CompressedFileInfo{ name: "traits.yaml", modTime: time.Time{}, - uncompressedSize: 57316, + uncompressedSize: 57304, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xfd\x73\x1b\xb9\xb1\xe0\xef\xfb\x57\xa0\xf4\xee\x95\x24\x17\x49\xc9\x9b\x6c\xb2\x4f\x77\x7e\x39\xad\xed\xdd\x68\xd7\x1f\x3a\x4b\xbb\x79\x29\x9f\x2b\x04\x67\x40\x12\xe6\x10\x98\x00\x18\xca\xdc\x7b\xf7\xbf\x5f\xa1\xbb\xf1\x31\xc3\xa1\x48\xc9\xd6\x5e\x74\xb9\x6c\x55\x2c\x92\x33\x40\xa3\xd1\x68\xf4\x77\x3b\xc3\xa5\xb3\x67\x5f\x0d\x99\xe2\x4b\x71\xc6\x7e\x67\x0b\x5e\x89\xaf\x18\xab\x2b\xee\xa6\xda\x2c\xcf\xd8\x94\x [...] + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x73\x1c\x37\x92\x20\xfe\xbf\x3f\x05\x82\xfb\xdb\x20\xa9\xe8\x6e\xca\x9e\xf5\xac\x7f\xbc\xd3\xce\xd1\x92\xec\xa1\xad\x07\x4f\xa4\x3d\x3b\xa1\x53\x4c\xa3\xab\xd0\xdd\x50\x57\x01\x35\x00\x8a\x54\xfb\xf6\xbe\xfb\x05\x32\x13\x8f\xaa\xae\x66\x37\x29\xd1\x37\xbc\xbd\x9d\x88\xb5\x48\x16\x80\x44\x22\x91\xc8\x77\x3a\xc3\xa5\xb3\xa7\x5f\x8d\x99\xe2\xb5\x38\x65\x7f\xb0\x05\xaf\xc4\x57\x8c\x35\x15\x77\x73\x6d\xea\x53\x [...] }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ @@ -621,6 +628,7 @@ var assets = func() http.FileSystem { fs["/builder"].(os.FileInfo), fs["/camel-catalog-1.13.0.yaml"].(os.FileInfo), fs["/camel-catalog-1.14.0.yaml"].(os.FileInfo), + fs["/camel-catalog-1.15.0.yaml"].(os.FileInfo), fs["/crd"].(os.FileInfo), fs["/manager"].(os.FileInfo), fs["/prometheus"].(os.FileInfo), diff --git a/resources/camel-catalog-1.15.0.yaml b/resources/camel-catalog-1.15.0.yaml new file mode 100644 index 0..b82cbcdde --- /dev/null +++ b/resources/camel-catalog-1.15.0.yaml @@ -0,0 +1,2835 @@ +# --- +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRA
[camel-k] tag v1.10.1 created (now cd7d3db2a)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to tag v1.10.1 in repository https://gitbox.apache.org/repos/asf/camel-k.git at cd7d3db2a (commit) No new revisions were added by this update.
[camel-k] tag pkg/client/camel/v1.10.1 created (now cd7d3db2a)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to tag pkg/client/camel/v1.10.1 in repository https://gitbox.apache.org/repos/asf/camel-k.git at cd7d3db2a (commit) No new revisions were added by this update.
[camel-k] tag pkg/kamelet/repository/v1.10.1 created (now cd7d3db2a)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to tag pkg/kamelet/repository/v1.10.1 in repository https://gitbox.apache.org/repos/asf/camel-k.git at cd7d3db2a (commit) No new revisions were added by this update.
[camel-k] tag pkg/apis/camel/v1.10.1 created (now cd7d3db2a)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to tag pkg/apis/camel/v1.10.1 in repository https://gitbox.apache.org/repos/asf/camel-k.git at cd7d3db2a (commit) No new revisions were added by this update.
svn commit: r57243 - /dev/camel/camel-k/1.10.1/
Author: acosentino Date: Mon Oct 10 07:40:14 2022 New Revision: 57243 Log: Importing sources for release 1.10.1 Added: dev/camel/camel-k/1.10.1/ dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz (with props) dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz.asc (with props) dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz.sha512 dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz (with props) dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz.asc (with props) dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz.sha512 dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-arm64bit.tar.gz (with props) dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-arm64bit.tar.gz.asc (with props) dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-arm64bit.tar.gz.sha512 dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-windows-64bit.tar.gz (with props) dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-windows-64bit.tar.gz.asc (with props) dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-windows-64bit.tar.gz.sha512 dev/camel/camel-k/1.10.1/camel-k-examples-1.10.1.tar.gz (with props) dev/camel/camel-k/1.10.1/camel-k-examples-1.10.1.tar.gz.asc (with props) dev/camel/camel-k/1.10.1/camel-k-examples-1.10.1.tar.gz.sha512 dev/camel/camel-k/1.10.1/camel-k-sources-1.10.1.tar.gz (with props) dev/camel/camel-k/1.10.1/camel-k-sources-1.10.1.tar.gz.asc (with props) dev/camel/camel-k/1.10.1/camel-k-sources-1.10.1.tar.gz.sha512 Added: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz == Binary file - no diff available. Propchange: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz -- svn:mime-type = application/x-gzip Added: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz.asc == Binary file - no diff available. Propchange: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz.asc -- svn:mime-type = application/pgp-signature Added: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz.sha512 == --- dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz.sha512 (added) +++ dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-linux-64bit.tar.gz.sha512 Mon Oct 10 07:40:14 2022 @@ -0,0 +1 @@ +e9c5a5cc3b8ba4c859f2f0dc6a51bc57a0c962640abbad5e9a6b9f1bca369cc1818140eae8642224c680a2d635d3b61735987877e10d7aa92069c9fdee2c9bf7 *camel-k-client-1.10.1-linux-64bit.tar.gz Added: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz == Binary file - no diff available. Propchange: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz -- svn:mime-type = application/x-gzip Added: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz.asc == Binary file - no diff available. Propchange: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz.asc -- svn:mime-type = application/pgp-signature Added: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz.sha512 == --- dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz.sha512 (added) +++ dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-64bit.tar.gz.sha512 Mon Oct 10 07:40:14 2022 @@ -0,0 +1 @@ +394b3886e7a142e85ed651aa0bfd9aa9cc5793f278a9c005396b0be9362465dd09cadec8df78af3f8add0e45ca88bf11a639d6f6479dff0a188d201e79b7f8a9 *camel-k-client-1.10.1-mac-64bit.tar.gz Added: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-arm64bit.tar.gz == Binary file - no diff available. Propchange: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-arm64bit.tar.gz -- svn:mime-type = application/x-gzip Added: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-arm64bit.tar.gz.asc == Binary file - no diff available. Propchange: dev/camel/camel-k/1.10.1/camel-k-client-1.10.1-mac-arm64bit.tar.gz.asc -- svn:mime-type = application/pgp
[GitHub] [camel] github-actions[bot] commented on pull request #8498: [camel-18587] It will only disconnect on isBreakOnErrorHit if consumer is not already paused
github-actions[bot] commented on PR #8498: URL: https://github.com/apache/camel/pull/8498#issuecomment-1272910857 :x: Finished component verification: **1 component(s) test failed** out of 1 component(s) tested -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel-k] oscerd commented on issue #3605: Release 1.10.1
oscerd commented on issue #3605: URL: https://github.com/apache/camel-k/issues/3605#issuecomment-1272913074 on vote. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel] 01/02: Upgrade AWS SDK v2 to version 2.17.290
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit bfbda3453494374dc4aff1c3448f9a5e5bba81f5 Author: Andrea Cosentino AuthorDate: Mon Oct 10 09:08:05 2022 +0200 Upgrade AWS SDK v2 to version 2.17.290 --- parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parent/pom.xml b/parent/pom.xml index a552a99df25..c74f90aa8af 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -81,7 +81,7 @@ 1.11.1 1.11.1 4.2.0 -2.17.289 +2.17.290 2.6.1 1.2.14 1.2.6
[camel] 02/02: Sync deps
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit 0a924eb410779893a837f982a92eaf5b141df029 Author: Andrea Cosentino AuthorDate: Mon Oct 10 10:15:39 2022 +0200 Sync deps --- camel-dependencies/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml index 5efe9c91181..b460ae3c099 100644 --- a/camel-dependencies/pom.xml +++ b/camel-dependencies/pom.xml @@ -64,7 +64,7 @@ 1.11.1 1.11.1 4.2.0 -2.17.289 +2.17.290 2.6.1 1.2.14 1.2.6
[camel] branch main updated (e88a28eabb1 -> 0a924eb4107)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel.git from e88a28eabb1 Bump actions/labeler from 4.0.1 to 4.0.2 new bfbda345349 Upgrade AWS SDK v2 to version 2.17.290 new 0a924eb4107 Sync deps The 2 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: camel-dependencies/pom.xml | 2 +- parent/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
[camel-k] 01/01: Fixed licenses for addons
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch licenses-addons in repository https://gitbox.apache.org/repos/asf/camel-k.git commit f029421010fadbb6e7183c21e525db6b81775a00 Author: Andrea Cosentino AuthorDate: Mon Oct 10 10:23:33 2022 +0200 Fixed licenses for addons --- addons/register_aws_secrets.go | 30 +++--- addons/register_azure_key_vault.go | 30 +++--- addons/register_gcp_secrets.go | 30 +++--- addons/register_resume.go | 30 +++--- addons/resume/resume.go | 30 +++--- addons/vault/aws/aws_secrets_manager.go | 30 +++--- addons/vault/azure/azure_key_vault.go | 30 +++--- addons/vault/gcp/gcp_secret_manager.go | 30 +++--- 8 files changed, 120 insertions(+), 120 deletions(-) diff --git a/addons/register_aws_secrets.go b/addons/register_aws_secrets.go index 9727bc89b..b5c93ee72 100644 --- a/addons/register_aws_secrets.go +++ b/addons/register_aws_secrets.go @@ -1,19 +1,19 @@ /* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package addons diff --git a/addons/register_azure_key_vault.go b/addons/register_azure_key_vault.go index ab0ccca8c..7c76cdbb7 100644 --- a/addons/register_azure_key_vault.go +++ b/addons/register_azure_key_vault.go @@ -1,19 +1,19 @@ /* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package addons diff --git a/addons/register_gcp_secrets.go b/addons/register_gcp_secrets.go index f82d0aacd..1830836b6 100644 --- a/addons/register_gcp_secrets.go +++ b/addons/register_gcp_secrets.go @@ -1,19 +1,19 @@ /* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed
[GitHub] [camel-k] oscerd opened a new pull request, #3729: Fixed licenses for addons
oscerd opened a new pull request, #3729: URL: https://github.com/apache/camel-k/pull/3729 **Release Note** ```release-note NONE ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch licenses-addons created (now f02942101)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch licenses-addons in repository https://gitbox.apache.org/repos/asf/camel-k.git at f02942101 Fixed licenses for addons This branch includes the following new commits: new f02942101 Fixed licenses for addons 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.
[camel-k] branch licenses-addons updated (f02942101 -> 48dcecc9c)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch licenses-addons in repository https://gitbox.apache.org/repos/asf/camel-k.git discard f02942101 Fixed licenses for addons add 48dcecc9c Fixed licenses for addons 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 (f02942101) \ N -- N -- N refs/heads/licenses-addons (48dcecc9c) 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:
[camel-karaf] 02/02: Regen
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karaf.git commit 71406f0e9eb7e5eb3065375b7e306fbcafd904c5 Author: Andrea Cosentino AuthorDate: Mon Oct 10 10:29:14 2022 +0200 Regen --- .../camel/catalog/karaf/components.properties | 1 - .../camel/catalog/karaf/components/tika.json | 36 -- 2 files changed, 37 deletions(-) diff --git a/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/components.properties b/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/components.properties index e3989264..01c5218a 100644 --- a/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/components.properties +++ b/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/components.properties @@ -164,7 +164,6 @@ string-template stub telegram thrift -tika timer twilio validator diff --git a/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/components/tika.json b/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/components/tika.json deleted file mode 100644 index a55b7025.. --- a/catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/components/tika.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "component": { -"kind": "component", -"name": "tika", -"title": "Tika", -"description": "Parse documents and extract metadata and text using Apache Tika.", -"deprecated": false, -"firstVersion": "2.19.0", -"label": "document,transformation", -"javaType": "org.apache.camel.component.tika.TikaComponent", -"supportLevel": "Stable", -"groupId": "org.apache.camel", -"artifactId": "camel-tika", -"version": "3.20.0-SNAPSHOT", -"scheme": "tika", -"extendsScheme": "", -"syntax": "tika:operation", -"async": false, -"api": false, -"consumerOnly": false, -"producerOnly": true, -"lenientProperties": false - }, - "componentProperties": { -"lazyStartProducer": { "kind": "property", "displayName": "Lazy Start Producer", "group": "producer", "label": "producer", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": false, "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during star [...] -"autowiredEnabled": { "kind": "property", "displayName": "Autowired Enabled", "group": "advanced", "label": "advanced", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": true, "description": "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which t [...] - }, - "properties": { -"operation": { "kind": "path", "displayName": "Operation", "group": "producer", "label": "", "required": true, "type": "object", "javaType": "org.apache.camel.component.tika.TikaOperation", "enum": [ "parse", "detect" ], "deprecated": false, "deprecationNote": "", "autowired": false, "secret": false, "configurationClass": "org.apache.camel.component.tika.TikaConfiguration", "configurationField": "tikaConfiguration", "description": "Operation type" }, -"tikaParseOutputEncoding": { "kind": "parameter", "displayName": "Tika Parse Output Encoding", "group": "producer", "label": "", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "configurationClass": "org.apache.camel.component.tika.TikaConfiguration", "configurationField": "tikaConfiguration", "description": "Tika Parse Output Encoding" }, -"tikaParseOutputFormat": { "kind": "parameter", "displayName": "Tika Parse Output Format", "group": "producer", "label": "", "required": false, "type": "object", "javaType": "org.apache.camel.component.tika.TikaParseOutputFormat", "enum": [ "xml", "html", "text", "textMain" ], "deprecated": false, "autowired": false, "secret": false, "defaultValue": "xml", "configurationClass": "org.apache.camel.component.tika.TikaConfiguration", "configurationField": "tikaConfiguration", "descriptio [...] -"lazyStartProducer": { "kind": "parameter", "displayName": "Lazy Start Producer", "group": "producer (advanced)", "label": "producer,advanced", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": false, "description": "Whether the producer
[camel-karaf] branch main updated (fe0ed369 -> 71406f0e)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel-karaf.git from fe0ed369 Regen for 3.20 new 6b24f29d Remove support for Camel-Tika as Karaf feature new 71406f0e Regen The 2 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: .../camel/catalog/karaf/components.properties | 1 - .../camel/catalog/karaf/components/tika.json | 36 -- .../karaf/features/src/main/resources/features.xml | 8 - 3 files changed, 45 deletions(-) delete mode 100644 catalog/camel-catalog-provider-karaf/src/main/resources/org/apache/camel/catalog/karaf/components/tika.json
[camel-karaf] 01/02: Remove support for Camel-Tika as Karaf feature
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karaf.git commit 6b24f29d554e8b2e0ef5d02d3417fddb4b7cf8ae Author: Andrea Cosentino AuthorDate: Mon Oct 10 10:28:01 2022 +0200 Remove support for Camel-Tika as Karaf feature --- platforms/karaf/features/src/main/resources/features.xml | 8 1 file changed, 8 deletions(-) diff --git a/platforms/karaf/features/src/main/resources/features.xml b/platforms/karaf/features/src/main/resources/features.xml index 16773e19..8e1a40d7 100644 --- a/platforms/karaf/features/src/main/resources/features.xml +++ b/platforms/karaf/features/src/main/resources/features.xml @@ -2234,14 +2234,6 @@ mvn:org.javassist/javassist/${javassist-version} mvn:org.apache.camel/camel-thrift/${project.version} - -mvn:org.apache.tika/tika-core/${tika-version} -mvn:org.apache.tika/tika-bundle-standard/${tika-version} -mvn:org.apache.tika/tika-parser-html-commons/${tika-version} -mvn:commons-io/commons-io/${commons-io-version} -camel-core -mvn:org.apache.camel/camel-tika/${project.version} - camel-core mvn:org.apache.camel/camel-tracing/${project.version}
[GitHub] [camel-k] squakez merged pull request #3727: chore(deps): bump github.com/redhat-developer/service-binding-operator from 1.2.0 to 1.3.0
squakez merged PR #3727: URL: https://github.com/apache/camel-k/pull/3727 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch main updated: chore(deps): bump github.com/redhat-developer/service-binding-operator
This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git The following commit(s) were added to refs/heads/main by this push: new b958b1c70 chore(deps): bump github.com/redhat-developer/service-binding-operator b958b1c70 is described below commit b958b1c706065a631873fcbba4ac8e835fdc7626 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> AuthorDate: Mon Oct 10 01:01:40 2022 + chore(deps): bump github.com/redhat-developer/service-binding-operator Bumps [github.com/redhat-developer/service-binding-operator](https://github.com/redhat-developer/service-binding-operator) from 1.2.0 to 1.3.0. - [Release notes](https://github.com/redhat-developer/service-binding-operator/releases) - [Changelog](https://github.com/redhat-developer/service-binding-operator/blob/master/docs/community-release.md) - [Commits](https://github.com/redhat-developer/service-binding-operator/compare/v1.2.0...v1.3.0) --- updated-dependencies: - dependency-name: github.com/redhat-developer/service-binding-operator dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- go.mod | 6 +++--- go.sum | 10 ++ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/go.mod b/go.mod index 5ad0b8baa..d4160a365 100644 --- a/go.mod +++ b/go.mod @@ -29,7 +29,7 @@ require ( github.com/prometheus/client_model v0.2.0 github.com/prometheus/common v0.37.0 github.com/radovskyb/watcher v1.0.7 - github.com/redhat-developer/service-binding-operator v1.2.0 + github.com/redhat-developer/service-binding-operator v1.3.0 github.com/rs/xid v1.4.0 github.com/scylladb/go-set v1.0.2 github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 @@ -140,8 +140,8 @@ require ( go.uber.org/atomic v1.9.0 // indirect golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect - golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect - golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect + golang.org/x/net v0.0.0-20220906165146-f3363e06e74c // indirect + golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect golang.org/x/text v0.3.7 // indirect golang.org/x/tools v0.1.10-0.20220218145154-897bd77cd717 // indirect golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect diff --git a/go.sum b/go.sum index f79ff69b1..b9ea65cd1 100644 --- a/go.sum +++ b/go.sum @@ -1314,8 +1314,8 @@ github.com/radovskyb/watcher v1.0.7 h1:AYePLih6dpmS32vlHfhCeli8127LzkIgwJGcwwe8t github.com/radovskyb/watcher v1.0.7/go.mod h1:78okwvY5wPdzcb1UYnip1pvrZNIVEIh/Cm+ZuvsUYIg= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= -github.com/redhat-developer/service-binding-operator v1.2.0 h1:vFvifgINlHmpGZcaD8736phs22CC3/gVNN9UIdsCSsY= -github.com/redhat-developer/service-binding-operator v1.2.0/go.mod h1:aQguXvRXEtZROOAANvCUFnFZcimEZHPXa+9P9RxQvec= +github.com/redhat-developer/service-binding-operator v1.3.0 h1:SouGhbuOZ1r0r/IkiTW9xs2FcPMpxtIvBxl+XbFI8j0= +github.com/redhat-developer/service-binding-operator v1.3.0/go.mod h1:dPrPgsB2wwNMTxldnoZdYHiADZ6jDTbHhZMxEHJbjgY= github.com/rickb777/date v1.13.0 h1:+8AmwLuY1d/rldzdqvqTEg7107bZ8clW37x4nsdG3Hs= github.com/rickb777/date v1.13.0/go.mod h1:GZf3LoGnxPWjX+/1TXOuzHefZFDovTyNLHDMd3qH70k= github.com/rickb777/plural v1.2.1 h1:UitRAgR70+yHFt26Tmj/F9dU9aV6UfjGXSbO1DcC9/U= @@ -1756,8 +1756,9 @@ golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-2022052938-2e3eb7b945c2/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b h1:PxfKdU9lEEDYjdIzOtC4qFWgkU2rGHdKlKowJSMN9h0= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220906165146-f3363e06e74c h1:yKufUcDwucU5urd+50/Opbt4AYpqthk7wHpHok8f1lo= +golang.org/x/net v0.0.0-20220906165146-f3363e06e74c/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw
[GitHub] [camel-k] squakez closed pull request #3728: chore(deps): bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.50.0 to 0.60.0
squakez closed pull request #3728: chore(deps): bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.50.0 to 0.60.0 URL: https://github.com/apache/camel-k/pull/3728 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel-k] dependabot[bot] commented on pull request #3728: chore(deps): bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.50.0 to 0.60.0
dependabot[bot] commented on PR #3728: URL: https://github.com/apache/camel-k/pull/3728#issuecomment-1272961144 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file. If you change your mind, just re-open this PR and I'll resolve any conflicts on it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel-k] oscerd merged pull request #3729: Fixed licenses for addons
oscerd merged PR #3729: URL: https://github.com/apache/camel-k/pull/3729 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch main updated: Fixed licenses for addons
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git The following commit(s) were added to refs/heads/main by this push: new ff4259a66 Fixed licenses for addons ff4259a66 is described below commit ff4259a66306d0ef88cb639e30b9730808003b83 Author: Andrea Cosentino AuthorDate: Mon Oct 10 10:23:33 2022 +0200 Fixed licenses for addons --- addons/register_aws_secrets.go | 30 +++--- addons/register_azure_key_vault.go | 30 +++--- addons/register_gcp_secrets.go | 30 +++--- addons/register_resume.go | 30 +++--- addons/resume/resume.go | 30 +++--- addons/vault/aws/aws_secrets_manager.go | 30 +++--- addons/vault/azure/azure_key_vault.go | 30 +++--- addons/vault/gcp/gcp_secret_manager.go | 30 +++--- 8 files changed, 120 insertions(+), 120 deletions(-) diff --git a/addons/register_aws_secrets.go b/addons/register_aws_secrets.go index 9727bc89b..b5c93ee72 100644 --- a/addons/register_aws_secrets.go +++ b/addons/register_aws_secrets.go @@ -1,19 +1,19 @@ /* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package addons diff --git a/addons/register_azure_key_vault.go b/addons/register_azure_key_vault.go index ab0ccca8c..7c76cdbb7 100644 --- a/addons/register_azure_key_vault.go +++ b/addons/register_azure_key_vault.go @@ -1,19 +1,19 @@ /* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package addons diff --git a/addons/register_gcp_secrets.go b/addons/register_gcp_secrets.go index f82d0aacd..1830836b6 100644 --- a/addons/register_gcp_secrets.go +++ b/addons/register_gcp_secrets.go @@ -1,19 +1,19 @@ /* - * Li
[GitHub] [camel-website] zregvart commented on issue #910: Yarn v4
zregvart commented on issue #910: URL: https://github.com/apache/camel-website/issues/910#issuecomment-1272998661 Not seeing the need to upgrade right now, though anyone is welcome to try and report their findings. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel] branch main updated (0a924eb4107 -> b08f36d9ea1)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel.git from 0a924eb4107 Sync deps new 1024ee17659 Upgrade Mybatis to version 3.5.11 new b08f36d9ea1 Sync deps The 2 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: camel-dependencies/pom.xml | 2 +- parent/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
[camel] 02/02: Sync deps
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit b08f36d9ea11f5554fdd660e9d08a0047a40c1db Author: Andrea Cosentino AuthorDate: Mon Oct 10 11:01:08 2022 +0200 Sync deps --- camel-dependencies/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml index b460ae3c099..0095dc10ef3 100644 --- a/camel-dependencies/pom.xml +++ b/camel-dependencies/pom.xml @@ -418,7 +418,7 @@ 4.7.1 0.9.10 2.4.14.Final -3.5.10 +3.5.11 5.12.7.Final 0.4.0 0.2.0
[camel] 01/02: Upgrade Mybatis to version 3.5.11
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit 1024ee17659d487d655e68187e6c8859695a9ca7 Author: Andrea Cosentino AuthorDate: Mon Oct 10 10:57:43 2022 +0200 Upgrade Mybatis to version 3.5.11 --- parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parent/pom.xml b/parent/pom.xml index c74f90aa8af..f60bd31983e 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -405,7 +405,7 @@ 1.5.0 0.9.10 2.4.14.Final -3.5.10 +3.5.11 5.12.7.Final 0.2.0 1.0.0.Beta4
[GitHub] [camel-k] github-actions[bot] opened a new pull request, #3730: [Backport release-1.10.x] Fixed licenses for addons
github-actions[bot] opened a new pull request, #3730: URL: https://github.com/apache/camel-k/pull/3730 Backport ff4259a66306d0ef88cb639e30b9730808003b83 from #3729 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch backport-3729-to-release-1.10.x created (now 24604390e)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch backport-3729-to-release-1.10.x in repository https://gitbox.apache.org/repos/asf/camel-k.git at 24604390e Fixed licenses for addons No new revisions were added by this update.
[GitHub] [camel-k] oscerd merged pull request #3730: [Backport release-1.10.x] Fixed licenses for addons
oscerd merged PR #3730: URL: https://github.com/apache/camel-k/pull/3730 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch release-1.10.x updated: Fixed licenses for addons
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch release-1.10.x in repository https://gitbox.apache.org/repos/asf/camel-k.git The following commit(s) were added to refs/heads/release-1.10.x by this push: new faf766422 Fixed licenses for addons faf766422 is described below commit faf766422b6c68522931c54f6b16bd94e062f1fb Author: Andrea Cosentino AuthorDate: Mon Oct 10 10:23:33 2022 +0200 Fixed licenses for addons --- addons/register_aws_secrets.go | 30 +++--- addons/register_azure_key_vault.go | 30 +++--- addons/register_gcp_secrets.go | 30 +++--- addons/register_resume.go | 30 +++--- addons/resume/resume.go | 30 +++--- addons/vault/aws/aws_secrets_manager.go | 30 +++--- addons/vault/azure/azure_key_vault.go | 30 +++--- addons/vault/gcp/gcp_secret_manager.go | 30 +++--- 8 files changed, 120 insertions(+), 120 deletions(-) diff --git a/addons/register_aws_secrets.go b/addons/register_aws_secrets.go index 9727bc89b..b5c93ee72 100644 --- a/addons/register_aws_secrets.go +++ b/addons/register_aws_secrets.go @@ -1,19 +1,19 @@ /* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package addons diff --git a/addons/register_azure_key_vault.go b/addons/register_azure_key_vault.go index ab0ccca8c..7c76cdbb7 100644 --- a/addons/register_azure_key_vault.go +++ b/addons/register_azure_key_vault.go @@ -1,19 +1,19 @@ /* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package addons diff --git a/addons/register_gcp_secrets.go b/addons/register_gcp_secrets.go index f82d0aacd..1830836b6 100644 --- a/addons/register_gcp_secrets.go +++ b/addons/register_gcp_secrets.go @@ -1,19
[camel-karaf] branch main updated: Upgrade Stringtemplate bundle to version 4.3.4_1
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karaf.git The following commit(s) were added to refs/heads/main by this push: new 1a51573b Upgrade Stringtemplate bundle to version 4.3.4_1 1a51573b is described below commit 1a51573bc1fbabdd94d8491cd9455f14b6c20d05 Author: Andrea Cosentino AuthorDate: Mon Oct 10 11:10:23 2022 +0200 Upgrade Stringtemplate bundle to version 4.3.4_1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 74688350..407ee3e2 100644 --- a/pom.xml +++ b/pom.xml @@ -297,7 +297,7 @@ 2.5.0_2 3.1.4 4.2 -4.3.3_1 +4.3.4_1 1.2.1_1 1.13.0 2.1.1
[GitHub] [camel-website] tarilabs commented on a diff in pull request #911: Content Based Routing blog post
tarilabs commented on code in PR #911: URL: https://github.com/apache/camel-website/pull/911#discussion_r991078176 ## content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md: ## @@ -0,0 +1,99 @@ +--- +title: "Content Based Routing with Camel, Drools, Quarkus, Kogito, AtlasMap and Apache Kafka!" +date: 2022-10-04T11:56:35+02:00 Review Comment: ```suggestion date: 2022-10-10T11:56:35+02:00 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel-website] github-actions[bot] commented on pull request #911: Content Based Routing blog post
github-actions[bot] commented on PR #911: URL: https://github.com/apache/camel-website/pull/911#issuecomment-1273049135 🚀 Preview is available at https://pr-911--camel.netlify.app -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-karaf] branch main updated: Upgrade Spring Batch to version 4.3.7_1
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karaf.git The following commit(s) were added to refs/heads/main by this push: new e7839307 Upgrade Spring Batch to version 4.3.7_1 e7839307 is described below commit e78393076b4b9b7ed9c3d5633247babb2bdc12e2 Author: Andrea Cosentino AuthorDate: Mon Oct 10 11:45:50 2022 +0200 Upgrade Spring Batch to version 4.3.7_1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 407ee3e2..0accf06d 100644 --- a/pom.xml +++ b/pom.xml @@ -285,7 +285,7 @@ 1.1.7.3 8.11.1_1 -4.3.5_1 +4.3.7_1 2.6.2_1 2.3.7.RELEASE_1 3.0.8.RELEASE_1
[GitHub] [camel] github-actions[bot] commented on pull request #8497: CAMEL-18582: Remove SocketTimeoutException from non retryable classes
github-actions[bot] commented on PR #8497: URL: https://github.com/apache/camel/pull/8497#issuecomment-1273086713 :no_entry_sign: There are (likely) no components to be tested in this PR -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel] 01/04: Upgrade Stringtemplate to version 4.3.4
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit 25b60ab6181ac308c56d4be6ad3614a94690233a Author: Andrea Cosentino AuthorDate: Mon Oct 10 11:04:38 2022 +0200 Upgrade Stringtemplate to version 4.3.4 --- parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parent/pom.xml b/parent/pom.xml index f60bd31983e..7453fdaa1ac 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -509,7 +509,7 @@ 1.0.56 27.1-jre 1.0.1 -4.3.3 +4.3.4 1.0.0 1.17.4 2.5.0
[camel] 02/04: Sync deps
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit 240354fcfd4ee9497bccdd41e42915cc05255486 Author: Andrea Cosentino AuthorDate: Mon Oct 10 11:07:31 2022 +0200 Sync deps --- camel-dependencies/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml index 0095dc10ef3..a2899517b22 100644 --- a/camel-dependencies/pom.xml +++ b/camel-dependencies/pom.xml @@ -517,7 +517,7 @@ 2.8.0 1.0.1 1.19 -4.3.3 +4.3.4 27.1-jre 1.0.56 1.6.4
[camel] 04/04: Sync deps
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit 1239c11d5757329c797f1e65bd2ea5175eb723eb Author: Andrea Cosentino AuthorDate: Mon Oct 10 12:09:49 2022 +0200 Sync deps --- camel-dependencies/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml index a2899517b22..be08383d4b8 100644 --- a/camel-dependencies/pom.xml +++ b/camel-dependencies/pom.xml @@ -551,7 +551,7 @@ 1.3.04 1.4.01 1.2 -1.14 +1.15 2.2.3 2.9.0 1.1.4c
[camel] branch main updated (b08f36d9ea1 -> 1239c11d575)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel.git from b08f36d9ea1 Sync deps new 25b60ab6181 Upgrade Stringtemplate to version 4.3.4 new 240354fcfd4 Sync deps new ba25b980ca2 Upgrade Batik to version 1.15 new 1239c11d575 Sync deps The 4 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: camel-dependencies/pom.xml | 4 ++-- parent/pom.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
[camel] 03/04: Upgrade Batik to version 1.15
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit ba25b980ca264a7a4b3e87b08f77a45523cce5e5 Author: Andrea Cosentino AuthorDate: Mon Oct 10 12:08:46 2022 +0200 Upgrade Batik to version 1.15 --- parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parent/pom.xml b/parent/pom.xml index 7453fdaa1ac..67c767c2817 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -539,7 +539,7 @@ 1.4.01 1.3.04 1.2 -1.14 +1.15 2.2.3 2.9.0 1.1.4c
[GitHub] [camel] essobedo commented on pull request #8497: CAMEL-18582: Remove SocketTimeoutException from non retryable classes
essobedo commented on PR #8497: URL: https://github.com/apache/camel/pull/8497#issuecomment-1273116640 During the last build, we can see in the log file that several `read timed out`s occurred but the build still passed, so it should be good now -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel] essobedo merged pull request #8497: CAMEL-18582: Remove SocketTimeoutException from non retryable classes
essobedo merged PR #8497: URL: https://github.com/apache/camel/pull/8497 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel] branch main updated: CAMEL-18582: Remove SocketTimeoutException from non retryable classes (#8497)
This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git The following commit(s) were added to refs/heads/main by this push: new 29522fcc170 CAMEL-18582: Remove SocketTimeoutException from non retryable classes (#8497) 29522fcc170 is described below commit 29522fcc170f7dbc9cea0a358a39c47f0784211f Author: Nicolas Filotto AuthorDate: Mon Oct 10 12:37:57 2022 +0200 CAMEL-18582: Remove SocketTimeoutException from non retryable classes (#8497) ## Motivation With the latest fix, we now get errors of type `SocketTimeoutException: Read timed out` indicating that the runner loses regularly the connection with maven central for some period of time but as it can recover it, to workaround it, we need to make sure that it can retry when it faces this kind of error. ## Modifications: * Use `default` as retry handler instead of `standard` to be able to change the non-retryable classes * By default, `SocketTimeoutException` as a subclass of `InterruptedIOException` is part of the non-retryable classes which is the reason why no retries are made, so we need to redefine the non-retryable classes without `InterruptedIOException` to make sure that it will retry in case of `Read timed out` --- .mvn/jvm.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mvn/jvm.config b/.mvn/jvm.config index 55b240284c2..600d595d45b 100644 --- a/.mvn/jvm.config +++ b/.mvn/jvm.config @@ -1 +1 @@ --Xmx3584m -Djava.awt.headless=true -XX:+UseG1GC -XX:+UseStringDeduplication -Daether.syncContext.named.factory=rwlock-local -Daether.syncContext.named.time=900 -Dmaven.wagon.rto=30 +-Xmx3584m -Djava.awt.headless=true -XX:+UseG1GC -XX:+UseStringDeduplication -Daether.syncContext.named.factory=rwlock-local -Daether.syncContext.named.time=900 -Dmaven.wagon.rto=30 -Dmaven.wagon.http.retryHandler.class=default -Dmaven.wagon.http.retryHandler.nonRetryableClasses=java.net.UnknownHostException,java.net.ConnectException,javax.net.ssl.SSLException
[camel-k] branch 3667/make-add-repo-support-global-operator created (now e080b969b)
This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a change to branch 3667/make-add-repo-support-global-operator in repository https://gitbox.apache.org/repos/asf/camel-k.git at e080b969b feat(cli): Make add-repo and remove-repo compatible with a global operator This branch includes the following new commits: new e080b969b feat(cli): Make add-repo and remove-repo compatible with a global operator 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.
[camel-k] 01/01: feat(cli): Make add-repo and remove-repo compatible with a global operator
This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch 3667/make-add-repo-support-global-operator in repository https://gitbox.apache.org/repos/asf/camel-k.git commit e080b969b5a39d99916f4cd1c5af26103cff30a8 Author: Nicolas Filotto AuthorDate: Mon Oct 10 12:58:53 2022 +0200 feat(cli): Make add-repo and remove-repo compatible with a global operator --- e2e/global/common/kamelet_test.go | 34 + pkg/cmd/kamelet.go | 1 + pkg/cmd/kamelet_add_repo.go | 66 +++-- pkg/cmd/kamelet_remove_repo.go | 98 + pkg/cmd/kamelet_remove_repo_test.go | 86 5 files changed, 261 insertions(+), 24 deletions(-) diff --git a/e2e/global/common/kamelet_test.go b/e2e/global/common/kamelet_test.go index e6b8834fb..ee15e1543 100644 --- a/e2e/global/common/kamelet_test.go +++ b/e2e/global/common/kamelet_test.go @@ -37,13 +37,11 @@ import ( * See https://github.com/apache/camel-k/issues/3667 for details */ func TestKameletClasspathLoading(t *testing.T) { - if os.Getenv("CAMEL_K_TEST_SKIP_PROBLEMATIC") == "true" { - t.Skip("WARNING: Test marked as problematic ... skipping") - } WithNewTestNamespace(t, func(ns string) { - operatorID := "camel-k-kamelet" - Expect(KamelInstallWithID(operatorID, ns).Execute()).To(Succeed()) + ns = "4tests" + operatorID := "camel-k-4test" + //Expect(KamelInstallWithID(operatorID, ns).Execute()).To(Succeed()) kameletName := "timer-source" removeKamelet(kameletName, ns) @@ -62,14 +60,14 @@ func TestKameletClasspathLoading(t *testing.T) { Eventually(IntegrationPodPhase(ns, "timer-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) Eventually(IntegrationLogs(ns, "timer-kamelet-integration")).Should(ContainSubstring("important message")) - - // Cleanup - Expect(Kamel("delete", "--all", "-n", ns).Execute()).Should(BeNil()) }) // Custom repo t.Run("test custom Kamelet repository", func(t *testing.T) { - + globalTest := os.Getenv("CAMEL_K_FORCE_GLOBAL_TEST") == "true" + if globalTest { + t.Skip("Not compatible with global operator mode") + } // Add the custom repository Expect(Kamel("kamelet", "add-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns, "-x", operatorID).Execute()).To(Succeed()) @@ -77,6 +75,24 @@ func TestKameletClasspathLoading(t *testing.T) { Eventually(IntegrationPodPhase(ns, "timer-custom-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) Eventually(IntegrationLogs(ns, "timer-custom-kamelet-integration")).Should(ContainSubstring("great message")) + + // Remove the custom repository + Expect(Kamel("kamelet", "remove-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns, "-x", operatorID).Execute()).To(Succeed()) + }) + + // Custom repo without operator ID + t.Run("test custom Kamelet repository without operator ID", func(t *testing.T) { + + // Add the custom repository + Expect(Kamel("kamelet", "add-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed()) + + Expect(KamelRunWithID(operatorID, ns, "files/TimerCustomKameletIntegration.java").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "timer-custom-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) + + Eventually(IntegrationLogs(ns, "timer-custom-kamelet-integration")).Should(ContainSubstring("great message")) + + // Remove the custom repository + Expect(Kamel("kamelet", "remove-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed()) }) }) } diff --git a/pkg/cmd/kamelet.go b/pkg/cmd/kamelet.go index 7645fd0c2..8b1f48b96 100644 --- a/pkg/cmd/kamelet.go +++ b/pkg/cmd/kamelet.go @@ -31,6 +31,7 @@ func newCmdKamelet(rootCmdOptions *RootCmdOptions) *cobra.Command { cmd.AddCommand(cmdOnly(newKameletGetCmd(rootCmdOptions))) cmd.AddCommand(cmdOnly(newKameletDeleteCmd(rootCmdOptions))) cmd.AddCommand(cmdOnly(newKameletAddRepoCmd(rootCmdOptions))) + cmd.AddCommand(cmdOnly(newKameletRemoveRepoCmd(rootCmdOptions))) return &cmd } diff --git a/pkg/cmd/kamelet_add_repo.g
[camel-k] 01/01: feat(cli): Make add-repo and remove-repo compatible with a global op
This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch 3667/make-add-repo-support-global-operator in repository https://gitbox.apache.org/repos/asf/camel-k.git commit b8212bc68c8435f1b296776992fd7ba3ed008f82 Author: Nicolas Filotto AuthorDate: Mon Oct 10 12:58:53 2022 +0200 feat(cli): Make add-repo and remove-repo compatible with a global op --- e2e/global/common/kamelet_test.go | 34 + pkg/cmd/kamelet.go | 1 + pkg/cmd/kamelet_add_repo.go | 66 +++-- pkg/cmd/kamelet_remove_repo.go | 98 + pkg/cmd/kamelet_remove_repo_test.go | 86 5 files changed, 261 insertions(+), 24 deletions(-) diff --git a/e2e/global/common/kamelet_test.go b/e2e/global/common/kamelet_test.go index e6b8834fb..ee15e1543 100644 --- a/e2e/global/common/kamelet_test.go +++ b/e2e/global/common/kamelet_test.go @@ -37,13 +37,11 @@ import ( * See https://github.com/apache/camel-k/issues/3667 for details */ func TestKameletClasspathLoading(t *testing.T) { - if os.Getenv("CAMEL_K_TEST_SKIP_PROBLEMATIC") == "true" { - t.Skip("WARNING: Test marked as problematic ... skipping") - } WithNewTestNamespace(t, func(ns string) { - operatorID := "camel-k-kamelet" - Expect(KamelInstallWithID(operatorID, ns).Execute()).To(Succeed()) + ns = "4tests" + operatorID := "camel-k-4test" + //Expect(KamelInstallWithID(operatorID, ns).Execute()).To(Succeed()) kameletName := "timer-source" removeKamelet(kameletName, ns) @@ -62,14 +60,14 @@ func TestKameletClasspathLoading(t *testing.T) { Eventually(IntegrationPodPhase(ns, "timer-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) Eventually(IntegrationLogs(ns, "timer-kamelet-integration")).Should(ContainSubstring("important message")) - - // Cleanup - Expect(Kamel("delete", "--all", "-n", ns).Execute()).Should(BeNil()) }) // Custom repo t.Run("test custom Kamelet repository", func(t *testing.T) { - + globalTest := os.Getenv("CAMEL_K_FORCE_GLOBAL_TEST") == "true" + if globalTest { + t.Skip("Not compatible with global operator mode") + } // Add the custom repository Expect(Kamel("kamelet", "add-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns, "-x", operatorID).Execute()).To(Succeed()) @@ -77,6 +75,24 @@ func TestKameletClasspathLoading(t *testing.T) { Eventually(IntegrationPodPhase(ns, "timer-custom-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) Eventually(IntegrationLogs(ns, "timer-custom-kamelet-integration")).Should(ContainSubstring("great message")) + + // Remove the custom repository + Expect(Kamel("kamelet", "remove-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns, "-x", operatorID).Execute()).To(Succeed()) + }) + + // Custom repo without operator ID + t.Run("test custom Kamelet repository without operator ID", func(t *testing.T) { + + // Add the custom repository + Expect(Kamel("kamelet", "add-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed()) + + Expect(KamelRunWithID(operatorID, ns, "files/TimerCustomKameletIntegration.java").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "timer-custom-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) + + Eventually(IntegrationLogs(ns, "timer-custom-kamelet-integration")).Should(ContainSubstring("great message")) + + // Remove the custom repository + Expect(Kamel("kamelet", "remove-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed()) }) }) } diff --git a/pkg/cmd/kamelet.go b/pkg/cmd/kamelet.go index 7645fd0c2..8b1f48b96 100644 --- a/pkg/cmd/kamelet.go +++ b/pkg/cmd/kamelet.go @@ -31,6 +31,7 @@ func newCmdKamelet(rootCmdOptions *RootCmdOptions) *cobra.Command { cmd.AddCommand(cmdOnly(newKameletGetCmd(rootCmdOptions))) cmd.AddCommand(cmdOnly(newKameletDeleteCmd(rootCmdOptions))) cmd.AddCommand(cmdOnly(newKameletAddRepoCmd(rootCmdOptions))) + cmd.AddCommand(cmdOnly(newKameletRemoveRepoCmd(rootCmdOptions))) return &cmd } diff --git a/pkg/cmd/kamelet_add_repo.go b/pk
[camel-k] branch 3667/make-add-repo-support-global-operator updated (e080b969b -> b8212bc68)
This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a change to branch 3667/make-add-repo-support-global-operator in repository https://gitbox.apache.org/repos/asf/camel-k.git discard e080b969b feat(cli): Make add-repo and remove-repo compatible with a global operator new b8212bc68 feat(cli): Make add-repo and remove-repo compatible with a global op 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 (e080b969b) \ N -- N -- N refs/heads/3667/make-add-repo-support-global-operator (b8212bc68) 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:
[camel-k] 01/01: feat(cli): Make add-repo and remove-repo compatible with a global op
This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch 3667/make-add-repo-support-global-operator in repository https://gitbox.apache.org/repos/asf/camel-k.git commit 27c071dfe1d320f6c6db42b7f9564cc8f5f4a6d9 Author: Nicolas Filotto AuthorDate: Mon Oct 10 12:58:53 2022 +0200 feat(cli): Make add-repo and remove-repo compatible with a global op --- e2e/global/common/kamelet_test.go | 34 + pkg/cmd/kamelet.go | 1 + pkg/cmd/kamelet_add_repo.go | 66 +++-- pkg/cmd/kamelet_remove_repo.go | 98 + pkg/cmd/kamelet_remove_repo_test.go | 86 5 files changed, 261 insertions(+), 24 deletions(-) diff --git a/e2e/global/common/kamelet_test.go b/e2e/global/common/kamelet_test.go index e6b8834fb..ee15e1543 100644 --- a/e2e/global/common/kamelet_test.go +++ b/e2e/global/common/kamelet_test.go @@ -37,13 +37,11 @@ import ( * See https://github.com/apache/camel-k/issues/3667 for details */ func TestKameletClasspathLoading(t *testing.T) { - if os.Getenv("CAMEL_K_TEST_SKIP_PROBLEMATIC") == "true" { - t.Skip("WARNING: Test marked as problematic ... skipping") - } WithNewTestNamespace(t, func(ns string) { - operatorID := "camel-k-kamelet" - Expect(KamelInstallWithID(operatorID, ns).Execute()).To(Succeed()) + ns = "4tests" + operatorID := "camel-k-4test" + //Expect(KamelInstallWithID(operatorID, ns).Execute()).To(Succeed()) kameletName := "timer-source" removeKamelet(kameletName, ns) @@ -62,14 +60,14 @@ func TestKameletClasspathLoading(t *testing.T) { Eventually(IntegrationPodPhase(ns, "timer-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) Eventually(IntegrationLogs(ns, "timer-kamelet-integration")).Should(ContainSubstring("important message")) - - // Cleanup - Expect(Kamel("delete", "--all", "-n", ns).Execute()).Should(BeNil()) }) // Custom repo t.Run("test custom Kamelet repository", func(t *testing.T) { - + globalTest := os.Getenv("CAMEL_K_FORCE_GLOBAL_TEST") == "true" + if globalTest { + t.Skip("Not compatible with global operator mode") + } // Add the custom repository Expect(Kamel("kamelet", "add-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns, "-x", operatorID).Execute()).To(Succeed()) @@ -77,6 +75,24 @@ func TestKameletClasspathLoading(t *testing.T) { Eventually(IntegrationPodPhase(ns, "timer-custom-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) Eventually(IntegrationLogs(ns, "timer-custom-kamelet-integration")).Should(ContainSubstring("great message")) + + // Remove the custom repository + Expect(Kamel("kamelet", "remove-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns, "-x", operatorID).Execute()).To(Succeed()) + }) + + // Custom repo without operator ID + t.Run("test custom Kamelet repository without operator ID", func(t *testing.T) { + + // Add the custom repository + Expect(Kamel("kamelet", "add-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed()) + + Expect(KamelRunWithID(operatorID, ns, "files/TimerCustomKameletIntegration.java").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "timer-custom-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) + + Eventually(IntegrationLogs(ns, "timer-custom-kamelet-integration")).Should(ContainSubstring("great message")) + + // Remove the custom repository + Expect(Kamel("kamelet", "remove-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed()) }) }) } diff --git a/pkg/cmd/kamelet.go b/pkg/cmd/kamelet.go index 7645fd0c2..8b1f48b96 100644 --- a/pkg/cmd/kamelet.go +++ b/pkg/cmd/kamelet.go @@ -31,6 +31,7 @@ func newCmdKamelet(rootCmdOptions *RootCmdOptions) *cobra.Command { cmd.AddCommand(cmdOnly(newKameletGetCmd(rootCmdOptions))) cmd.AddCommand(cmdOnly(newKameletDeleteCmd(rootCmdOptions))) cmd.AddCommand(cmdOnly(newKameletAddRepoCmd(rootCmdOptions))) + cmd.AddCommand(cmdOnly(newKameletRemoveRepoCmd(rootCmdOptions))) return &cmd } diff --git a/pkg/cmd/kamelet_add_repo.go b/pk
[camel-k] branch 3667/make-add-repo-support-global-operator updated (b8212bc68 -> 27c071dfe)
This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a change to branch 3667/make-add-repo-support-global-operator in repository https://gitbox.apache.org/repos/asf/camel-k.git discard b8212bc68 feat(cli): Make add-repo and remove-repo compatible with a global op new 27c071dfe feat(cli): Make add-repo and remove-repo compatible with a global op 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 (b8212bc68) \ N -- N -- N refs/heads/3667/make-add-repo-support-global-operator (27c071dfe) 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: pkg/cmd/kamelet_add_repo.go| 2 +- pkg/cmd/kamelet_remove_repo.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
[camel-k] branch 3667/make-add-repo-support-global-operator updated (27c071dfe -> f0d7ff37d)
This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a change to branch 3667/make-add-repo-support-global-operator in repository https://gitbox.apache.org/repos/asf/camel-k.git discard 27c071dfe feat(cli): Make add-repo and remove-repo compatible with a global op new f0d7ff37d feat(cli): Make add-repo and remove-repo compatible with a global op 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 (27c071dfe) \ N -- N -- N refs/heads/3667/make-add-repo-support-global-operator (f0d7ff37d) 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: e2e/global/common/kamelet_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)
[camel-k] 01/01: feat(cli): Make add-repo and remove-repo compatible with a global op
This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch 3667/make-add-repo-support-global-operator in repository https://gitbox.apache.org/repos/asf/camel-k.git commit f0d7ff37d6267e5feb8ab8efbd361933a505e92b Author: Nicolas Filotto AuthorDate: Mon Oct 10 12:58:53 2022 +0200 feat(cli): Make add-repo and remove-repo compatible with a global op --- e2e/global/common/kamelet_test.go | 29 --- pkg/cmd/kamelet.go | 1 + pkg/cmd/kamelet_add_repo.go | 66 +++-- pkg/cmd/kamelet_remove_repo.go | 98 + pkg/cmd/kamelet_remove_repo_test.go | 86 5 files changed, 258 insertions(+), 22 deletions(-) diff --git a/e2e/global/common/kamelet_test.go b/e2e/global/common/kamelet_test.go index e6b8834fb..d22d2fab2 100644 --- a/e2e/global/common/kamelet_test.go +++ b/e2e/global/common/kamelet_test.go @@ -37,9 +37,6 @@ import ( * See https://github.com/apache/camel-k/issues/3667 for details */ func TestKameletClasspathLoading(t *testing.T) { - if os.Getenv("CAMEL_K_TEST_SKIP_PROBLEMATIC") == "true" { - t.Skip("WARNING: Test marked as problematic ... skipping") - } WithNewTestNamespace(t, func(ns string) { operatorID := "camel-k-kamelet" @@ -62,14 +59,14 @@ func TestKameletClasspathLoading(t *testing.T) { Eventually(IntegrationPodPhase(ns, "timer-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) Eventually(IntegrationLogs(ns, "timer-kamelet-integration")).Should(ContainSubstring("important message")) - - // Cleanup - Expect(Kamel("delete", "--all", "-n", ns).Execute()).Should(BeNil()) }) // Custom repo t.Run("test custom Kamelet repository", func(t *testing.T) { - + globalTest := os.Getenv("CAMEL_K_FORCE_GLOBAL_TEST") == "true" + if globalTest { + t.Skip("Not compatible with global operator mode") + } // Add the custom repository Expect(Kamel("kamelet", "add-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns, "-x", operatorID).Execute()).To(Succeed()) @@ -77,6 +74,24 @@ func TestKameletClasspathLoading(t *testing.T) { Eventually(IntegrationPodPhase(ns, "timer-custom-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) Eventually(IntegrationLogs(ns, "timer-custom-kamelet-integration")).Should(ContainSubstring("great message")) + + // Remove the custom repository + Expect(Kamel("kamelet", "remove-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns, "-x", operatorID).Execute()).To(Succeed()) + }) + + // Custom repo without operator ID + t.Run("test custom Kamelet repository without operator ID", func(t *testing.T) { + + // Add the custom repository + Expect(Kamel("kamelet", "add-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed()) + + Expect(KamelRunWithID(operatorID, ns, "files/TimerCustomKameletIntegration.java").Execute()).To(Succeed()) + Eventually(IntegrationPodPhase(ns, "timer-custom-kamelet-integration"), TestTimeoutLong).Should(Equal(corev1.PodRunning)) + + Eventually(IntegrationLogs(ns, "timer-custom-kamelet-integration")).Should(ContainSubstring("great message")) + + // Remove the custom repository + Expect(Kamel("kamelet", "remove-repo", "github:apache/camel-k/e2e/global/common/files/kamelets", "-n", ns).Execute()).To(Succeed()) }) }) } diff --git a/pkg/cmd/kamelet.go b/pkg/cmd/kamelet.go index 7645fd0c2..8b1f48b96 100644 --- a/pkg/cmd/kamelet.go +++ b/pkg/cmd/kamelet.go @@ -31,6 +31,7 @@ func newCmdKamelet(rootCmdOptions *RootCmdOptions) *cobra.Command { cmd.AddCommand(cmdOnly(newKameletGetCmd(rootCmdOptions))) cmd.AddCommand(cmdOnly(newKameletDeleteCmd(rootCmdOptions))) cmd.AddCommand(cmdOnly(newKameletAddRepoCmd(rootCmdOptions))) + cmd.AddCommand(cmdOnly(newKameletRemoveRepoCmd(rootCmdOptions))) return &cmd } diff --git a/pkg/cmd/kamelet_add_repo.go b/pkg/cmd/kamelet_add_repo.go index 92591823d..f7f8b6d9f 100644 --- a/pkg/cmd/kamelet_add_repo.go +++ b/pkg/cmd/kamelet_add_repo.go @@ -23,6 +23,7 @@ import ( "regexp" v1 "github.com/apache/camel-k/pkg/apis/camel/v1" + platformutil "github.com/apache/camel-k/pkg/platform" "github.com/spf13/cobra" k8serrors "
[camel] branch regen_bot updated (1c624660733 -> 1239c11d575)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot in repository https://gitbox.apache.org/repos/asf/camel.git from 1c624660733 CAMEL-18558: camel-jbang - get inflight and blocked exchanges add e88a28eabb1 Bump actions/labeler from 4.0.1 to 4.0.2 add bfbda345349 Upgrade AWS SDK v2 to version 2.17.290 add 0a924eb4107 Sync deps add 1024ee17659 Upgrade Mybatis to version 3.5.11 add b08f36d9ea1 Sync deps add 25b60ab6181 Upgrade Stringtemplate to version 4.3.4 add 240354fcfd4 Sync deps add ba25b980ca2 Upgrade Batik to version 1.15 add 1239c11d575 Sync deps No new revisions were added by this update. Summary of changes: .github/workflows/generic-pr.yaml | 2 +- camel-dependencies/pom.xml| 8 parent/pom.xml| 8 3 files changed, 9 insertions(+), 9 deletions(-)
[GitHub] [camel-k] essobedo opened a new pull request, #3731: feat(cli): Make add-repo and remove-repo compatible with a global operator
essobedo opened a new pull request, #3731: URL: https://github.com/apache/camel-k/pull/3731 fixes #3667 ## Motivation The subcommand `add-repo` is not compatible with a global operator as it is now, it should be reviewed to propose a way to use it in case a global operator is used. ## Modifications: * Add the subcommand `remove-repo` to be able to remove a repository in order to be able to clean up the Integration Platform used for the e2e test * Update the active primary IntegrationPlaform of the namespace when the operator id is not set **Release Note** ```release-note feat(cli): Make add-repo and remove-repo compatible with a global operator ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel-quarkus] svkcemk commented on pull request #4133: Improve test coverage for scheduler component.
svkcemk commented on PR #4133: URL: https://github.com/apache/camel-quarkus/pull/4133#issuecomment-1273155579 Thanks @ppalaga @aldettinger for review, sorry for late update ( I was on PTO last week ) updated the PR based o the review. @aldettinger I am creating a separate PR for the case : Forcing the scheduler to be idle. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch licenses-2 created (now 48dcecc9c)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch licenses-2 in repository https://gitbox.apache.org/repos/asf/camel-k.git at 48dcecc9c Fixed licenses for addons No new revisions were added by this update.
[camel-k] branch licenses-2 updated: Fixes licenses in pkg
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch licenses-2 in repository https://gitbox.apache.org/repos/asf/camel-k.git The following commit(s) were added to refs/heads/licenses-2 by this push: new c826d158e Fixes licenses in pkg c826d158e is described below commit c826d158e2b3dae835253b0bc2175a1eed3e7662 Author: Andrea Cosentino AuthorDate: Mon Oct 10 13:22:48 2022 +0200 Fixes licenses in pkg --- pkg/install/kamelets.go | 6 +++--- pkg/install/platform.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/install/kamelets.go b/pkg/install/kamelets.go index 10fb1cd54..569453734 100644 --- a/pkg/install/kamelets.go +++ b/pkg/install/kamelets.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/pkg/install/platform.go b/pkg/install/platform.go index 9a087d077..cfad02cf9 100644 --- a/pkg/install/platform.go +++ b/pkg/install/platform.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
[camel-k] 01/01: Fixes licenses in pkg
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch licenses-2 in repository https://gitbox.apache.org/repos/asf/camel-k.git commit cd0bdd3ceaadf6d762e376eb958e4f5f1fa1b6c1 Author: Andrea Cosentino AuthorDate: Mon Oct 10 13:22:48 2022 +0200 Fixes licenses in pkg --- pkg/install/kamelets.go | 6 +++--- pkg/install/platform.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/install/kamelets.go b/pkg/install/kamelets.go index 10fb1cd54..569453734 100644 --- a/pkg/install/kamelets.go +++ b/pkg/install/kamelets.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/pkg/install/platform.go b/pkg/install/platform.go index 9a087d077..cfad02cf9 100644 --- a/pkg/install/platform.go +++ b/pkg/install/platform.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
[camel-k] branch licenses-2 updated (c826d158e -> cd0bdd3ce)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch licenses-2 in repository https://gitbox.apache.org/repos/asf/camel-k.git discard c826d158e Fixes licenses in pkg omit 48dcecc9c Fixed licenses for addons add b958b1c70 chore(deps): bump github.com/redhat-developer/service-binding-operator add ff4259a66 Fixed licenses for addons new cd0bdd3ce Fixes licenses in pkg 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 (c826d158e) \ N -- N -- N refs/heads/licenses-2 (cd0bdd3ce) 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: go.mod | 6 +++--- go.sum | 10 ++ 2 files changed, 9 insertions(+), 7 deletions(-)
[camel-k] branch licenses-2 updated (cd0bdd3ce -> 27f636aa3)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch licenses-2 in repository https://gitbox.apache.org/repos/asf/camel-k.git discard cd0bdd3ce Fixes licenses in pkg new 27f636aa3 Fixes licenses in pkg 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 (cd0bdd3ce) \ N -- N -- N refs/heads/licenses-2 (27f636aa3) 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:
[camel-k] 01/01: Fixes licenses in pkg
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch licenses-2 in repository https://gitbox.apache.org/repos/asf/camel-k.git commit 27f636aa3ae57ff874e2d51e898387a12e87500a Author: Andrea Cosentino AuthorDate: Mon Oct 10 13:22:48 2022 +0200 Fixes licenses in pkg --- pkg/install/kamelets.go | 6 +++--- pkg/install/platform.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/install/kamelets.go b/pkg/install/kamelets.go index 10fb1cd54..569453734 100644 --- a/pkg/install/kamelets.go +++ b/pkg/install/kamelets.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/pkg/install/platform.go b/pkg/install/platform.go index 9a087d077..cfad02cf9 100644 --- a/pkg/install/platform.go +++ b/pkg/install/platform.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
[GitHub] [camel-k] oscerd opened a new pull request, #3732: Fixes licenses in pkg
oscerd opened a new pull request, #3732: URL: https://github.com/apache/camel-k/pull/3732 **Release Note** ```release-note NONE ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel-k] oscerd merged pull request #3732: Fixes licenses in pkg
oscerd merged PR #3732: URL: https://github.com/apache/camel-k/pull/3732 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch main updated: Fixes licenses in pkg
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git The following commit(s) were added to refs/heads/main by this push: new c0676c054 Fixes licenses in pkg c0676c054 is described below commit c0676c05462127dede51cc18d518b2f6b42db449 Author: Andrea Cosentino AuthorDate: Mon Oct 10 13:22:48 2022 +0200 Fixes licenses in pkg --- pkg/install/kamelets.go | 6 +++--- pkg/install/platform.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/install/kamelets.go b/pkg/install/kamelets.go index 10fb1cd54..569453734 100644 --- a/pkg/install/kamelets.go +++ b/pkg/install/kamelets.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/pkg/install/platform.go b/pkg/install/platform.go index 9a087d077..cfad02cf9 100644 --- a/pkg/install/platform.go +++ b/pkg/install/platform.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
[camel-karaf] branch main updated: Upgrade AWS SDK v2 to version 2.17.281_1
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karaf.git The following commit(s) were added to refs/heads/main by this push: new 8fc7d3d1 Upgrade AWS SDK v2 to version 2.17.281_1 8fc7d3d1 is described below commit 8fc7d3d16b66862ab150ffa7e057c4589b8def6c Author: Andrea Cosentino AuthorDate: Mon Oct 10 13:13:17 2022 +0200 Upgrade AWS SDK v2 to version 2.17.281_1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0accf06d..7584b266 100644 --- a/pom.xml +++ b/pom.xml @@ -127,7 +127,7 @@ 4.3.1_1 1.21 2.12.3 -2.17.220_1 +2.17.281_1 1.16.0_1 2.0.3_1 1.5.0_1
[camel] branch regen_bot updated (1239c11d575 -> 29522fcc170)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot in repository https://gitbox.apache.org/repos/asf/camel.git from 1239c11d575 Sync deps add 29522fcc170 CAMEL-18582: Remove SocketTimeoutException from non retryable classes (#8497) No new revisions were added by this update. Summary of changes: .mvn/jvm.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
[GitHub] [camel-website] github-actions[bot] commented on pull request #911: Content Based Routing blog post
github-actions[bot] commented on PR #911: URL: https://github.com/apache/camel-website/pull/911#issuecomment-1273182753 🚀 Preview is available at https://pr-911--camel.netlify.app -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch backport-3732-to-release-1.10.x created (now 9f8ef6067)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch backport-3732-to-release-1.10.x in repository https://gitbox.apache.org/repos/asf/camel-k.git at 9f8ef6067 Fixes licenses in pkg No new revisions were added by this update.
[GitHub] [camel-k] github-actions[bot] opened a new pull request, #3733: [Backport release-1.10.x] Fixes licenses in pkg
github-actions[bot] opened a new pull request, #3733: URL: https://github.com/apache/camel-k/pull/3733 Backport c0676c05462127dede51cc18d518b2f6b42db449 from #3732 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel-website] zregvart merged pull request #911: Content Based Routing blog post
zregvart merged PR #911: URL: https://github.com/apache/camel-website/pull/911 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-website] 04/07: Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md
This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git commit 56960630e0f90ccb734d04b54a7db969f65476c1 Author: Matteo Mortari AuthorDate: Wed Oct 5 17:02:43 2022 +0200 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md Co-authored-by: Zoran Regvart --- .../index.md| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md index a65ea8c3..d7b058e1 100644 --- a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md +++ b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md @@ -50,7 +50,7 @@ from("direct:hl7") from("direct:label") .unmarshal().hl7() .to("atlasmap:atlasmap-mapping.adm").unmarshal().json() -.process(kogitoDMNEvaluate) // <== Rules as DMN decisions +.process(kogitoDMNEvaluate) // <== Rules as DMN decisions .setHeader("topicsHeader", simple("${body[topic names]}")) ; ```
[camel-website] 02/07: Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md
This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git commit 477c1e4fc5d323daeecf84f62f92bf0e7a4133fe Author: Matteo Mortari AuthorDate: Wed Oct 5 14:41:43 2022 +0200 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md Co-authored-by: Zoran Regvart --- .../index.md| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md index 1a0b13df..1b27e39e 100644 --- a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md +++ b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md @@ -9,7 +9,7 @@ preview: "Content Based Routing using Quarkus as a development platform includin {{< youtube id="nXyKM-xds2M" class="video" >}} -In this post I want to share with you how to implement a complete, end-to-end **Content Based Routing** solution using [Apache Camel](https://camel.apache.org/#apache-camel-projects), [AtlasMap](https://www.atlasmap.io/) and [Quarkus](https://quarkus.io/) as a developer platform, including: [Drools DMN Engine](https://www.drools.org/learn/dmn.html), [Kogito](https://kogito.kie.org/). Apache Kafka is used in this solution as a message broker. +In this post I want to share with you how to implement a complete, end-to-end **Content Based Routing** solution using [Apache Camel](/#apache-camel-projects), [AtlasMap](https://www.atlasmap.io/) and [Quarkus](https://quarkus.io/) as a developer platform, including: [Drools DMN Engine](https://www.drools.org/learn/dmn.html), [Kogito](https://kogito.kie.org/). Apache Kafka is used in this solution as a message broker. ## Content based routing overview
[camel-website] 07/07: Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md
This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git commit fe7fa77f52f630617fb1505bb0287aa5d3b399ce Author: Matteo Mortari AuthorDate: Mon Oct 10 11:19:23 2022 +0200 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md --- .../index.md| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md index e839d3e9..7c863cd1 100644 --- a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md +++ b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md @@ -1,6 +1,6 @@ --- title: "Content Based Routing with Camel, Drools, Quarkus, Kogito, AtlasMap and Apache Kafka!" -date: 2022-10-04T11:56:35+02:00 +date: 2022-10-10T11:56:35+02:00 draft: false authors: ["tarilabs"] categories: ["EIP", "Quarkus", "Drools", "Kogito", "Usecases", "Videos"]
[camel-website] 05/07: Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md
This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git commit cf66a21481ccd70775346f60cd318ef980c33e5f Author: Matteo Mortari AuthorDate: Wed Oct 5 17:02:52 2022 +0200 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md Co-authored-by: Zoran Regvart --- .../index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md index d7b058e1..e839d3e9 100644 --- a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md +++ b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md @@ -94,6 +94,6 @@ If you found this content useful, you might be interested to know this is a seco You can reference that for additional technical details about the integration of Camel and Drools thanks to Kogito. In this installment instead I wanted to expand on that, to finally share an end-to-end solution which could be easily deployed on the cloud! -Feedback? -Questions? +Feedback? +Questions? Don't hesitate to let us know!
[camel-website] 03/07: Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md
This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git commit d546ee22877e1b63d7b3d0475cdd90eb0a122b9d Author: Matteo Mortari AuthorDate: Wed Oct 5 14:41:57 2022 +0200 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md Co-authored-by: Zoran Regvart --- .../index.md| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md index 1b27e39e..a65ea8c3 100644 --- a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md +++ b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md @@ -37,7 +37,7 @@ In a [separate post](https://blog.kie.org/2022/01/data-enrichment-use-case-with- ## Technical details -In this section, I want to highlight how the [Camel DSL](https://camel.apache.org/manual/dsl.html) allows to implement the EIP pattern very easily: +In this section, I want to highlight how the [Camel DSL](/manual/dsl.html) allows to implement the EIP pattern very easily: ```java from("direct:hl7")
[camel-website] 06/07: implement PullRequest feedback
This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git commit dcb6e23e0d0d29087462a66e6c1e99fbe2a87fee Author: tarilabs AuthorDate: Mon Oct 10 10:01:46 2022 +0200 implement PullRequest feedback --- .../image-3.png| Bin 130832 -> 132362 bytes .../image-4.png| Bin 208390 -> 210409 bytes .../image-5.png| Bin 265795 -> 273532 bytes 3 files changed, 0 insertions(+), 0 deletions(-) diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-3.png b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-3.png index aa25600b..9d17bbb0 100644 Binary files a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-3.png and b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-3.png differ diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-4.png b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-4.png index c72c6001..e3531eb9 100644 Binary files a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-4.png and b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-4.png differ diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-5.png b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-5.png index 1dc20c5f..88c77a1a 100644 Binary files a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-5.png and b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-5.png differ
[camel-website] branch main updated (92a69175 -> fe7fa77f)
This is an automated email from the ASF dual-hosted git repository. zregvart pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git from 92a69175 Camel 3.19 - whats new. (#913) new fac7b223 Content Based Routing blog post new 477c1e4f Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md new d546ee22 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md new 56960630 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md new cf66a214 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md new dcb6e23e implement PullRequest feedback new fe7fa77f Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md The 7 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: .../image-1.png| Bin 0 -> 23916 bytes .../image-1536x646.png | Bin 0 -> 381606 bytes .../image-2-1536x746.png | Bin 0 -> 273985 bytes .../image-3.png| Bin 0 -> 132362 bytes .../image-4.png| Bin 0 -> 210409 bytes .../image-5.png| Bin 0 -> 273532 bytes .../index.md | 99 + 7 files changed, 99 insertions(+) create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1536x646.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-2-1536x746.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-3.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-4.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-5.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md
[camel-website] 01/07: Content Based Routing blog post
This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git commit fac7b223b347501c7c5a8d75ae57e7b15d89 Author: tarilabs AuthorDate: Tue Oct 4 15:14:12 2022 +0200 Content Based Routing blog post --- .../image-1.png| Bin 0 -> 23916 bytes .../image-1536x646.png | Bin 0 -> 381606 bytes .../image-2-1536x746.png | Bin 0 -> 273985 bytes .../image-3.png| Bin 0 -> 130832 bytes .../image-4.png| Bin 0 -> 208390 bytes .../image-5.png| Bin 0 -> 265795 bytes .../index.md | 99 + 7 files changed, 99 insertions(+) diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1.png b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1.png new file mode 100644 index ..ede9e2df Binary files /dev/null and b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1.png differ diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1536x646.png b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1536x646.png new file mode 100644 index ..629d49a2 Binary files /dev/null and b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1536x646.png differ diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-2-1536x746.png b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-2-1536x746.png new file mode 100644 index ..a0f44a0a Binary files /dev/null and b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-2-1536x746.png differ diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-3.png b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-3.png new file mode 100644 index ..aa25600b Binary files /dev/null and b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-3.png differ diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-4.png b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-4.png new file mode 100644 index ..c72c6001 Binary files /dev/null and b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-4.png differ diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-5.png b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-5.png new file mode 100644 index ..1dc20c5f Binary files /dev/null and b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-5.png differ diff --git a/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md new file mode 100644 index ..1a0b13df --- /dev/null +++ b/content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md @@ -0,0 +1,99 @@ +--- +title: "Content Based Routing with Camel, Drools, Quarkus, Kogito, AtlasMap and Apache Kafka!" +date: 2022-10-04T11:56:35+02:00 +draft: false +authors: ["tarilabs"] +categories: ["EIP", "Quarkus", "Drools", "Kogito", "Usecases", "Videos"] +preview: "Content Based Routing using Quarkus as a development platform including Apache Camel, Drools DMN Engine, Kogito, AtlasMap and Apache Kafka!" +--- + +{{< youtube id="nXyKM-xds2M" class="video" >}} + +In this post I want to share with you how to implement a complete, end-to-end **Content Based Routing** solution using [Apache Camel](https://camel.apache.org/#apache-camel-projects), [AtlasMap](https://www.atlasmap.io/) and [Quarkus](https://quarkus.io/) as a developer platform, including: [Drools DMN Engine](https://www.drools.org/learn/dmn.html), [Kogito](https://kogito.kie.org/). Apache Kafka is used in this solution as a message broker. + +## Content based routing overview + +Here is the Enterprise Integration Pattern (EIP) diagram of the flow, annotated with some details of the components used: + + + +The focus of this solution is **routing healthcare-related messages**; for this demo examp
[GitHub] [camel-website] zregvart commented on pull request #911: Content Based Routing blog post
zregvart commented on PR #911: URL: https://github.com/apache/camel-website/pull/911#issuecomment-1273184754 Thanks @tarilabs! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel-k] oscerd merged pull request #3733: [Backport release-1.10.x] Fixes licenses in pkg
oscerd merged PR #3733: URL: https://github.com/apache/camel-k/pull/3733 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-k] branch release-1.10.x updated: Fixes licenses in pkg
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch release-1.10.x in repository https://gitbox.apache.org/repos/asf/camel-k.git The following commit(s) were added to refs/heads/release-1.10.x by this push: new 694fcec8c Fixes licenses in pkg 694fcec8c is described below commit 694fcec8c979278e3fcb37572390839e2650bab4 Author: Andrea Cosentino AuthorDate: Mon Oct 10 13:22:48 2022 +0200 Fixes licenses in pkg --- pkg/install/kamelets.go | 6 +++--- pkg/install/platform.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/install/kamelets.go b/pkg/install/kamelets.go index 10fb1cd54..569453734 100644 --- a/pkg/install/kamelets.go +++ b/pkg/install/kamelets.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/pkg/install/platform.go b/pkg/install/platform.go index 9a087d077..cfad02cf9 100644 --- a/pkg/install/platform.go +++ b/pkg/install/platform.go @@ -1,12 +1,12 @@ /* Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with +contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at +the License. You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
[GitHub] [camel-website] tarilabs commented on pull request #911: Content Based Routing blog post
tarilabs commented on PR #911: URL: https://github.com/apache/camel-website/pull/911#issuecomment-1273189912 Thank you _all_ for guiding me in a successful submission! 😅 Camel is another project I really liked across all these years (as another is Drools as it could be imagined😬) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel] branch main updated (29522fcc170 -> 7cd14876c2d)
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/camel.git from 29522fcc170 CAMEL-18582: Remove SocketTimeoutException from non retryable classes (#8497) new 33acfa16355 Upgrade ArangoDB Driver to version 6.19.0 new 7cd14876c2d Sync deps The 2 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: camel-dependencies/pom.xml | 2 +- parent/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
[camel] 01/02: Upgrade ArangoDB Driver to version 6.19.0
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit 33acfa16355fe9ab8acbaa9c793d25c0c1c1cc28 Author: Andrea Cosentino AuthorDate: Mon Oct 10 13:28:34 2022 +0200 Upgrade ArangoDB Driver to version 6.19.0 --- parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parent/pom.xml b/parent/pom.xml index 67c767c2817..e9a2bf2b114 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -57,7 +57,7 @@ 1.19.0 0.9 1.1.20 -6.18.0 +6.19.0 1.0.1 1.3.2 1.10.3
[camel] 02/02: Sync deps
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git commit 7cd14876c2da2b91f11a3baf8e2ed51a24ab1572 Author: Andrea Cosentino AuthorDate: Mon Oct 10 13:46:32 2022 +0200 Sync deps --- camel-dependencies/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml index be08383d4b8..9f2fbb861ff 100644 --- a/camel-dependencies/pom.xml +++ b/camel-dependencies/pom.xml @@ -40,7 +40,7 @@ 0.9 2.0.0.AM26 1.1.20 -6.18.0 +6.19.0 1.0.1 1.3.2 1.10.3
[camel-website] branch regen_bot updated (92a69175 -> fe7fa77f)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot in repository https://gitbox.apache.org/repos/asf/camel-website.git from 92a69175 Camel 3.19 - whats new. (#913) add fac7b223 Content Based Routing blog post add 477c1e4f Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md add d546ee22 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md add 56960630 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md add cf66a214 Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md add dcb6e23e implement PullRequest feedback add fe7fa77f Update content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md No new revisions were added by this update. Summary of changes: .../image-1.png| Bin 0 -> 23916 bytes .../image-1536x646.png | Bin 0 -> 381606 bytes .../image-2-1536x746.png | Bin 0 -> 273985 bytes .../image-3.png| Bin 0 -> 132362 bytes .../image-4.png| Bin 0 -> 210409 bytes .../image-5.png| Bin 0 -> 273532 bytes .../index.md | 99 + 7 files changed, 99 insertions(+) create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-1536x646.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-2-1536x746.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-3.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-4.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/image-5.png create mode 100644 content/blog/2022/10/ContentBasedRoutingWithCamelDroolsQuarkusKogitoAltasMapApacheKafka/index.md
[GitHub] [camel-quarkus] jamesnetherton merged pull request #4166: Fix Salesforce endpoint URIs for CDC eventing
jamesnetherton merged PR #4166: URL: https://github.com/apache/camel-quarkus/pull/4166 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[GitHub] [camel-quarkus] jamesnetherton closed issue #4161: SalesforceIntegrationTest.testCDCAndStreamingEvents fails
jamesnetherton closed issue #4161: SalesforceIntegrationTest.testCDCAndStreamingEvents fails URL: https://github.com/apache/camel-quarkus/issues/4161 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org
[camel-quarkus] branch main updated: Fix Salesforce endpoint URIs for CDC eventing
This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git The following commit(s) were added to refs/heads/main by this push: new 64d31353a4 Fix Salesforce endpoint URIs for CDC eventing 64d31353a4 is described below commit 64d31353a402dad4c9df8ace5a97ec83c1dccb90 Author: James Netherton AuthorDate: Mon Oct 10 07:32:08 2022 +0100 Fix Salesforce endpoint URIs for CDC eventing Fixes #4161 --- .../camel/quarkus/component/salesforce/SalesforceResource.java | 2 +- .../apache/camel/quarkus/component/salesforce/SalesforceRoutes.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/integration-tests/salesforce/src/main/java/org/apache/camel/quarkus/component/salesforce/SalesforceResource.java b/integration-tests/salesforce/src/main/java/org/apache/camel/quarkus/component/salesforce/SalesforceResource.java index e6b7383358..309d735852 100644 --- a/integration-tests/salesforce/src/main/java/org/apache/camel/quarkus/component/salesforce/SalesforceResource.java +++ b/integration-tests/salesforce/src/main/java/org/apache/camel/quarkus/component/salesforce/SalesforceResource.java @@ -290,7 +290,7 @@ public class SalesforceResource { @GET @Produces(MediaType.APPLICATION_JSON) public String getPlatformEvent() { -return consumerTemplate.receiveBody("salesforce:event/TestEvent__e?rawPayload=true", 1, String.class); +return consumerTemplate.receiveBody("salesforce:subscribe:event/TestEvent__e?rawPayload=true", 1, String.class); } private JsonObject accountToJsonObject(Account account) { diff --git a/integration-tests/salesforce/src/main/java/org/apache/camel/quarkus/component/salesforce/SalesforceRoutes.java b/integration-tests/salesforce/src/main/java/org/apache/camel/quarkus/component/salesforce/SalesforceRoutes.java index 5c12346250..d952e85347 100644 --- a/integration-tests/salesforce/src/main/java/org/apache/camel/quarkus/component/salesforce/SalesforceRoutes.java +++ b/integration-tests/salesforce/src/main/java/org/apache/camel/quarkus/component/salesforce/SalesforceRoutes.java @@ -73,17 +73,17 @@ public class SalesforceRoutes extends RouteBuilder { if (!wireMockUrl.isPresent()) { // Change Data Capture - from("salesforce:/data/AccountChangeEvent?replayId=-1").routeId("cdc").autoStartup(false) + from("salesforce:subscribe:/data/AccountChangeEvent?replayId=-1").routeId("cdc").autoStartup(false) .to("seda:events"); // Streaming API : topic consumer - getting Account object -from("salesforce:CamelTestTopic?notifyForFields=ALL&" +from("salesforce:subscribe:CamelTestTopic?notifyForFields=ALL&" + "notifyForOperationCreate=true¬ifyForOperationDelete=true¬ifyForOperationUpdate=true&" + "sObjectClass=" + Account.class.getName() + "&updateTopic=true&sObjectQuery=SELECT Id, Name FROM Account") .to("seda:CamelTestTopic"); // Streaming API : topic consumer with RAW Payload - getting json as String - from("salesforce:CamelTestTopic?rawPayload=true¬ifyForFields=ALL&" + from("salesforce:subscribe:CamelTestTopic?rawPayload=true¬ifyForFields=ALL&" + "notifyForOperationCreate=true¬ifyForOperationDelete=true¬ifyForOperationUpdate=true&" + "updateTopic=true&sObjectQuery=SELECT Id, Name FROM Account") .to("seda:RawPayloadCamelTestTopic");
[GitHub] [camel-quarkus] jamesnetherton merged pull request #4167: Backports 2.13.x
jamesnetherton merged PR #4167: URL: https://github.com/apache/camel-quarkus/pull/4167 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org