nodemailer
Advanced tools
Comparing version 6.9.0 to 6.9.1
# CHANGELOG | ||
## 6.9.1 2023-01-27 | ||
- Fix base64 encoding for emoji bytes in encoded words | ||
## 6.9.0 2023-01-12 | ||
@@ -4,0 +8,0 @@ |
@@ -87,2 +87,8 @@ /* eslint no-control-regex:0 */ | ||
let chr = encodedStr.charAt(i); | ||
if (/[\ud83c\ud83d\ud83e]/.test(chr) && i < len - 1) { | ||
// composite emoji byte, so add the next byte as well | ||
chr += encodedStr.charAt(++i); | ||
} | ||
// check if we can add this character to the existing string | ||
@@ -89,0 +95,0 @@ // without breaking byte length limit |
{ | ||
"name": "nodemailer", | ||
"version": "6.9.0", | ||
"version": "6.9.1", | ||
"description": "Easy as cake e-mail sending from your Node.js applications", | ||
@@ -23,4 +23,4 @@ "main": "lib/nodemailer.js", | ||
"devDependencies": { | ||
"@aws-sdk/client-ses": "3.245.0", | ||
"aws-sdk": "2.1293.0", | ||
"@aws-sdk/client-ses": "3.259.0", | ||
"aws-sdk": "2.1303.0", | ||
"bunyan": "1.8.15", | ||
@@ -27,0 +27,0 @@ "chai": "4.3.7", |
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
487400
11636