Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to the "vscode-debug-adapter-apache-camel" extension will be documented in this file.

## 1.10.0

## 1.9.0

- Update default Camel version used for Camel JBang from 4.12.0 to 4.13.0
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Debug Adapter for Apache Camel by Red Hat",
"description": "Client for the Debug Adapter implementation for Apache Camel",
"license": "Apache-2.0",
"version": "1.9.0",
"version": "1.10.0",
"preview": false,
"publisher": "redhat",
"icon": "icons/icon128.png",
Expand Down
4 changes: 2 additions & 2 deletions scripts/postinstall.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
'use strict';

const dapServerVersion = '1.9.0';
const dapServerVersion = '1.10.0-SNAPSHOT';

const download = require('mvn-artifact-download').default;
const fs = require('fs');
const path = require('path');

// Released versions: https://repo1.maven.org/maven2/
// Snapshot versions: https://central.sonatype.com/repository/maven-snapshots/
const MAVEN_REPO_URL = 'https://repo1.maven.org/maven2/';
const MAVEN_REPO_URL = 'https://central.sonatype.com/repository/maven-snapshots/';

download('com.github.camel-tooling:camel-dap-server:' + dapServerVersion, './jars/', MAVEN_REPO_URL).then((filename)=>{
fs.renameSync(filename, path.join('.', 'jars', 'camel-dap-server.jar'));
Expand Down
Loading