trm-core 7.4.0 → 7.4.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/README.md +1 -1
- package/changelog.txt +10 -0
- package/dist/protocol/Protocol.js +2 -5
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ TRM is a software designed to make transports between SAP ECC/S4 systems easy.
|
|
|
16
16
|
|
|
17
17
|
# Requirements
|
|
18
18
|
|
|
19
|
-
- [Node
|
|
19
|
+
- [Node >=22.12.0](https://github.com/nodejs/node/releases/tag/v22.12.0)
|
|
20
20
|
|
|
21
21
|
# Documentation <!-- {docsify-remove} -->
|
|
22
22
|
|
package/changelog.txt
CHANGED
|
@@ -8,11 +8,21 @@ Legend
|
|
|
8
8
|
+ : added
|
|
9
9
|
- : removed
|
|
10
10
|
|
|
11
|
+
2025-07-08 v7.4.2
|
|
12
|
+
-------------------
|
|
13
|
+
! enforce node engine >=22.12.0 with post install script
|
|
14
|
+
! protocol-registry ^2.0.0
|
|
15
|
+
|
|
16
|
+
2025-07-29 7.4.1
|
|
17
|
+
-------------------
|
|
18
|
+
! trm-commons ^2.0.0
|
|
19
|
+
|
|
11
20
|
2025-07-29 7.4.0
|
|
12
21
|
-------------------
|
|
13
22
|
- dependency install doesn't ask for cust/lang/package replacements anymore if not needed
|
|
14
23
|
! install asks for cust/lang/package replacements when not provided by default parameter
|
|
15
24
|
! import logger shows package name
|
|
25
|
+
! trm-commons ^1.1.0
|
|
16
26
|
! trm-server ^5.0.0
|
|
17
27
|
! set/overwrite dependencies with or without automatic detection
|
|
18
28
|
+ manifest template for post activities, trm dependency and sap entries
|
|
@@ -26,12 +26,9 @@ class Protocol {
|
|
|
26
26
|
const nodePath = process.execPath;
|
|
27
27
|
const address = this._server.address();
|
|
28
28
|
const url = `http://localhost:${address.port}`;
|
|
29
|
-
yield protocol_registry_1.default.register({
|
|
30
|
-
protocol: "trm",
|
|
31
|
-
command: `"${nodePath}" "${path_1.default.join(__dirname, "./callback.js")}" ${url} $_URL_`,
|
|
29
|
+
yield protocol_registry_1.default.register(`trm`, `"${nodePath}" "${path_1.default.join(__dirname, "./callback.js")}" ${url} $_URL_`, {
|
|
32
30
|
override: true,
|
|
33
|
-
terminal:
|
|
34
|
-
script: false
|
|
31
|
+
terminal: true
|
|
35
32
|
});
|
|
36
33
|
}));
|
|
37
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trm-core",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.2",
|
|
4
4
|
"description": "TRM (Transport Request Manager) Core",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
"object-keys-normalizer": "^1.0.1",
|
|
59
59
|
"opener": "^1.5.2",
|
|
60
60
|
"parse-multipart-data": "^1.5.0",
|
|
61
|
-
"protocol-registry": "^
|
|
61
|
+
"protocol-registry": "^2.0.0",
|
|
62
62
|
"semver": "^7.5.4",
|
|
63
63
|
"semver-sort": "^1.0.0",
|
|
64
64
|
"spdx-license-ids": "^3.0.13",
|
|
65
|
-
"trm-commons": "^
|
|
65
|
+
"trm-commons": "^2.0.0",
|
|
66
66
|
"trm-registry-types": "^1.1.1",
|
|
67
67
|
"uuid": "^9.0.1",
|
|
68
68
|
"xml-beautify": "^1.2.3",
|
|
@@ -89,6 +89,6 @@
|
|
|
89
89
|
"typescript": "^5.8.2"
|
|
90
90
|
},
|
|
91
91
|
"engines": {
|
|
92
|
-
"node": "
|
|
92
|
+
"node": ">=22.12.0"
|
|
93
93
|
}
|
|
94
94
|
}
|