Comparing version 0.4.3 to 0.4.4
# Changelog | ||
## 0.4.4 | ||
* Download libxl via HTTPS | ||
* Upstream bug fix -> reenable ranges suite | ||
## 0.4.3 | ||
@@ -4,0 +9,0 @@ |
@@ -34,3 +34,3 @@ /** | ||
tar = require('tar'), | ||
http = require('http'), | ||
https = require('https'), | ||
AdmZip = require('adm-zip'); | ||
@@ -67,3 +67,3 @@ | ||
console.log(util.format( | ||
'\nplease download libxl manually from http://www.libxl.com and point the environment variable %s to the downloaded file', | ||
'\nplease download libxl manually from https://www.libxl.com and point the environment variable %s to the downloaded file', | ||
archiveEnv | ||
@@ -76,7 +76,7 @@ )); | ||
function onOpen() { | ||
var url = util.format('http://www.libxl.com/download/%s', getArchiveName()); | ||
var url = util.format('https://www.libxl.com/download/%s', getArchiveName()); | ||
console.log('Downloading ' + url); | ||
http.get(url, function(response) { | ||
https.get(url, function(response) { | ||
if (response.statusCode !== 200) { | ||
@@ -83,0 +83,0 @@ dieOnError(new Error(util.format('request failed: %s %s', response.statusCode, response.statusMessage))); |
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "0.4.3", | ||
"version": "0.4.4", | ||
"description": "Node bindings for the libxl library for reading and writing excel (XLS and XLSX) spreadsheets.", | ||
@@ -8,0 +8,0 @@ "keywords": [ |
@@ -767,4 +767,2 @@ var xl = require('../lib/libxl'), | ||
{ | ||
return; | ||
var sheet2 = newSheet(); | ||
@@ -771,0 +769,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
Found 1 instance in 1 package
305561
8
1723