@push.rocks/smartmta 5.2.1 → 5.2.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/changelog.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-02-12 - 5.2.2 - fix(deps)
|
|
4
|
+
bump dependencies: @push.rocks/smartrust to ^1.2.1, lru-cache to ^11.2.6
|
|
5
|
+
|
|
6
|
+
- Bumped @push.rocks/smartrust from ^1.2.0 to ^1.2.1
|
|
7
|
+
- Bumped lru-cache from ^11.2.5 to ^11.2.6
|
|
8
|
+
|
|
3
9
|
## 2026-02-11 - 5.2.1 - fix(rust-bridge)
|
|
4
10
|
map Node.js platform/arch to tsrust-style suffix and add platform-specific and dev localPaths for RustBridge
|
|
5
11
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@push.rocks/smartmta',
|
|
6
|
-
version: '5.2.
|
|
6
|
+
version: '5.2.2',
|
|
7
7
|
description: 'A high-performance, enterprise-grade Mail Transfer Agent (MTA) built from scratch in TypeScript with Rust acceleration.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxzQkFBc0I7SUFDNUIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHlIQUF5SDtDQUN2SSxDQUFBIn0=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@push.rocks/smartmta",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.2",
|
|
4
4
|
"description": "A high-performance, enterprise-grade Mail Transfer Agent (MTA) built from scratch in TypeScript with Rust acceleration.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mta",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"@push.rocks/smartlog": "^3.1.8",
|
|
53
53
|
"@push.rocks/smartmail": "^2.2.0",
|
|
54
54
|
"@push.rocks/smartpath": "^6.0.0",
|
|
55
|
-
"@push.rocks/smartrust": "^1.2.
|
|
55
|
+
"@push.rocks/smartrust": "^1.2.1",
|
|
56
56
|
"@tsclass/tsclass": "^9.2.0",
|
|
57
|
-
"lru-cache": "^11.2.
|
|
57
|
+
"lru-cache": "^11.2.6",
|
|
58
58
|
"mailparser": "^3.9.3",
|
|
59
59
|
"uuid": "^13.0.0"
|
|
60
60
|
},
|
package/ts/00_commitinfo_data.ts
CHANGED