emailengine-app 2.61.4 → 2.61.5
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 +9 -0
- package/data/google-crawlers.json +1 -1
- package/lib/routes-ui.js +1 -1
- package/lib/ui-routes/account-routes.js +1 -1
- package/package.json +5 -5
- package/sbom.json +1 -1
- package/static/licenses.html +9 -79
- package/translations/messages.pot +44 -44
- package/workers/api.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.61.5](https://github.com/postalsys/emailengine/compare/v2.61.4...v2.61.5) (2026-01-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* use base64url encoding for OAuth state nonce in /v1/authentication/form ([1f2cecf](https://github.com/postalsys/emailengine/commit/1f2cecf9efbee8a12c3a0d27c9879bfbbf7dfa39))
|
|
9
|
+
* use base64url encoding for OAuth state nonce in /v1/authentication/form ([dead38c](https://github.com/postalsys/emailengine/commit/dead38c348f1c0204f2bfba09997090cb86c348b))
|
|
10
|
+
* use base64url encoding for OAuth state nonce in remaining locations ([961b710](https://github.com/postalsys/emailengine/commit/961b710357d836782c9bbce329178aa96e08ee20))
|
|
11
|
+
|
|
3
12
|
## [2.61.4](https://github.com/postalsys/emailengine/compare/v2.61.3...v2.61.4) (2026-01-14)
|
|
4
13
|
|
|
5
14
|
|
package/lib/routes-ui.js
CHANGED
|
@@ -4341,7 +4341,7 @@ ${Buffer.from(data.content, 'base64url').toString('base64')}
|
|
|
4341
4341
|
name: request.payload.name,
|
|
4342
4342
|
|
|
4343
4343
|
// identify request
|
|
4344
|
-
n: crypto.randomBytes(NONCE_BYTES).toString('
|
|
4344
|
+
n: crypto.randomBytes(NONCE_BYTES).toString('base64url'),
|
|
4345
4345
|
t: Date.now()
|
|
4346
4346
|
});
|
|
4347
4347
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "emailengine-app",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"productTitle": "EmailEngine",
|
|
6
6
|
"description": "Email Sync Engine",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"@postalsys/bounce-classifier": "^2.0.0",
|
|
60
60
|
"@postalsys/certs": "1.0.12",
|
|
61
61
|
"@postalsys/ee-client": "1.3.0",
|
|
62
|
-
"@postalsys/email-ai-tools": "1.11.
|
|
63
|
-
"@postalsys/email-text-tools": "2.4.
|
|
62
|
+
"@postalsys/email-ai-tools": "1.11.2",
|
|
63
|
+
"@postalsys/email-text-tools": "2.4.1",
|
|
64
64
|
"@postalsys/gettext": "4.1.1",
|
|
65
65
|
"@postalsys/joi-messages": "1.0.5",
|
|
66
66
|
"@postalsys/templates": "2.0.0",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"murmurhash": "2.0.1",
|
|
100
100
|
"nanoid": "3.3.8",
|
|
101
101
|
"nodemailer": "7.0.12",
|
|
102
|
-
"pino": "10.
|
|
102
|
+
"pino": "10.2.0",
|
|
103
103
|
"popper.js": "1.16.1",
|
|
104
104
|
"prom-client": "15.1.3",
|
|
105
105
|
"psl": "1.15.0",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"grunt-wait": "0.3.0",
|
|
126
126
|
"jsxgettext": "0.11.0",
|
|
127
127
|
"pino-pretty": "13.0.0",
|
|
128
|
-
"prettier": "3.
|
|
128
|
+
"prettier": "3.8.0",
|
|
129
129
|
"resedit": "3.0.1",
|
|
130
130
|
"spdx-satisfies": "6.0.0",
|
|
131
131
|
"supertest": "7.2.2",
|