@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 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.4 |
17
- | Processed | 2026-03-17 |
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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "bumped": {},
3
- "timestamp": "2026-03-17T19:31:46.220Z",
3
+ "timestamp": "2026-03-19T08:18:30.965Z",
4
4
  "totalUpdated": 0
5
5
  }
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 -bdI ' + ifaceSanitized; // lgtm [js/shell-command-constructed-from-input]
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-depup.0",
4
- "description": "[DepUp] Advanced, lightweight system and OS information library",
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.4",
112
- "processedAt": "2026-03-17T19:31:47.516Z",
113
+ "originalVersion": "5.31.5",
114
+ "processedAt": "2026-03-19T08:18:31.754Z",
113
115
  "smokeTest": "passed"
114
116
  }
115
117
  }