Socket
Socket
Sign inDemoInstall

nodemailer

Package Overview
Dependencies
0
Maintainers
1
Versions
269
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.9.0 to 6.9.1

4

CHANGELOG.md
# 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

6

package.json
{
"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",

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