nodemailer
Advanced tools
Comparing version 6.9.14 to 6.9.15
# CHANGELOG | ||
## [6.9.15](https://github.com/nodemailer/nodemailer/compare/v6.9.14...v6.9.15) (2024-08-08) | ||
### Bug Fixes | ||
* Fix memory leak ([#1667](https://github.com/nodemailer/nodemailer/issues/1667)) ([baa28f6](https://github.com/nodemailer/nodemailer/commit/baa28f659641a4bc30360633673d851618f8e8bd)) | ||
* **mime:** Added GeoJSON closes [#1637](https://github.com/nodemailer/nodemailer/issues/1637) ([#1665](https://github.com/nodemailer/nodemailer/issues/1665)) ([79b8293](https://github.com/nodemailer/nodemailer/commit/79b8293ad557d36f066b4675e649dd80362fd45b)) | ||
## [6.9.14](https://github.com/nodemailer/nodemailer/compare/v6.9.13...v6.9.14) (2024-06-19) | ||
@@ -4,0 +12,0 @@ |
@@ -631,2 +631,11 @@ 'use strict'; | ||
if (err) { | ||
// create passthrough stream to consume to prevent OOM | ||
let stream = new PassThrough(); | ||
if (typeof message.pipe === 'function') { | ||
message.pipe(stream); | ||
} else { | ||
stream.write(message); | ||
stream.end(); | ||
} | ||
return callback(err); | ||
@@ -633,0 +642,0 @@ } |
{ | ||
"name": "nodemailer", | ||
"version": "6.9.14", | ||
"version": "6.9.15", | ||
"description": "Easy as cake e-mail sending from your Node.js applications", | ||
@@ -5,0 +5,0 @@ "main": "lib/nodemailer.js", |
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
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
505709
12130