emailengine-app 2.61.0 → 2.61.1
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/CHANGELOG.md +7 -0
- package/data/google-crawlers.json +1 -1
- package/lib/email-client/imap-client.js +2 -0
- package/lib/tools.js +1 -0
- package/package.json +6 -6
- package/sbom.json +1 -1
- package/static/licenses.html +16 -6
- package/translations/messages.pot +26 -26
- package/workers/webhooks.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.61.1](https://github.com/postalsys/emailengine/compare/v2.61.0...v2.61.1) (2025-12-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Memory leak fixes for IMAP client and webhooks worker ([b749f96](https://github.com/postalsys/emailengine/commit/b749f964f7e8de6828d23b8c3c5a3ca11e15898a))
|
|
9
|
+
|
|
3
10
|
## [2.61.0](https://github.com/postalsys/emailengine/compare/v2.60.1...v2.61.0) (2025-12-22)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -1501,6 +1501,7 @@ class IMAPClient extends BaseClient {
|
|
|
1501
1501
|
clearTimeout(this.untaggedExpungeTimer);
|
|
1502
1502
|
clearTimeout(this.resyncTimer);
|
|
1503
1503
|
clearTimeout(this.completedTimer);
|
|
1504
|
+
clearTimeout(this.reconnectTimer);
|
|
1504
1505
|
|
|
1505
1506
|
try {
|
|
1506
1507
|
// Clean up all mailboxes
|
|
@@ -1544,6 +1545,7 @@ class IMAPClient extends BaseClient {
|
|
|
1544
1545
|
clearTimeout(this.untaggedExpungeTimer);
|
|
1545
1546
|
clearTimeout(this.resyncTimer);
|
|
1546
1547
|
clearTimeout(this.completedTimer);
|
|
1548
|
+
clearTimeout(this.reconnectTimer);
|
|
1547
1549
|
|
|
1548
1550
|
this.isClosing = false;
|
|
1549
1551
|
this.isClosed = true;
|
package/lib/tools.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "emailengine-app",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"productTitle": "EmailEngine",
|
|
6
6
|
"description": "Email Sync Engine",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"homepage": "https://emailengine.app/",
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@bugsnag/js": "8.6.0",
|
|
47
|
-
"@bull-board/api": "6.
|
|
48
|
-
"@bull-board/hapi": "6.
|
|
47
|
+
"@bull-board/api": "6.16.2",
|
|
48
|
+
"@bull-board/hapi": "6.16.2",
|
|
49
49
|
"@elastic/elasticsearch": "8.15.3",
|
|
50
50
|
"@hapi/accept": "6.0.3",
|
|
51
51
|
"@hapi/bell": "13.1.0",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"@zone-eu/wild-config": "1.7.3",
|
|
69
69
|
"ace-builds": "1.43.5",
|
|
70
70
|
"base32.js": "0.1.0",
|
|
71
|
-
"bullmq": "5.66.
|
|
71
|
+
"bullmq": "5.66.4",
|
|
72
72
|
"compare-versions": "6.1.1",
|
|
73
73
|
"dotenv": "17.2.3",
|
|
74
74
|
"encoding-japanese": "2.2.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"html-to-text": "9.0.5",
|
|
83
83
|
"ical.js": "1.5.0",
|
|
84
84
|
"iconv-lite": "0.7.1",
|
|
85
|
-
"imapflow": "1.2.
|
|
85
|
+
"imapflow": "1.2.4",
|
|
86
86
|
"ioredfour": "1.3.0-ioredis-07",
|
|
87
87
|
"ioredis": "5.8.2",
|
|
88
88
|
"ipaddr.js": "2.3.0",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"msgpack5": "6.0.2",
|
|
99
99
|
"murmurhash": "2.0.1",
|
|
100
100
|
"nanoid": "3.3.8",
|
|
101
|
-
"nodemailer": "7.0.
|
|
101
|
+
"nodemailer": "7.0.12",
|
|
102
102
|
"pino": "10.1.0",
|
|
103
103
|
"popper.js": "1.16.1",
|
|
104
104
|
"prom-client": "15.1.3",
|