mailparser 3.7.2 → 3.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.ncurc.js CHANGED
@@ -3,6 +3,7 @@ module.exports = {
3
3
  reject: [
4
4
  // api changes, check and fix
5
5
  'eslint',
6
- 'grunt-eslint'
6
+ 'grunt-eslint',
7
+ 'eslint-config-prettier'
7
8
  ]
8
9
  };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.7.3](https://github.com/nodemailer/mailparser/compare/v3.7.2...v3.7.3) (2025-05-20)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Bumped deps ([9e084f9](https://github.com/nodemailer/mailparser/commit/9e084f9f265ddcfbf8ad3a3e68fc0645d4eb9d1d))
9
+
3
10
  ## [3.7.2](https://github.com/nodemailer/mailparser/compare/v3.7.1...v3.7.2) (2024-11-29)
4
11
 
5
12
 
@@ -800,7 +800,7 @@ class MailParser extends Transform {
800
800
 
801
801
  if (node.headerLines) {
802
802
  this.emit('headerLines', node.headerLines);
803
- }
803
+ }
804
804
  }
805
805
 
806
806
  if (data.contentType === 'message/rfc822' && data.messageNode) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mailparser",
3
- "version": "3.7.2",
3
+ "version": "3.7.3",
4
4
  "description": "Parse e-mails",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -23,10 +23,10 @@
23
23
  "iconv-lite": "0.6.3",
24
24
  "libmime": "5.3.6",
25
25
  "linkify-it": "5.0.0",
26
- "mailsplit": "5.4.2",
27
- "nodemailer": "6.9.16",
26
+ "mailsplit": "5.4.3",
27
+ "nodemailer": "7.0.3",
28
28
  "punycode.js": "2.3.1",
29
- "tlds": "1.255.0"
29
+ "tlds": "1.259.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "ajv": "8.17.1",