Skip to content

Commit

Permalink
Update default Camel version used for Camel JBang from 4.9.0 to 4.10.0
Browse files Browse the repository at this point in the history
- adapted test as the generated Camel Yaml route now includes route
attribute as top-level

Signed-off-by: Aurélien Pupier <apupier@redhat.com>
  • Loading branch information
apupier committed Feb 20, 2025
1 parent 804ae34 commit cd66a03
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## 1.10.0

- Update default Camel version used for Camel JBang from 4.9.0 to 4.10.0
- Update Camel Quarkus Catalog from 3.17.0 to 3.18.0
- Update default Camel Catalog version from 4.9.0 to 4.10.0

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"camel.languageSupport.JBangVersion": {
"type": "string",
"markdownDescription": "Apache Camel JBang version used for internal VS Code JBang commands execution. Camel JBang requirements can differ between versions, it is recommended to use `default` version to ensure all extension features work properly.\n\n**Note**: This change will affect only commands provided by Language Support for Apache Camel extension.",
"default": "4.9.0"
"default": "4.10.0"
},
"camel.ls.java.home": {
"type": [
Expand Down
17 changes: 9 additions & 8 deletions src/ui-test/resources/camel_route_command/YAML.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
- from:
uri: "timer:yaml"
parameters:
period: "1000"
steps:
- setBody:
simple: "Hello Camel from ${routeId}"
- log: "${body}"
- route:
from:
uri: timer:yaml
parameters:
period: "1000"
steps:
- setBody:
simple: Hello Camel from ${routeId}
- log: ${body}

0 comments on commit cd66a03

Please sign in to comment.