mailauth 4.11.0 → 4.12.0

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "4.11.0"
2
+ ".": "4.12.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.12.0](https://github.com/postalsys/mailauth/compare/v4.11.0...v4.12.0) (2025-12-16)
4
+
5
+
6
+ ### Features
7
+
8
+ * add TypeScript type definitions and expand module exports ([c1cf880](https://github.com/postalsys/mailauth/commit/c1cf880a385fac5d2b5ecf5c1e4fa0cd3a319656))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * correct variable name in mta-sts domain extraction ([e68e2d4](https://github.com/postalsys/mailauth/commit/e68e2d4c267130e0defe750cb95a6b8654620cc4))
14
+
3
15
  ## [4.11.0](https://github.com/postalsys/mailauth/compare/v4.10.0...v4.11.0) (2025-10-31)
4
16
 
5
17
 
package/README.md CHANGED
@@ -17,6 +17,9 @@
17
17
 
18
18
  mailauth is a pure JavaScript implementation, requiring no external applications or compilation. It runs on any server or device with Node.js version 16 or later.
19
19
 
20
+ > [!NOTE]
21
+ > mailauth is used by [EmailEngine](https://emailengine.app/) for validating email authentication settings. See the [Email Authentication Testing documentation](https://learn.emailengine.app/docs/advanced/email-authentication-testing) for details.
22
+
20
23
  ## Table of Contents
21
24
 
22
25
  1. [Installation](#installation)
package/cli.md CHANGED
@@ -4,6 +4,9 @@
4
4
 
5
5
  mailauth provides a command-line utility for email authentication, complementing its [Node.js library](README.md). This guide explains how to use the mailauth CLI to perform various email authentication tasks.
6
6
 
7
+ > [!NOTE]
8
+ > mailauth is used by [EmailEngine](https://emailengine.app/) for validating email authentication settings. See the [Email Authentication Testing documentation](https://learn.emailengine.app/docs/advanced/email-authentication-testing) for details.
9
+
7
10
  ## Table of Contents
8
11
 
9
12
  - [Installation](#installation)
package/eslint.config.js CHANGED
@@ -30,10 +30,13 @@ module.exports = [
30
30
  rules: {
31
31
  'no-await-in-loop': 0,
32
32
  'require-atomic-updates': 0,
33
- 'no-unused-vars': ['error', {
34
- argsIgnorePattern: '^_',
35
- caughtErrors: 'none'
36
- }],
33
+ 'no-unused-vars': [
34
+ 'error',
35
+ {
36
+ argsIgnorePattern: '^_',
37
+ caughtErrors: 'none'
38
+ }
39
+ ],
37
40
  'no-console': 0
38
41
  }
39
42
  }