@signalapp/ringrtc
Advanced tools
Comparing version 2.34.3 to 2.34.4
{ | ||
"name": "@signalapp/ringrtc", | ||
"version": "2.34.3", | ||
"version": "2.34.4", | ||
"description": "Signal Messenger voice and video calling library.", | ||
@@ -27,3 +27,3 @@ "main": "dist/index.js", | ||
"prebuildUrl": "https://build-artifacts.signal.org/libraries/ringrtc-desktop-build-v${npm_package_version}.tar.gz", | ||
"prebuildChecksum": "04c645ce226431879362474ffa2b59deea23516b35c14d480f4e120ac2d90f40" | ||
"prebuildChecksum": "8c94d3dfb6b79167d8a7be3361426d5421c4816d5158ef9507cd051dbd4d75f6" | ||
}, | ||
@@ -33,2 +33,3 @@ "author": "", | ||
"dependencies": { | ||
"https-proxy-agent": "7.0.1", | ||
"tar": "^6.1.0" | ||
@@ -35,0 +36,0 @@ }, |
@@ -9,2 +9,3 @@ // | ||
const https = require('https'); | ||
const { HttpsProxyAgent } = require('https-proxy-agent'); | ||
const fs = require('fs'); | ||
@@ -55,3 +56,7 @@ const path = require('path'); | ||
return new Promise((resolve, reject) => { | ||
https.get(URL, async res => { | ||
let options = {}; | ||
if (process.env.HTTPS_PROXY != undefined) { | ||
options.agent = new HttpsProxyAgent(process.env.HTTPS_PROXY); | ||
} | ||
https.get(URL, options, async res => { | ||
try { | ||
@@ -58,0 +63,0 @@ const out = fs.createWriteStream(tmpFile); |
Sorry, the diff of this file is too big to display
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
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
393540
3242
2
8
2
+ Addedhttps-proxy-agent@7.0.1
+ Addedagent-base@7.1.3(transitive)
+ Addeddebug@4.4.0(transitive)
+ Addedhttps-proxy-agent@7.0.1(transitive)
+ Addedms@2.1.3(transitive)