@kronos-integration/service-mqtt 3.3.43 → 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.
@@ -10,6 +10,7 @@ on:
10
10
  - next
11
11
  permissions:
12
12
  contents: read
13
+ id-token: write
13
14
  jobs:
14
15
  test-node:
15
16
  runs-on: ubuntu-latest
@@ -18,7 +19,6 @@ jobs:
18
19
  os:
19
20
  - ubuntu-latest
20
21
  node-version:
21
- - 22.20.0
22
22
  - 24.10.0
23
23
  steps:
24
24
  - name: checkout
@@ -72,7 +72,6 @@ jobs:
72
72
  run: npx semantic-release
73
73
  env:
74
74
  CI: "true"
75
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
76
75
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
77
76
  finish:
78
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.20.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.20.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.20.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.43",
3
+ "version": "4.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -33,18 +33,18 @@
33
33
  "lint:docs": "documentation lint ./src/**/*.mjs"
34
34
  },
35
35
  "dependencies": {
36
- "@kronos-integration/service": "^13.2.39",
36
+ "@kronos-integration/service": "^14.0.0",
37
37
  "mqtt": "^5.14.1",
38
- "pacc": "^4.40.0"
38
+ "pacc": "^4.41.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "ava": "^6.4.1",
42
42
  "c8": "^10.1.3",
43
43
  "documentation": "^14.0.3",
44
- "semantic-release": "^25.0.0"
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 },