Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default Camel version used for Camel JBang from 4.8.1 to 4.9.0 #2034

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down 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.8.1"
"default": "4.9.0"
},
"camel.ls.java.home": {
"type": [
Expand Down
4 changes: 2 additions & 2 deletions scripts/postinstall.js
Original file line number Diff line number Diff line change
@@ -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)=>{
Expand Down
Loading