@depup/systeminformation 5.31.4-depup.0 → 5.31.5-depup.0
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 +2 -2
- package/changes.json +1 -1
- package/lib/network.js +1 -1
- package/package.json +9 -7
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ npm install @depup/systeminformation
|
|
|
13
13
|
|
|
14
14
|
| Field | Value |
|
|
15
15
|
|-------|-------|
|
|
16
|
-
| Original | [systeminformation](https://www.npmjs.com/package/systeminformation) @ 5.31.
|
|
17
|
-
| Processed | 2026-03-
|
|
16
|
+
| Original | [systeminformation](https://www.npmjs.com/package/systeminformation) @ 5.31.5 |
|
|
17
|
+
| Processed | 2026-03-19 |
|
|
18
18
|
| Smoke test | passed |
|
|
19
19
|
| Deps updated | 0 |
|
|
20
20
|
|
package/changes.json
CHANGED
package/lib/network.js
CHANGED
|
@@ -1476,7 +1476,7 @@ function networkStatsSingle(iface) {
|
|
|
1476
1476
|
result.operstate = (stdout.toString().split(':')[1] || '').trim();
|
|
1477
1477
|
result.operstate = (result.operstate || '').toLowerCase();
|
|
1478
1478
|
result.operstate = result.operstate === 'active' ? 'up' : result.operstate === 'inactive' ? 'down' : 'unknown';
|
|
1479
|
-
cmd = 'netstat -
|
|
1479
|
+
cmd = 'netstat -bdnI ' + ifaceSanitized; // lgtm [js/shell-command-constructed-from-input]
|
|
1480
1480
|
exec(cmd, (error, stdout) => {
|
|
1481
1481
|
if (!error) {
|
|
1482
1482
|
lines = stdout.toString().split('\n');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depup/systeminformation",
|
|
3
|
-
"version": "5.31.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "5.31.5-depup.0",
|
|
4
|
+
"description": "Advanced, lightweight system and OS information library (with updated dependencies)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Sebastian Hildebrandt <hildebrandt@plus-innovations.com> (https://plus-innovations.com)",
|
|
7
7
|
"homepage": "https://systeminformation.io",
|
|
@@ -21,10 +21,12 @@
|
|
|
21
21
|
"README.md"
|
|
22
22
|
],
|
|
23
23
|
"keywords": [
|
|
24
|
-
"depup",
|
|
25
|
-
"dependency-bumped",
|
|
26
|
-
"updated-deps",
|
|
27
24
|
"systeminformation",
|
|
25
|
+
"depup",
|
|
26
|
+
"updated-dependencies",
|
|
27
|
+
"security",
|
|
28
|
+
"latest",
|
|
29
|
+
"patched",
|
|
28
30
|
"system information",
|
|
29
31
|
"sysinfo",
|
|
30
32
|
"monitor",
|
|
@@ -108,8 +110,8 @@
|
|
|
108
110
|
"changes": {},
|
|
109
111
|
"depsUpdated": 0,
|
|
110
112
|
"originalPackage": "systeminformation",
|
|
111
|
-
"originalVersion": "5.31.
|
|
112
|
-
"processedAt": "2026-03-
|
|
113
|
+
"originalVersion": "5.31.5",
|
|
114
|
+
"processedAt": "2026-03-19T08:18:31.754Z",
|
|
113
115
|
"smokeTest": "passed"
|
|
114
116
|
}
|
|
115
117
|
}
|