@kronos-integration/service-mqtt 3.3.44 → 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.
@@ -19,7 +19,6 @@ jobs:
19
19
  os:
20
20
  - ubuntu-latest
21
21
  node-version:
22
- - 22.21.0
23
22
  - 24.10.0
24
23
  steps:
25
24
  - name: checkout
@@ -73,7 +72,6 @@ jobs:
73
72
  run: npx semantic-release
74
73
  env:
75
74
  CI: "true"
76
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
77
75
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
78
76
  finish:
79
77
  needs:
@@ -23,7 +23,7 @@ jobs:
23
23
  - name: prepare node
24
24
  uses: actions/setup-node@v6.0.0
25
25
  with:
26
- node-version: 22.21.0
26
+ node-version: 24.10.0
27
27
  cache: npm
28
28
  - name: install
29
29
  run: npm ci
@@ -11,7 +11,7 @@ jobs:
11
11
  strategy:
12
12
  matrix:
13
13
  node-version:
14
- - 22.21.0
14
+ - 24.10.0
15
15
  browser:
16
16
  - chrome
17
17
  steps:
@@ -14,7 +14,7 @@ jobs:
14
14
  - name: prepare node
15
15
  uses: actions/setup-node@v6.0.0
16
16
  with:
17
- node-version: 22.21.0
17
+ node-version: 24.10.0
18
18
  - name: install
19
19
  run: npm ci
20
20
  - name: run docs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kronos-integration/service-mqtt",
3
- "version": "3.3.44",
3
+ "version": "4.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -33,9 +33,9 @@
33
33
  "lint:docs": "documentation lint ./src/**/*.mjs"
34
34
  },
35
35
  "dependencies": {
36
- "@kronos-integration/service": "^13.2.40",
36
+ "@kronos-integration/service": "^14.0.0",
37
37
  "mqtt": "^5.14.1",
38
- "pacc": "^4.40.3"
38
+ "pacc": "^4.41.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "ava": "^6.4.1",
@@ -44,7 +44,7 @@
44
44
  "semantic-release": "^25.0.1"
45
45
  },
46
46
  "engines": {
47
- "node": ">=22.20.0"
47
+ "node": ">=24.10.0"
48
48
  },
49
49
  "repository": {
50
50
  "type": "git",
@@ -39,6 +39,7 @@ export class ServiceMQTT extends Service {
39
39
  keepalive: {
40
40
  ...integer_attribute_writable,
41
41
  default: 60,
42
+ needsRestart: true,
42
43
  isConnectionOption: true
43
44
  },
44
45
  clean: { ...boolean_attribute_writable_false, isConnectionOption: true },