Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

libxl

Package Overview
Dependencies
30
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.4.3 to 0.4.4

5

CHANGELOG.md
# Changelog
## 0.4.4
* Download libxl via HTTPS
* Upstream bug fix -> reenable ranges suite
## 0.4.3

@@ -4,0 +9,0 @@

8

install-libxl.js

@@ -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 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc