You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by "davsclaus (via GitHub)" <gi...@apache.org> on 2023/10/10 14:15:35 UTC

[PR] Blog post about whats new in 4.1 release. WIP [camel-website]

davsclaus opened a new pull request, #1073:
URL: https://github.com/apache/camel-website/pull/1073

   Feedback and updates welcome


-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "gzurowski (via GitHub)" <gi...@apache.org>.
gzurowski commented on code in PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#discussion_r1355013693


##########
content/blog/2023/10/camel41-whatsnew/index.md:
##########
@@ -0,0 +1,95 @@
+---
+title: "Apache Camel 4.1 What's New"
+date: 2023-10-11
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.1 release.
+---
+
+Apache Camel 4.1 (non LTS) has just been [released](/blog/2023/10/RELEASE-4.1.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## DSL
+
+The XML and YAML DSL now has better support for defining <bean> which can be configured with properties, and
+references to other beans. We have added support for easier configuration to specify constructor arguments,
+factory beans and methods, and inlined script or java code that gives full power for creating the bean.
+
+We have also enhanced `camel-core` to make it able to dump route DSLs with <bean> included. This makes it possible
+for Camel being able to migrate your route sources between XML and YAML DSLs (see more in next section).
+
+The XML DSL `camel-xml-io` now have line-precise parsing error that shows you exactly where the problem is.
+
+## Camel JBang (Camel CLI)
+
+We have continued investing in Camel JBang, and this time we introduce the new DSL `transform` command, that can be
+used for transforming your Camel source routes from one DSL to another (currently only XML and YAML is supported).
+
+We also added best effort support for loading and running legacy OSGi blueprint XML files. This is intended for
+Camel end users to have a tool they can use to assist them for migrating away from Apache Karaf to a modern
+Camel runtime such as Spring Boot, Quarkus or vanilla Camel Main. You can use this to migrate those OSGi blueprint
+XML files to standard Camel XML or YAML. We plan to publish a blog post about this in the near future.
+
+Added `ignoreLoadingError` option to `run` and `transform` commands, that allows to keep running, even if there
+is error loading route sources on startup.
+
+The `export` is made more robust and can export, even if not all source code is present to fully run the project.
+
+There is a new `sbom` command to generate SBom (CycloneDX or SPDX).
+
+The `--jvm-debug` option in `run` can now be configured with the debugging port (4004 by default).
+
+Added `camel get startup` command to output timed report of startup procedures that can help identify which part may be slow on startup.
+
+
+## Camel Kafka
+
+Added type converter for `byte[]` to `String` to make it easy to get Kafka header content as text value
+(data is stored as byte array by Kafka).
+
+## Camel OpenTelemtry
+
+Added `OpenTelematryTracingStrategy` that allows fine-grained tracing of every step a message is routed by Camel.
+
+Decorators now uses [OpenTelemtry Sematic Naming Style](https://opentelemetry.io/docs/specs/otel/trace/semantic_conventions/)
+for tracing headers.
+
+## Spring Boot
+
+Upgraded to latest 3.1.4 release.
+
+## Miscellaneous
+
+The `camel-report:route-coverage` Maven plugin can now generate reports in HTML format.
+
+The `file` component now have options to accept hidden files and directories.
+
+The `xslt` component is more dynamic by make it possible to specify the XSLT template as a header,
+meaning that each `Exchange` can use a dynamic computed stylesheet.
+
+The `camel-aws-sqs` consumer is now batching visibility extension requests (reducing network bandwidth) for 
+inflight messages currently being processed by Camel.
+
+The `camel-aws-s3` producer can now upload big payloads without reading stream into memory.
+
+The `rest` component can now use a custom `HeaderFilterStrategy`.
+
+The HTTP server based components will now mute exceptions by default (avoid sending stactraces in HTTP 500 errors back to clients).
+Set `muteException=false` to have old behaviour.
+
+## New Components
+
+- camel-aws2-redshift-data - Perform operations on AWS Redshift using Redshift Data API.
+- camel-aws2-timestream - A Camel Amazon Web Services TimeStream component
+- camel-thymeleaf - Transform messages using a Thymeleaf template.

Review Comment:
   ```suggestion
   - `camel-aws2-redshift-data` - Perform operations on AWS Redshift using Redshift Data API.
   - `camel-aws2-timestream` - A Camel Amazon Web Services TimeStream component
   - `camel-thymeleaf` - Transform messages using a Thymeleaf template.
   ```



##########
content/blog/2023/10/camel41-whatsnew/index.md:
##########
@@ -0,0 +1,95 @@
+---
+title: "Apache Camel 4.1 What's New"
+date: 2023-10-11
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.1 release.
+---
+
+Apache Camel 4.1 (non LTS) has just been [released](/blog/2023/10/RELEASE-4.1.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## DSL
+
+The XML and YAML DSL now has better support for defining <bean> which can be configured with properties, and

Review Comment:
   ```suggestion
   The XML and YAML DSL now has better support for defining `<bean>` which can be configured with properties, and
   ```



-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#issuecomment-1759515870

   🚀 Preview is available at https://pr-1073--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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "gzurowski (via GitHub)" <gi...@apache.org>.
gzurowski commented on code in PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#discussion_r1355230803


##########
content/blog/2023/10/camel41-whatsnew/index.md:
##########
@@ -0,0 +1,95 @@
+---
+title: "Apache Camel 4.1 What's New"
+date: 2023-10-11
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.1 release.
+---
+
+Apache Camel 4.1 (non LTS) has just been [released](/blog/2023/10/RELEASE-4.1.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## DSL
+
+The XML and YAML DSL now has better support for defining <bean> which can be configured with properties, and
+references to other beans. We have added support for easier configuration to specify constructor arguments,
+factory beans and methods, and inlined script or java code that gives full power for creating the bean.
+
+We have also enhanced `camel-core` to make it able to dump route DSLs with <bean> included. This makes it possible
+for Camel being able to migrate your route sources between XML and YAML DSLs (see more in next section).
+
+The XML DSL `camel-xml-io` now have line-precise parsing error that shows you exactly where the problem is.
+
+## Camel JBang (Camel CLI)
+
+We have continued investing in Camel JBang, and this time we introduce the new DSL `transform` command, that can be
+used for transforming your Camel source routes from one DSL to another (currently only XML and YAML is supported).
+
+We also added best effort support for loading and running legacy OSGi blueprint XML files. This is intended for
+Camel end users to have a tool they can use to assist them for migrating away from Apache Karaf to a modern
+Camel runtime such as Spring Boot, Quarkus or vanilla Camel Main. You can use this to migrate those OSGi blueprint
+XML files to standard Camel XML or YAML. We plan to publish a blog post about this in the near future.
+
+Added `ignoreLoadingError` option to `run` and `transform` commands, that allows to keep running, even if there
+is error loading route sources on startup.
+
+The `export` is made more robust and can export, even if not all source code is present to fully run the project.
+
+There is a new `sbom` command to generate SBom (CycloneDX or SPDX).
+
+The `--jvm-debug` option in `run` can now be configured with the debugging port (4004 by default).
+
+Added `camel get startup` command to output timed report of startup procedures that can help identify which part may be slow on startup.
+
+
+## Camel Kafka
+
+Added type converter for `byte[]` to `String` to make it easy to get Kafka header content as text value
+(data is stored as byte array by Kafka).
+
+## Camel OpenTelemtry
+
+Added `OpenTelematryTracingStrategy` that allows fine-grained tracing of every step a message is routed by Camel.

Review Comment:
   ```suggestion
   Added `OpenTelemetryTracingStrategy` that allows fine-grained tracing of every step a message is routed by Camel.
   ```



-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "orpiske (via GitHub)" <gi...@apache.org>.
orpiske commented on PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#issuecomment-1758130003

   Hey Claus, this release also brings the new type converter. We can something like: "this release brings the new type converter, that works around the JDK issue 8180450 and can bring improved performance for many scenarios (notably, the content-based router and filter, should have better throughput with this release)."
   
   Obs: i am on the road, so can't elaborate more.


-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "gzurowski (via GitHub)" <gi...@apache.org>.
gzurowski commented on code in PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#discussion_r1355219564


##########
content/blog/2023/10/camel41-whatsnew/index.md:
##########
@@ -0,0 +1,95 @@
+---
+title: "Apache Camel 4.1 What's New"
+date: 2023-10-11
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.1 release.
+---
+
+Apache Camel 4.1 (non LTS) has just been [released](/blog/2023/10/RELEASE-4.1.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## DSL
+
+The XML and YAML DSL now has better support for defining <bean> which can be configured with properties, and

Review Comment:
   ```suggestion
   The XML and YAML DSL now have better support for defining <bean> which can be configured with properties, and
   ```



-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "gzurowski (via GitHub)" <gi...@apache.org>.
gzurowski commented on code in PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#discussion_r1355232922


##########
content/blog/2023/10/camel41-whatsnew/index.md:
##########
@@ -0,0 +1,95 @@
+---
+title: "Apache Camel 4.1 What's New"
+date: 2023-10-11
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.1 release.
+---
+
+Apache Camel 4.1 (non LTS) has just been [released](/blog/2023/10/RELEASE-4.1.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## DSL
+
+The XML and YAML DSL now has better support for defining <bean> which can be configured with properties, and
+references to other beans. We have added support for easier configuration to specify constructor arguments,
+factory beans and methods, and inlined script or java code that gives full power for creating the bean.
+
+We have also enhanced `camel-core` to make it able to dump route DSLs with <bean> included. This makes it possible
+for Camel being able to migrate your route sources between XML and YAML DSLs (see more in next section).
+
+The XML DSL `camel-xml-io` now have line-precise parsing error that shows you exactly where the problem is.
+
+## Camel JBang (Camel CLI)
+
+We have continued investing in Camel JBang, and this time we introduce the new DSL `transform` command, that can be
+used for transforming your Camel source routes from one DSL to another (currently only XML and YAML is supported).
+
+We also added best effort support for loading and running legacy OSGi blueprint XML files. This is intended for
+Camel end users to have a tool they can use to assist them for migrating away from Apache Karaf to a modern
+Camel runtime such as Spring Boot, Quarkus or vanilla Camel Main. You can use this to migrate those OSGi blueprint
+XML files to standard Camel XML or YAML. We plan to publish a blog post about this in the near future.
+
+Added `ignoreLoadingError` option to `run` and `transform` commands, that allows to keep running, even if there
+is error loading route sources on startup.
+
+The `export` is made more robust and can export, even if not all source code is present to fully run the project.
+
+There is a new `sbom` command to generate SBom (CycloneDX or SPDX).
+
+The `--jvm-debug` option in `run` can now be configured with the debugging port (4004 by default).
+
+Added `camel get startup` command to output timed report of startup procedures that can help identify which part may be slow on startup.
+
+
+## Camel Kafka
+
+Added type converter for `byte[]` to `String` to make it easy to get Kafka header content as text value
+(data is stored as byte array by Kafka).
+
+## Camel OpenTelemtry
+
+Added `OpenTelematryTracingStrategy` that allows fine-grained tracing of every step a message is routed by Camel.
+
+Decorators now uses [OpenTelemtry Sematic Naming Style](https://opentelemetry.io/docs/specs/otel/trace/semantic_conventions/)
+for tracing headers.
+
+## Spring Boot
+
+Upgraded to latest 3.1.4 release.
+
+## Miscellaneous
+
+The `camel-report:route-coverage` Maven plugin can now generate reports in HTML format.
+
+The `file` component now have options to accept hidden files and directories.

Review Comment:
   ```suggestion
   The `file` component now has options to accept hidden files and directories.
   ```



-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "gzurowski (via GitHub)" <gi...@apache.org>.
gzurowski commented on code in PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#discussion_r1355231760


##########
content/blog/2023/10/camel41-whatsnew/index.md:
##########
@@ -0,0 +1,95 @@
+---
+title: "Apache Camel 4.1 What's New"
+date: 2023-10-11
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.1 release.
+---
+
+Apache Camel 4.1 (non LTS) has just been [released](/blog/2023/10/RELEASE-4.1.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## DSL
+
+The XML and YAML DSL now has better support for defining <bean> which can be configured with properties, and
+references to other beans. We have added support for easier configuration to specify constructor arguments,
+factory beans and methods, and inlined script or java code that gives full power for creating the bean.
+
+We have also enhanced `camel-core` to make it able to dump route DSLs with <bean> included. This makes it possible
+for Camel being able to migrate your route sources between XML and YAML DSLs (see more in next section).
+
+The XML DSL `camel-xml-io` now have line-precise parsing error that shows you exactly where the problem is.
+
+## Camel JBang (Camel CLI)
+
+We have continued investing in Camel JBang, and this time we introduce the new DSL `transform` command, that can be
+used for transforming your Camel source routes from one DSL to another (currently only XML and YAML is supported).
+
+We also added best effort support for loading and running legacy OSGi blueprint XML files. This is intended for
+Camel end users to have a tool they can use to assist them for migrating away from Apache Karaf to a modern
+Camel runtime such as Spring Boot, Quarkus or vanilla Camel Main. You can use this to migrate those OSGi blueprint
+XML files to standard Camel XML or YAML. We plan to publish a blog post about this in the near future.
+
+Added `ignoreLoadingError` option to `run` and `transform` commands, that allows to keep running, even if there
+is error loading route sources on startup.
+
+The `export` is made more robust and can export, even if not all source code is present to fully run the project.
+
+There is a new `sbom` command to generate SBom (CycloneDX or SPDX).
+
+The `--jvm-debug` option in `run` can now be configured with the debugging port (4004 by default).
+
+Added `camel get startup` command to output timed report of startup procedures that can help identify which part may be slow on startup.
+
+
+## Camel Kafka
+
+Added type converter for `byte[]` to `String` to make it easy to get Kafka header content as text value
+(data is stored as byte array by Kafka).
+
+## Camel OpenTelemtry
+
+Added `OpenTelematryTracingStrategy` that allows fine-grained tracing of every step a message is routed by Camel.
+
+Decorators now uses [OpenTelemtry Sematic Naming Style](https://opentelemetry.io/docs/specs/otel/trace/semantic_conventions/)

Review Comment:
   ```suggestion
   Decorators now uses [OpenTelemetry Semantic Naming Style](https://opentelemetry.io/docs/specs/otel/trace/semantic_conventions/)
   ```



-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "davsclaus (via GitHub)" <gi...@apache.org>.
davsclaus commented on code in PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#discussion_r1355015167


##########
content/blog/2023/10/camel41-whatsnew/index.md:
##########
@@ -0,0 +1,95 @@
+---
+title: "Apache Camel 4.1 What's New"
+date: 2023-10-11
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.1 release.
+---
+
+Apache Camel 4.1 (non LTS) has just been [released](/blog/2023/10/RELEASE-4.1.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## DSL
+
+The XML and YAML DSL now has better support for defining <bean> which can be configured with properties, and

Review Comment:
   This causes build failure when using bean in quotes



-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "davsclaus (via GitHub)" <gi...@apache.org>.
davsclaus merged PR #1073:
URL: https://github.com/apache/camel-website/pull/1073


-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "gzurowski (via GitHub)" <gi...@apache.org>.
gzurowski commented on code in PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#discussion_r1355229518


##########
content/blog/2023/10/camel41-whatsnew/index.md:
##########
@@ -0,0 +1,95 @@
+---
+title: "Apache Camel 4.1 What's New"
+date: 2023-10-11
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.1 release.
+---
+
+Apache Camel 4.1 (non LTS) has just been [released](/blog/2023/10/RELEASE-4.1.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## DSL
+
+The XML and YAML DSL now has better support for defining <bean> which can be configured with properties, and
+references to other beans. We have added support for easier configuration to specify constructor arguments,
+factory beans and methods, and inlined script or java code that gives full power for creating the bean.
+
+We have also enhanced `camel-core` to make it able to dump route DSLs with <bean> included. This makes it possible
+for Camel being able to migrate your route sources between XML and YAML DSLs (see more in next section).
+
+The XML DSL `camel-xml-io` now have line-precise parsing error that shows you exactly where the problem is.
+
+## Camel JBang (Camel CLI)
+
+We have continued investing in Camel JBang, and this time we introduce the new DSL `transform` command, that can be
+used for transforming your Camel source routes from one DSL to another (currently only XML and YAML is supported).
+
+We also added best effort support for loading and running legacy OSGi blueprint XML files. This is intended for
+Camel end users to have a tool they can use to assist them for migrating away from Apache Karaf to a modern
+Camel runtime such as Spring Boot, Quarkus or vanilla Camel Main. You can use this to migrate those OSGi blueprint
+XML files to standard Camel XML or YAML. We plan to publish a blog post about this in the near future.
+
+Added `ignoreLoadingError` option to `run` and `transform` commands, that allows to keep running, even if there
+is error loading route sources on startup.
+
+The `export` is made more robust and can export, even if not all source code is present to fully run the project.
+
+There is a new `sbom` command to generate SBom (CycloneDX or SPDX).
+
+The `--jvm-debug` option in `run` can now be configured with the debugging port (4004 by default).
+
+Added `camel get startup` command to output timed report of startup procedures that can help identify which part may be slow on startup.
+
+
+## Camel Kafka
+
+Added type converter for `byte[]` to `String` to make it easy to get Kafka header content as text value
+(data is stored as byte array by Kafka).
+
+## Camel OpenTelemtry

Review Comment:
   ```suggestion
   ## Camel OpenTelemetry
   ```



-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [PR] Blog post about whats new in 4.1 release. WIP [camel-website]

Posted by "gzurowski (via GitHub)" <gi...@apache.org>.
gzurowski commented on code in PR #1073:
URL: https://github.com/apache/camel-website/pull/1073#discussion_r1355223295


##########
content/blog/2023/10/camel41-whatsnew/index.md:
##########
@@ -0,0 +1,95 @@
+---
+title: "Apache Camel 4.1 What's New"
+date: 2023-10-11
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.1 release.
+---
+
+Apache Camel 4.1 (non LTS) has just been [released](/blog/2023/10/RELEASE-4.1.0/).
+
+This release introduces a set of new features and noticeable improvements that we will cover in this blog post.
+
+## DSL
+
+The XML and YAML DSL now has better support for defining <bean> which can be configured with properties, and
+references to other beans. We have added support for easier configuration to specify constructor arguments,
+factory beans and methods, and inlined script or java code that gives full power for creating the bean.
+
+We have also enhanced `camel-core` to make it able to dump route DSLs with <bean> included. This makes it possible
+for Camel being able to migrate your route sources between XML and YAML DSLs (see more in next section).
+
+The XML DSL `camel-xml-io` now have line-precise parsing error that shows you exactly where the problem is.

Review Comment:
   ```suggestion
   The XML DSL `camel-xml-io` now has line-precise parsing error that shows you exactly where the problem is.
   ```



-- 
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-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org