Skip to content

Commit 5b7a1fb

Browse files
committed
Use Camel 4.14.1 by default
Signed-off-by: Aurélien Pupier <[email protected]>
1 parent 9e43fb1 commit 5b7a1fb

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to the "vscode-debug-adapter-apache-camel" extension will be
44

55
## 1.11.0
66

7+
- Update default Camel version used for Camel JBang from 4.14.0 to 4.14.1
8+
79
## 1.10.0
810

911
- Use Node 22 instead of Node 20

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"camel.debugAdapter.JBangVersion": {
8585
"type": "string",
8686
"markdownDescription": "Apache Camel JBang CLI version used for internal VS Code JBang commands execution. Camel JBang CLI 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 Debug Adapter for Apache Camel extension.",
87-
"default": "4.14.0"
87+
"default": "4.14.1"
8888
},
8989
"camel.debugAdapter.CamelVersion": {
9090
"type": "string",

src/completion/CamelApplicationLauncherTasksCompletionItemProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export class CamelApplicationLauncherTasksCompletionItemProvider implements vsco
163163
"command": "jbang", // jbang binary must be available on command-line
164164
"args": [
165165
"'-Dorg.apache.camel.debugger.suspend=true'", // requires Camel 3.18+ to take effect
166-
"'-Dcamel.jbang.version=4.13.0'", // to adapt to your Camel version. 3.16+ is required
166+
"'-Dcamel.jbang.version=4.14.1'", // to adapt to your Camel version. 3.16+ is required
167167
"camel@apache/camel",
168168
"run",
169169
"\${relativeFile}", //to adapt to your workspace, using relativeFile means that the task must be launched when the file to start in debug in the active editor

src/ui-test/resources/tasks-examples/02_run_jbang_w_camel_debug.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"command": "jbang", // jbang binary must be available on command-line
1010
"args": [
1111
"'-Dorg.apache.camel.debugger.suspend=true'", // requires Camel 3.18+ to take effect
12-
"'-Dcamel.jbang.version=4.13.0'", // to adapt to your Camel version. 3.16+ is required
12+
"'-Dcamel.jbang.version=4.14.1'", // to adapt to your Camel version. 3.16+ is required
1313
"camel@apache/camel",
1414
"run",
1515
"${relativeFile}", //to adapt to your workspace, using relativeFile means that the task must be launched when the file to start in debug in the active editor

0 commit comments

Comments
 (0)