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

[camel-website] branch 319 created (now de5b5142)

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

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


      at de5b5142 Camel 3.19 - whats new.

This branch includes the following new commits:

     new de5b5142 Camel 3.19 - whats new.

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-website] 01/01: Camel 3.19 - whats new.

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

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

commit de5b5142e823b62d1eee1047893ffc484f8a35ad
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Oct 6 19:49:52 2022 -0500

    Camel 3.19 - whats new.
---
 .../blog/2022/10/camel319-whatsnew/featured.png    | Bin 0 -> 3975989 bytes
 content/blog/2022/10/camel319-whatsnew/index.md    |  78 +++++++++++++++++++++
 2 files changed, 78 insertions(+)

diff --git a/content/blog/2022/10/camel319-whatsnew/featured.png b/content/blog/2022/10/camel319-whatsnew/featured.png
new file mode 100644
index 00000000..e5077f55
Binary files /dev/null and b/content/blog/2022/10/camel319-whatsnew/featured.png differ
diff --git a/content/blog/2022/10/camel319-whatsnew/index.md b/content/blog/2022/10/camel319-whatsnew/index.md
new file mode 100644
index 00000000..4f08c694
--- /dev/null
+++ b/content/blog/2022/10/camel319-whatsnew/index.md
@@ -0,0 +1,78 @@
+---
+title: "Apache Camel 3.19 What's New"
+date: 2022-10-10
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 3.19 release.
+---
+
+Apache Camel 3.19 has just been [released](/blog/2022/10/RELEASE-3.19.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## Camel JBang (Camel CLI)
+
+In this release we continue the expansion of Camel CLI.
+
+You can now easily manage local running Camel integrations.
+
+For example to list all running Camel processes:
+
+    camel ps
+    PID   NAME                          READY  STATUS    AGE
+    61818  sample.camel.MyCamelApplica…   1/1   Running  26m38s
+    62506  dude                           1/1   Running   4m34s
+
+To see a bit more information, then you can use `camel get`.
+
+Suppose you have two running processes, then you can manage them, such as stop,
+or stop/start routes etc:
+
+    camel stop dude
+    Stopping running Camel integration (pid: 62506)
+
+There is a lot more that Camel JBang can do, so make sure to see the [Camel JBang documentation](/manual/camel-jbang.html).
+It is also a good idea to run `camel --help` to list all available commands.
+
+There you can also find information how to get JBang installed, and after that install the camel app in JBang.
+
+### Resume from Offset
+
+TODO: Anything done here
+
+### Camel YAML DSL
+
+TODO: Anything done here
+
+### Load properties from vault/secrets cloud services
+
+TODO: Andrea update here
+
+### Camel Kafka
+
+TODO: Anything done here
+
+### New Components
+
+There are 5 new components:
+
+- camel-aws-cloudtrail - Consume events from Amazon Cloudtrail
+- camel-elasticsearch - Send requests to ElasticSearch via Java Client API
+- camel-hyperledger-aries - Camel support for Hyperledger Aries
+- camel-mapstruct - Type Conversion using Mapstruct
+- camel-python - To use python scripts
+
+### Spring Boot
+
+We have upgraded to the latest Spring Boot 2.7 release.
+
+## Upgrading
+
+Make sure to read the [upgrade guide](/manual/camel-3x-upgrade-guide-3_19.html) if you are upgrading from a previous Camel version.
+
+## Release Notes
+
+You can find more information about this release in the list of JIRA tickets resolved in the release: 
+
+- [Release notes 3.19](/releases/release-3.19.0/)
+