diff --git a/Changelog.md b/Changelog.md index f0458e7f..0c702431 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,9 @@ # Change Log +## 1.9.0 + +- Update default Camel version used for Camel JBang from 4.8.1 to 4.9.0 + ## 1.8.0 - Provide folder selection when using `Create Camel Quarkus/SpringBoot Project` command diff --git a/package-lock.json b/package-lock.json index 20928b9a..30c39baa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-apache-camel", - "version": "1.8.0", + "version": "1.9.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-apache-camel", - "version": "1.8.0", + "version": "1.9.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index 608be886..92dc7bc1 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Language Support for Apache Camel by Red Hat", "description": "Provides completion, validation and documentation features for Apache Camel URI elements.", "license": "Apache-2.0", - "version": "1.8.0", + "version": "1.9.0", "preview": false, "publisher": "redhat", "icon": "icons/icon128.png", @@ -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.8.1" + "default": "4.9.0" }, "camel.ls.java.home": { "type": [ diff --git a/scripts/postinstall.js b/scripts/postinstall.js index 941c1cbc..a4ef4142 100644 --- a/scripts/postinstall.js +++ b/scripts/postinstall.js @@ -1,12 +1,12 @@ 'use strict'; -const LSP_SERVER_VERSION = "1.28.0"; +const LSP_SERVER_VERSION = "1.29.0-SNAPSHOT"; const download = require("mvn-artifact-download").default; const fs = require('fs'); const path = require('path'); -const MAVEN_REPO_URL = 'https://oss.sonatype.org/content/repositories/releases/'; +const MAVEN_REPO_URL = 'https://oss.sonatype.org/content/repositories/snapshots/'; download('com.github.camel-tooling:camel-lsp-server:' + LSP_SERVER_VERSION, './jars/', MAVEN_REPO_URL).then((filename)=>{