This is an automated email from the ASF dual-hosted git repository. bvahdat pushed a change to branch cleanup in repository https://gitbox.apache.org/repos/asf/camel.git
omit d9d10d293b3 cleanup camel-tracing codebase a bit omit e17b7743a03 cleanup camel-tracing codebase a bit add b70c82f9742 CAMEL-18077: camel-github - Add gist resource resolver add b929b1b6986 CAMEL-18077: camel-jbang - Run from gist add cccc1dba599 CAMEL-18077: camel-jbang - Run from gist add 8e3b7246bd5 CAMEL-18077: camel-jbang - Run from gist add d7e2573fe76 Tone down logging noise new eafde9f989d cleanup camel-tracing codebase a bit (#7566) 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 (d9d10d293b3) \ N -- N -- N refs/heads/cleanup (eafde9f989d) 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: .../http/vertx/VertxPlatformHttpServer.java | 2 +- .../org/apache/camel/resource-resolver/gist} | 2 +- .../src/main/docs/resourceresolver-github.adoc | 19 ++++ .../{GitHubResource.java => GistResource.java} | 6 +- ...urceResolver.java => GistResourceResolver.java} | 56 ++++------ .../camel/github/GistResourceResolverTest.java} | 28 ++--- .../modules/ROOT/pages/camel-jbang.adoc | 30 +++++ .../camel/dsl/jbang/core/commands/GistHelper.java | 123 +++++++++++++++++++++ .../apache/camel/dsl/jbang/core/commands/Init.java | 33 +++++- .../apache/camel/dsl/jbang/core/commands/Run.java | 25 +++++ 10 files changed, 265 insertions(+), 59 deletions(-) copy components/{camel-as2/camel-as2-component/src/generated/resources/META-INF/services/org/apache/camel/component/as2 => camel-resourceresolver-github/src/generated/resources/META-INF/services/org/apache/camel/resource-resolver/gist} (53%) copy components/camel-resourceresolver-github/src/main/java/org/apache/camel/github/{GitHubResource.java => GistResource.java} (91%) copy components/camel-resourceresolver-github/src/main/java/org/apache/camel/github/{GitHubResourceResolver.java => GistResourceResolver.java} (50%) copy components/{camel-spring-main/src/test/java/org/apache/camel/spring/MainDummyTest.java => camel-resourceresolver-github/src/test/java/org/apache/camel/github/GistResourceResolverTest.java} (58%) create mode 100644 dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/GistHelper.java