java-caller 2.4.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/CHANGELOG.md +0 -37
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "java-caller",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "description": "Library to easily call java from node sources. Automatically installs java if not present",
5
5
  "main": "./lib/index.js",
6
6
  "files": [
package/CHANGELOG.md DELETED
@@ -1,37 +0,0 @@
1
- # Changelog
2
-
3
- ## [2.4.0] 2020-07-19
4
-
5
- - Fix additionalJavaArgs issue #13
6
-
7
- ## [2.3.0] 2020-09-05
8
-
9
- - Support absolute paths in classpath with argument `useAbsoluteClassPaths` and classPath as array of strings ([#12](https://github.com/nvuillam/node-java-caller/pull/12), by [Dan Gowans](https://github.com/dangowans))
10
-
11
- ## [2.2.3] 2020-09-05
12
-
13
- - Fix Java 8 detection ([#101@npm-groovy-lint](https://github.com/nvuillam/npm-groovy-lint/issues/101))
14
-
15
- ## [2.2.0] 2020-08-29
16
-
17
- - Fix CLASSPATH on windows in case there are spaces in paths
18
- - Update License to MIT
19
-
20
- ## [2.1.0] 2020-08-12
21
-
22
- - Allow to use java-caller to build your own CLI embedding java sources
23
- - Example projects using module and CLI
24
-
25
- ## [2.0.0] 2020-08-11
26
-
27
- - Big refactoring to simplify and enhance performances of code checking/installing java version
28
- - Replace use of deprecated package [node-jre](https://github.com/schreiben/node-jre) by [njre](https://github.com/raftario/njre)
29
- - Compliance with JDK & JRE from 8 to 14 ([AdoptOpenJdk](https://adoptopenjdk.net/) releases)
30
-
31
- ## [1.1.0] 2020-08-10
32
-
33
- - Return `javaChildProcess` when `detached` is true, so it can be used to be killed later
34
-
35
- ## [1.0.0] 2020-08-10
36
-
37
- - Initial version