From 6f0e557436d1f2c9ffc226dcc3e6b98c575f8bc9 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Wed, 21 Aug 2024 15:55:53 -0700 Subject: [PATCH] chore: bump dep versions to latest (#3391) - chore: fully qualify some .gitignore paths, fixes #3379 - lint: disable unused-vars check --- .eslintrc.yaml | 2 +- .gitignore | 31 ++++++++++++++++--------------- Changes.md | 2 +- package.json | 22 +++++++++++----------- 4 files changed, 29 insertions(+), 28 deletions(-) diff --git a/.eslintrc.yaml b/.eslintrc.yaml index 1eb4d6030..d88a677ed 100644 --- a/.eslintrc.yaml +++ b/.eslintrc.yaml @@ -9,4 +9,4 @@ rules: semi-style: [ error, last ] prefer-template: "warn" no-unneeded-ternary: 1 - no-unused-vars: 1 \ No newline at end of file + no-unused-vars: 0 diff --git a/.gitignore b/.gitignore index cd6522ebd..738ce0bfc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ .DS_Store -node_modules +/node_modules http/node_modules .coveralls.yml Haraka-*.gz @@ -8,17 +8,18 @@ bower_components coverage .nyc_output .idea -test/node_modules -test/queue/plain -test/queue/multibyte -test/test-queue -config/me -config/dhparams.pem -config/tls_cert.pem -config/tls_key.pem -package-lock.json -config/dhparams.pem -config/me -config/tls_cert.pem -config/tls_key.pem -queue +/test/node_modules +/test/queue/plain +/test/queue/multibyte +/test/test-queue +/config/me +/config/dhparams.pem +/config/tls_cert.pem +/config/tls_key.pem +/package-lock.json +/config/dhparams.pem +/config/me +/config/smtp.json +/config/tls_cert.pem +/config/tls_key.pem +/queue diff --git a/Changes.md b/Changes.md index 485fc2510..777955af4 100644 --- a/Changes.md +++ b/Changes.md @@ -22,7 +22,7 @@ - in setTLS, replace forEach with for...of - NOTE: remove a handful of 3.0 sunset property names #3315 - contrib/plugin2npm.sh: fix path to package.json #3359 -- deps: bump all versions to latest #3303, #3344 +- deps: bump all versions to latest #3303, #3344, #3391 - dkim: repackaged as NPM module #3311 - esets: repackaged as NPM module #3353 - greylist: repackaged as NPM module diff --git a/package.json b/package.json index b732fb9e9..081c17737 100644 --- a/package.json +++ b/package.json @@ -22,13 +22,13 @@ "dependencies": { "address-rfc2821": "^2.1.2", "address-rfc2822": "^2.2.2", - "async": "^3.2.5", + "async": "^3.2.6", "daemon": "~1.1.0", "haraka-config": "^1.4.0", "haraka-constants": "^1.0.7", "haraka-dsn": "^1.1.0", "haraka-email-message": "^1.2.3", - "haraka-message-stream": "^1.2.1", + "haraka-message-stream": "^1.2.2", "haraka-net-utils": "^1.7.0", "haraka-notes": "^1.1.0", "haraka-plugin-redis": "^2.0.7", @@ -36,11 +36,11 @@ "haraka-tld": "^1.2.1", "haraka-utils": "^1.1.3", "ipaddr.js": "~2.2.0", - "node-gyp": "^10.1.0", + "node-gyp": "^10.2.0", "nopt": "^7.2.1", "npid": "~0.4.0", - "redis": "~4.6.13", - "semver": "^7.6.2", + "redis": "~4.7.0", + "semver": "^7.6.3", "sockaddr": "^1.0.1", "sprintf-js": "~1.1.3" }, @@ -54,7 +54,7 @@ "haraka-plugin-bounce": "1.0.2", "haraka-plugin-clamd": "1.0.1", "haraka-plugin-dcc": "^1.0.2", - "haraka-plugin-dkim": "^1.0.3", + "haraka-plugin-dkim": "^1.0.4", "haraka-plugin-dns-list": "^1.2.0", "haraka-plugin-elasticsearch": "^8.0.2", "haraka-plugin-esets": "^1.0.0", @@ -66,7 +66,7 @@ "haraka-plugin-helo.checks": "^1.0.0", "haraka-plugin-karma": "^2.1.5", "haraka-plugin-known-senders": "^1.1.0", - "haraka-plugin-limit": "^1.2.3", + "haraka-plugin-limit": "^1.2.5", "haraka-plugin-messagesniffer": "^1.0.0", "haraka-plugin-p0f": "^1.0.9", "haraka-plugin-qmail-deliverable": "^1.2.3", @@ -74,7 +74,7 @@ "haraka-plugin-recipient-routes": "^1.2.0", "haraka-plugin-rspamd": "^1.3.1", "haraka-plugin-spamassassin": "^1.0.0", - "haraka-plugin-spf": "1.2.5", + "haraka-plugin-spf": "1.2.7", "haraka-plugin-syslog": "^1.0.6", "haraka-plugin-uribl": "^1.0.8", "haraka-plugin-watch": "^2.0.4", @@ -84,9 +84,9 @@ "devDependencies": { "@haraka/eslint-config": "^1.1.5", "haraka-test-fixtures": "^1.3.7", - "mocha": "^10.4.0", + "mocha": "^10.7.3", "mock-require": "^3.0.3", - "nodemailer": "^6.9.13" + "nodemailer": "^6.9.14" }, "bugs": { "mail": "haraka.mail@gmail.com", @@ -103,4 +103,4 @@ "versions": "npx dependency-version-checker check", "versions:fix": "npx dependency-version-checker update && npm run prettier:fix" } -} +} \ No newline at end of file