Socket
Socket
Sign inDemoInstall

nodemailer

Package Overview
Dependencies
Maintainers
1
Versions
271
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodemailer - npm Package Compare versions

Comparing version 4.3.0 to 4.3.1

4

CHANGELOG.md
# CHANGELOG
## 4.3.1 2017-10-25
- Fixed a confict with Electron.js where timers do not have unref method
## 4.3.0 2017-10-23

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

@@ -126,3 +126,9 @@ 'use strict';

this.sendingRateTTL = setTimeout(() => this._checkRatedQueue(), now - delay);
this.sendingRateTTL.unref();
try {
this.sendingRateTTL.unref();
} catch (E) {
// Ignore. Happens on envs with non-node timer implementation
}
return false;

@@ -129,0 +135,0 @@ }

@@ -113,3 +113,4 @@ 'use strict';

returned = true;
setTimeout(() => {
let timer = setTimeout(() => {
if (returned) {

@@ -125,3 +126,9 @@ return;

callback(err);
}, 1000).unref();
}, 1000);
try {
timer.unref();
} catch (E) {
// Ignore. Happens on envs with non-node timer implementation
}
});

@@ -128,0 +135,0 @@

@@ -182,3 +182,4 @@ 'use strict';

returned = true;
setTimeout(() => {
let timer = setTimeout(() => {
if (returned) {

@@ -194,3 +195,9 @@ return;

callback(err);
}, 1000).unref();
}, 1000);
try {
timer.unref();
} catch (E) {
// Ignore. Happens on envs with non-node timer implementation
}
});

@@ -197,0 +204,0 @@

6

package.json
{
"name": "nodemailer",
"version": "4.3.0",
"version": "4.3.1",
"description": "Easy as cake e-mail sending from your Node.js applications",

@@ -13,3 +13,5 @@ "main": "lib/nodemailer.js",

},
"keywords": ["Nodemailer"],
"keywords": [
"Nodemailer"
],
"author": "Andris Reinman",

@@ -16,0 +18,0 @@ "license": "MIT",

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