Skip to content

Commit

Permalink
chore: bump dep versions to latest (#3391)
Browse files Browse the repository at this point in the history
- chore: fully qualify some .gitignore paths, fixes #3379
- lint: disable unused-vars check
  • Loading branch information
msimerson authored Aug 21, 2024
1 parent cc5e9a4 commit 6f0e557
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ rules:
semi-style: [ error, last ]
prefer-template: "warn"
no-unneeded-ternary: 1
no-unused-vars: 1
no-unused-vars: 0
31 changes: 16 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.DS_Store
node_modules
/node_modules
http/node_modules
.coveralls.yml
Haraka-*.gz
Expand All @@ -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
2 changes: 1 addition & 1 deletion Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@
"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",
"haraka-results": "^2.2.4",
"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"
},
Expand All @@ -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",
Expand All @@ -66,15 +66,15 @@
"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",
"haraka-plugin-rcpt-ldap": "^1.1.0",
"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",
Expand All @@ -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": "[email protected]",
Expand All @@ -103,4 +103,4 @@
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update && npm run prettier:fix"
}
}
}

0 comments on commit 6f0e557

Please sign in to comment.