Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

java-caller

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

java-caller - npm Package Compare versions

Comparing version 2.2.2 to 2.2.3

4

CHANGELOG.md
# Changelog
## [2.2.3] 2020-09-05
- Fix Java 8 detection ([#101@npm-groovy-lint](https://github.com/nvuillam/npm-groovy-lint/issues/101))
## [2.2.0] 2020-08-29

@@ -4,0 +8,0 @@

@@ -273,3 +273,7 @@ #! /usr/bin/env node

versionStr = versionStr.replace("_", "");
const versionNb = parseFloat(versionStr);
let versionNb = parseFloat(versionStr);
if (versionNb < 2) {
versionStr = versionStr.substring(2);
versionNb = parseFloat(versionStr[0] + "." + versionStr.substring(2));
}
debug(`Found default java version ${versionNb}`);

@@ -276,0 +280,0 @@ return versionNb;

2

package.json
{
"name": "java-caller",
"version": "2.2.2",
"version": "2.2.3",
"description": "Library to easily call java from node sources. Automatically installs java if not present",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -145,2 +145,6 @@ <!-- markdownlint-disable MD033 -->

### [2.2.3] 2020-09-05
- Fix Java 8 detection ([#101@npm-groovy-lint](https://github.com/nvuillam/npm-groovy-lint/issues/101))
### [2.2.0] 2020-08-29

@@ -147,0 +151,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc