You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/12/18 14:55:47 UTC

[camel-website] branch master updated (99eb38f -> 33fedc8)

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

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


 discard 99eb38f  Camel Quarkus release 1.5.0
     new 33fedc8  Camel Quarkus release 1.5.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   (99eb38f)
            \
             N -- N -- N   refs/heads/master (33fedc8)

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:
 .gitignore | 2 --
 1 file changed, 2 deletions(-)


[camel-website] 01/01: Camel Quarkus release 1.5.0

Posted by pp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 33fedc838299b8b0b84aa24726ff813eb7ec5218
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Fri Dec 18 10:20:10 2020 +0100

    Camel Quarkus release 1.5.0
---
 .../camel-featured.jpeg                            | Bin 0 -> 199187 bytes
 .../2020/12/camel-quarkus-release-1.5.0/index.md   |  69 +++++++++++++++++++++
 content/releases/q/release-1.5.0.md                |  11 ++++
 3 files changed, 80 insertions(+)

diff --git a/content/blog/2020/12/camel-quarkus-release-1.5.0/camel-featured.jpeg b/content/blog/2020/12/camel-quarkus-release-1.5.0/camel-featured.jpeg
new file mode 100644
index 0000000..74efdfd
Binary files /dev/null and b/content/blog/2020/12/camel-quarkus-release-1.5.0/camel-featured.jpeg differ
diff --git a/content/blog/2020/12/camel-quarkus-release-1.5.0/index.md b/content/blog/2020/12/camel-quarkus-release-1.5.0/index.md
new file mode 100644
index 0000000..0ab7c1f
--- /dev/null
+++ b/content/blog/2020/12/camel-quarkus-release-1.5.0/index.md
@@ -0,0 +1,69 @@
+---
+title: "Camel Quarkus 1.5.0 Released"
+date: 2020-12-18
+authors: ["ppalaga"]
+categories: ["Releases", "Camel Quarkus"]
+preview: "Camel Quarkus 1.5.0 Released"
+summary: "The highlights of Camel Quarkus 1.5.0"
+---
+
+<sub><sup>Original image by <a href="https://commons.wikimedia.org/wiki/User:99of9">Toby Hudson</a> <a href="https://creativecommons.org/licenses/by-sa/3.0">CC BY-SA 3.0</a> via <a href="https://en.wikipedia.org/wiki/Camel_racing#/media/File:CamelRacingCamelCup2009Heat.JPG">Wikipedia</a></sup></sub>
+
+We are pleased to announce the release 1.5.0 of Camel Quarkus! What's inside?
+
+## Camel 3.7.0
+
+Camel Quarkus 1.5.0 is based on Camel 3.7.0 LTS bringing new features and improvements relevant to Camel Quarkus:
+
+### CSimple language
+
+[CSimple language](/components/latest/languages/csimple-language.html) is a new variant of the well known [Simple language](/components/latest/languages/simple-language.html). The "C" in its name stands for "compiled" and indeed, the expressions are compiled into Java byte code or native code at application build time. This brings significant performance boost at runtime. Camel Quarkus 1.5.0 brings experimental support for the CSimple language in both JVM and native modes.
+
+### Lightweight mode
+
+In lightweight mode, Camel removes all references to the routes model after startup which allows the JVM to garbage collect all model objects and unload classes, freeing up memory. The downside is that after new Camel routes cannot be added once the application has fully started.
+
+Lightweight mode can be activated by adding the `camel-quarkus-main` dependency and adding
+
+```
+camel.main.lightweight=true
+```
+
+to `application.properties`.
+
+Check [Camel 3.7 what's new](/blog/2020/12/Camel37-Whatsnew/) blog post by Claus Ibsen for more information about Camel 3.7.0.
+
+## New extensions
+
+As usual, the new Camel Quarkus release brings some new extensions:
+
+* CSimple language mentioned above
+* [Micrometer](/camel-quarkus/latest/reference/extensions/micrometer.html) - in addition to [MicroProfile Metrics](/camel-quarkus/latest/reference/extensions/microprofile-metrics.html), you can now collect your metrics using [Micrometer](https://micrometer.io/). See also [this blog post](https://quarkus.io/blog/micrometer-metrics/) by Ken Finnigan.
+* [Minio](/camel-quarkus/latest/reference/extensions/minio.html) (JVM only)
+* [AtlasMap](/camel-quarkus/latest/reference/extensions/atlasmap.html) (JVM only)
+
+The following extensions are now supported in native mode:
+
+* [Protobuf](/camel-quarkus/latest/reference/extensions/protobuf.html)
+* [Avro RPC](/camel-quarkus/latest/reference/extensions/avro-rpc.html)
+* [SCP](/camel-quarkus/latest/reference/extensions/jsch.html)
+* [Solr](/camel-quarkus/latest/reference/extensions/solr.html)
+* [Google PubSub](/camel-quarkus/latest/reference/extensions/google-pubsub.html)
+* [Google BigQuery](/camel-quarkus/latest/reference/extensions/google-bigquery.html)
+* [OptaPlanner](/camel-quarkus/latest/reference/extensions/optaplanner.html)
+
+Check the full list of supported extensions in the [extensions reference](/camel-quarkus/latest/reference/index.html).
+
+### Documentation
+
+Following some recent user questions, we have added a new documetation page dedicated to [Testing with Camel Quarkus](/camel-quarkus/latest/user-guide/testing.html). It gives the basic guidance how to test your applications in JVM and native modes.
+
+We aim at further improving our [documentation](/camel-quarkus/latest/index.html). Do not
+hesitate to [ask](https://github.com/apache/camel-quarkus/issues/new) if you feel topics are missing or if details are lacking somewhere.
+
+## What's next?
+
+Camel Quarkus 1.6.0 should appear in the middle of January 2021, shortly after [Quarkus 1.11](https://groups.google.com/g/quarkus-platform-coordination/c/gXuyg4w3FPo).
+
+There is still a lot of [Camel components to port](https://github.com/apache/camel-quarkus/issues?q=is%3Aissue+is%3Aopen+label%3Aextension) to Quarkus.
+Please upvote your favorites, or even better [contribute](/camel-quarkus/latest/contributor-guide/index.html)!
diff --git a/content/releases/q/release-1.5.0.md b/content/releases/q/release-1.5.0.md
new file mode 100644
index 0000000..0e55ff9
--- /dev/null
+++ b/content/releases/q/release-1.5.0.md
@@ -0,0 +1,11 @@
+---
+url: "/releases/q-1.5.0/"
+date: 2020-12-01T13:10:40+01:00
+type: release-note
+version: "1.5.0"
+title: "Camel Quarkus release 1.5.0"
+preview: ""
+changelog: ""
+category: "camel-quarkus"
+milestone: 9
+---