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

jamesnetherton pushed a change to branch quarkus-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


 discard f093d33  Set quarkus.version to 999-SNAPSHOT
     add f2f7af7  Bump firstVersion to 1.0.0-M7
     add bd8d17d  Upgrade to Testcontainers 1.14.0
     add b549f71  Merge pull request #1081 from apache/testcontainers-1.14.0
     add f3e76c2  Updated Gson integration tests with fix from Camel 3.2 #776
     add 5130b30  http-log example (#1079)
     add e350ab9  Fixed typos in the native promotion guide
     add 8b269b8  Upgrade Jackson to version 2.10.3 to align with Camel version 
used
     add c6c745e  Merge pull request #1082 from apache/jackson-2.10.3
     add a7a5c23  Polish examples
     add fbb7012  Added an AWS2-S3 native extension
     add 7995af2  Removed not needed options in application.properties for AWS2 
integration tests
     add ce98d83  Added a line to restart job
     add 71a5de5  Merge pull request #1085 from apache/aws2-s3
     add 4e3613e  Fixed quarkus welcome page in example
     add 5e9b19c  Polish example readme
     add 05a0f54  Update readme for example
     new 1c38c78  Set quarkus.version to 999-SNAPSHOT

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   (f093d33)
            \
             N -- N -- N   refs/heads/quarkus-master (1c38c78)

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:
 .../pages/list-of-camel-quarkus-extensions.adoc    |   6 +-
 .../ROOT/pages/promote-jvm-only-extensions.adoc    |   4 +-
 examples/file-split-log-xml/README.adoc            |   2 +-
 .../java/org/acme/filereader/package-info.java     |  19 ---
 .../src/main/resources/application.properties      |  17 +--
 .../src/main/resources/routes/camel-routes.xml     |   3 +-
 examples/http-log/README.adoc                      | 111 ++++++++++++++
 examples/{timer-log-spring => http-log}/pom.xml    |  22 ++-
 .../http-log/rss-memory.sh                         |  14 +-
 .../http-log/run-many.sh                           |  21 +--
 .../src/main/java/org/acme/http/CamelRoute.java    |  16 +-
 .../main/java/org/acme/http/ExampleResource.java}  |  18 ++-
 .../main/resources/META-INF/resources/index.html   | 170 +++++++++++++++++++++
 .../src/main/resources/application.properties      |  14 +-
 examples/observability/README.adoc                 |   6 +-
 .../src/main/resources/application.properties      |  11 +-
 examples/pom.xml                                   |   1 +
 examples/rest-json/README.adoc                     |   6 +-
 .../src/main/resources/application.properties      |   3 +-
 examples/timer-log-cdi/README.adoc                 |   6 +-
 .../src/main/resources/application.properties      |   2 +-
 .../src/main/resources/application.properties      |   6 +-
 examples/timer-log-spring/README.adoc              |   6 +-
 .../src/main/resources/application.properties      |   4 +-
 examples/timer-log-xml/README.adoc                 |   6 +-
 .../src/main/resources/application.properties      |   6 +-
 examples/timer-log/README.adoc                     |   6 +-
 .../src/main/resources/application.properties      |   3 +-
 .../{aws2-sqs => aws2-s3}/deployment/pom.xml       |  12 +-
 .../aws2/s3/deployment/Aws2S3Processor.java}       |   9 +-
 .../avro-rpc => extensions/aws2-s3}/pom.xml        |   5 +-
 extensions/{aws2-sqs => aws2-s3}/runtime/pom.xml   |  16 +-
 .../main/resources/META-INF/quarkus-extension.yaml |   5 +-
 .../main/resources/META-INF/quarkus-extension.yaml |   1 +
 extensions/pom.xml                                 |   1 +
 integration-tests/aws2/pom.xml                     |   4 +
 .../component/{aws => aws2}/CamelRoute.java        |  10 +-
 .../aws2/src/main/resources/application.properties |  15 +-
 .../src/main/resources/routes/gson-routes.xml      |  11 +-
 .../src/main/resources/routes/johnzon-routes.xml   |   4 +-
 pom.xml                                            |   4 +-
 poms/bom-deployment/pom.xml                        |   5 +
 poms/bom/pom.xml                                   |  16 ++
 tooling/create-extension-templates/runtime-pom.xml |   2 +-
 44 files changed, 471 insertions(+), 158 deletions(-)
 delete mode 100644 
examples/file-split-log-xml/src/main/java/org/acme/filereader/package-info.java
 create mode 100644 examples/http-log/README.adoc
 copy examples/{timer-log-spring => http-log}/pom.xml (84%)
 copy 
extensions-core/caffeine-lrucache/runtime/src/main/resources/META-INF/quarkus-extension.yaml
 => examples/http-log/rss-memory.sh (71%)
 mode change 100644 => 100755
 copy 
extensions-core/caffeine-lrucache/runtime/src/main/resources/META-INF/quarkus-extension.yaml
 => examples/http-log/run-many.sh (64%)
 mode change 100644 => 100755
 copy 
integration-tests/platform-http/src/main/java/org/apache/camel/quarkus/component/platform/http/it/TestHeaderFilterStrategy.java
 => examples/http-log/src/main/java/org/acme/http/CamelRoute.java (70%)
 copy examples/{timer-log/src/main/java/org/acme/timer/TimerRoute.java => 
http-log/src/main/java/org/acme/http/ExampleResource.java} (74%)
 create mode 100644 
examples/http-log/src/main/resources/META-INF/resources/index.html
 copy examples/{timer-log-cdi => 
http-log}/src/main/resources/application.properties (85%)
 copy extensions/{aws2-sqs => aws2-s3}/deployment/pom.xml (85%)
 copy 
extensions/{aws2-sqs/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/deployment/Aws2SqsProcessor.java
 => 
aws2-s3/deployment/src/main/java/org/apache/camel/quarkus/component/aws2/s3/deployment/Aws2S3Processor.java}
 (95%)
 copy {extensions-jvm/avro-rpc => extensions/aws2-s3}/pom.xml (91%)
 copy extensions/{aws2-sqs => aws2-s3}/runtime/pom.xml (82%)
 copy {extensions-support/aws => 
extensions/aws2-s3}/runtime/src/main/resources/META-INF/quarkus-extension.yaml 
(86%)
 rename 
integration-tests/aws2/src/main/java/org/apache/camel/quarkus/component/{aws => 
aws2}/CamelRoute.java (78%)

Reply via email to