mailauth 4.5.1 → 4.5.2

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/lib/bimi/index.js CHANGED
@@ -201,10 +201,8 @@ const downloadPromise = async (url, cachedFile) => {
201
201
  throw error;
202
202
  }
203
203
 
204
- let ab = await res.arrayBuffer();
205
- process.stdout.write(Buffer.from(ab));
206
-
207
- return Buffer.from(ab);
204
+ const arrayBufferValue = await res.arrayBuffer();
205
+ return Buffer.from(arrayBufferValue);
208
206
  };
209
207
 
210
208
  const validateVMC = async (bimiData, opts) => {
package/licenses.txt CHANGED
@@ -8,4 +8,5 @@ libmime MIT git://github.com/andris9/libmime.git
8
8
  nodemailer MIT-0 git+https://github.com/nodemailer/nodemailer.git 6.9.4 Andris Reinman
9
9
  psl MIT git+ssh://git@github.com/lupomontero/psl.git 1.9.0 Lupo Montero <lupomontero@gmail.com> (https://lupomontero.com/)
10
10
  punycode MIT git+https://github.com/mathiasbynens/punycode.js.git 2.3.0 Mathias Bynens https://mathiasbynens.be/
11
+ undici MIT git+https://github.com/nodejs/undici.git 5.23.0 Matteo Collina <hello@matteocollina.com>
11
12
  yargs MIT git+https://github.com/yargs/yargs.git 17.7.2 n/a
package/man/mailauth.1 CHANGED
@@ -1,4 +1,4 @@
1
- .TH "MAILAUTH" "1" "July 2023" "v4.5.0" "Mailauth Help"
1
+ .TH "MAILAUTH" "1" "August 2023" "v4.5.1" "Mailauth Help"
2
2
  .SH "NAME"
3
3
  \fBmailauth\fR
4
4
  .QP
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mailauth",
3
- "version": "4.5.1",
3
+ "version": "4.5.2",
4
4
  "description": "Email authentication library for Node.js",
5
5
  "main": "lib/mailauth.js",
6
6
  "scripts": {