@kronos-integration/service-systemd 3.0.2 → 4.0.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/service.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kronos-integration/service-systemd",
3
- "version": "3.0.2",
3
+ "version": "4.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": false
@@ -32,7 +32,7 @@
32
32
  "build": "cmake-js compile"
33
33
  },
34
34
  "dependencies": {
35
- "@kronos-integration/service": "^13.1.2",
35
+ "@kronos-integration/service": "^14.0.0",
36
36
  "config-expander": "^14.0.9"
37
37
  },
38
38
  "devDependencies": {
@@ -42,10 +42,10 @@
42
42
  "documentation": "^14.0.3",
43
43
  "execa": "^9.6.0",
44
44
  "node-addon-api": "^8.5.0",
45
- "semantic-release": "^24.2.7"
45
+ "semantic-release": "^25.0.1"
46
46
  },
47
47
  "engines": {
48
- "node": ">=22.17.1"
48
+ "node": ">=24.10.0"
49
49
  },
50
50
  "os": [
51
51
  "linux"
package/src/service.mjs CHANGED
@@ -116,7 +116,7 @@ class SystemdConfig extends ServiceConfig {
116
116
  state,
117
117
  lfd.map(l => l.fd)
118
118
  );
119
- this.info(`${state} (${rc})`);
119
+ this.trace(`${state} (${rc})`);
120
120
 
121
121
  return super._stop();
122
122
  }