homebridge-securitysystem 11.3.2-beta.1 → 11.3.2-beta.3
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/.github/workflows/build-package.yml +2 -2
- package/.github/workflows/bump-version.yml +3 -3
- package/.github/workflows/dependency-review.yml +1 -1
- package/.github/workflows/issue-response-migration-assistant.lock.yml +4 -4
- package/.github/workflows/publish.yml +4 -4
- package/CHANGELOG.md +27 -0
- package/package.json +13 -13
|
@@ -23,13 +23,13 @@ jobs:
|
|
|
23
23
|
|
|
24
24
|
steps:
|
|
25
25
|
- name: Checkout repository
|
|
26
|
-
uses: actions/checkout@
|
|
26
|
+
uses: actions/checkout@v7
|
|
27
27
|
|
|
28
28
|
- name: Setup node
|
|
29
29
|
uses: actions/setup-node@v6
|
|
30
30
|
|
|
31
31
|
with:
|
|
32
|
-
node-version:
|
|
32
|
+
node-version: 24
|
|
33
33
|
cache: "npm"
|
|
34
34
|
registry-url: https://registry.npmjs.org/
|
|
35
35
|
|
|
@@ -27,15 +27,15 @@ jobs:
|
|
|
27
27
|
|
|
28
28
|
steps:
|
|
29
29
|
- name: Checkout branch
|
|
30
|
-
uses: actions/checkout@
|
|
30
|
+
uses: actions/checkout@v7
|
|
31
31
|
|
|
32
32
|
- name: Setup node
|
|
33
33
|
uses: actions/setup-node@v6
|
|
34
34
|
with:
|
|
35
|
-
node-version:
|
|
35
|
+
node-version: 24
|
|
36
36
|
|
|
37
37
|
- name: Get next version
|
|
38
|
-
uses: MiguelRipoll23/get-next-version@v3.2.
|
|
38
|
+
uses: MiguelRipoll23/get-next-version@v3.2.1
|
|
39
39
|
id: get-next-version
|
|
40
40
|
with:
|
|
41
41
|
channel: ${{ inputs.channel }}
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
# Custom actions used:
|
|
34
34
|
# - actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
35
35
|
# - actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
36
|
-
# - actions/checkout@
|
|
36
|
+
# - actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
37
37
|
# - actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
38
38
|
# - actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
|
|
39
39
|
# - actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
@@ -127,7 +127,7 @@ jobs:
|
|
|
127
127
|
env:
|
|
128
128
|
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
|
|
129
129
|
- name: Checkout .github and .agents folders
|
|
130
|
-
uses: actions/checkout@
|
|
130
|
+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
131
131
|
with:
|
|
132
132
|
persist-credentials: false
|
|
133
133
|
sparse-checkout: |
|
|
@@ -345,7 +345,7 @@ jobs:
|
|
|
345
345
|
echo "GH_AW_SAFE_OUTPUTS_TOOLS_PATH=${RUNNER_TEMP}/gh-aw/safeoutputs/tools.json"
|
|
346
346
|
} >> "$GITHUB_OUTPUT"
|
|
347
347
|
- name: Checkout repository
|
|
348
|
-
uses: actions/checkout@
|
|
348
|
+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
349
349
|
with:
|
|
350
350
|
persist-credentials: false
|
|
351
351
|
- name: Create gh-aw temp directory
|
|
@@ -1053,7 +1053,7 @@ jobs:
|
|
|
1053
1053
|
echo "GH_AW_AGENT_OUTPUT=/tmp/gh-aw/agent_output.json" >> "$GITHUB_OUTPUT"
|
|
1054
1054
|
- name: Checkout repository for patch context
|
|
1055
1055
|
if: needs.agent.outputs.has_patch == 'true'
|
|
1056
|
-
uses: actions/checkout@
|
|
1056
|
+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
1057
1057
|
with:
|
|
1058
1058
|
persist-credentials: false
|
|
1059
1059
|
# --- Threat Detection ---
|
|
@@ -23,7 +23,7 @@ jobs:
|
|
|
23
23
|
|
|
24
24
|
steps:
|
|
25
25
|
- name: Checkout branch
|
|
26
|
-
uses: actions/checkout@
|
|
26
|
+
uses: actions/checkout@v7
|
|
27
27
|
|
|
28
28
|
- name: Get tag name
|
|
29
29
|
id: get-tag-name
|
|
@@ -68,7 +68,7 @@ jobs:
|
|
|
68
68
|
contents: write
|
|
69
69
|
steps:
|
|
70
70
|
- name: Checkout branch
|
|
71
|
-
uses: actions/checkout@
|
|
71
|
+
uses: actions/checkout@v7
|
|
72
72
|
with:
|
|
73
73
|
ref: main
|
|
74
74
|
|
|
@@ -130,12 +130,12 @@ jobs:
|
|
|
130
130
|
|
|
131
131
|
steps:
|
|
132
132
|
- name: Checkout branch
|
|
133
|
-
uses: actions/checkout@
|
|
133
|
+
uses: actions/checkout@v7
|
|
134
134
|
|
|
135
135
|
- name: Setup node
|
|
136
136
|
uses: actions/setup-node@v6
|
|
137
137
|
with:
|
|
138
|
-
node-version:
|
|
138
|
+
node-version: 24
|
|
139
139
|
registry-url: https://registry.npmjs.org/
|
|
140
140
|
|
|
141
141
|
- name: Install dependencies
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v11.3.2-beta.2 - 2026-06-21
|
|
4
|
+
|
|
5
|
+
<!-- Release notes generated using configuration in .github/release.yml at v11.3.2-beta.2 -->
|
|
6
|
+
|
|
7
|
+
## What's Changed
|
|
8
|
+
### 🛠️ Other Changes
|
|
9
|
+
* Hardcode node-version to 24 in bump-version workflow by @MiguelRipoll23 in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/909
|
|
10
|
+
* chore: update all dependencies to latest versions by @MiguelRipoll23 in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/910
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
**Full Changelog**: https://github.com/MiguelRipoll23/homebridge-securitysystem/compare/v11.3.2-beta.1...v11.3.2-beta.2
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## v11.3.2-beta.1 - 2026-06-21
|
|
17
|
+
|
|
18
|
+
<!-- Release notes generated using configuration in .github/release.yml at v11.3.2-beta.1 -->
|
|
19
|
+
|
|
20
|
+
## What's Changed
|
|
21
|
+
### 🐛 Bug Fixes
|
|
22
|
+
* fix: reset trip state properly when system is disarmed (fixes #905) by @MiguelRipoll23 in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/906
|
|
23
|
+
### 🛠️ Other Changes
|
|
24
|
+
* chore: remove stale issue-response-migration-assistant files by @MiguelRipoll23 in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/907
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
**Full Changelog**: https://github.com/MiguelRipoll23/homebridge-securitysystem/compare/v11.3.1...v11.3.2-beta.1
|
|
28
|
+
|
|
29
|
+
|
|
3
30
|
## v11.3.1 - 2026-06-14
|
|
4
31
|
|
|
5
32
|
<!-- Release notes generated using configuration in .github/release.yml at v11.3.1 -->
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "homebridge-securitysystem",
|
|
3
3
|
"displayName": "Homebridge Security System",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "11.3.2-beta.
|
|
5
|
+
"version": "11.3.2-beta.3",
|
|
6
6
|
"description": "Homebridge plugin that creates a security system accessory that can be triggered by HomeKit sensors.",
|
|
7
7
|
"author": "MiguelRipoll23",
|
|
8
8
|
"license": "MIT",
|
|
@@ -35,25 +35,25 @@
|
|
|
35
35
|
"watch": "npm run build && npm link && nodemon"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@hono/node-server": "^2.0.
|
|
39
|
-
"@hono/zod-openapi": "^1.
|
|
40
|
-
"@scalar/hono-api-reference": "^0.
|
|
41
|
-
"hono": "^4.12.
|
|
38
|
+
"@hono/node-server": "^2.0.5",
|
|
39
|
+
"@hono/zod-openapi": "^1.4.0",
|
|
40
|
+
"@scalar/hono-api-reference": "^0.11.4",
|
|
41
|
+
"hono": "^4.12.26",
|
|
42
42
|
"mqtt": "^5.15.1",
|
|
43
|
-
"node-persist": "^4.0.
|
|
44
|
-
"zod": "^4.3
|
|
43
|
+
"node-persist": "^4.0.4",
|
|
44
|
+
"zod": "^4.4.3"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@eslint/js": "^10.0.1",
|
|
48
|
-
"@types/node": "^
|
|
48
|
+
"@types/node": "^26.0.0",
|
|
49
49
|
"@types/node-persist": "^3.1.8",
|
|
50
|
-
"eslint": "^10.
|
|
51
|
-
"homebridge": "^2.0
|
|
50
|
+
"eslint": "^10.5.0",
|
|
51
|
+
"homebridge": "^2.1.0",
|
|
52
52
|
"nodemon": "^3.1.14",
|
|
53
53
|
"rimraf": "^6.1.3",
|
|
54
|
-
"typescript": "^6.0.
|
|
55
|
-
"typescript-eslint": "^8.
|
|
56
|
-
"vitest": "^4.1.
|
|
54
|
+
"typescript": "^6.0.3",
|
|
55
|
+
"typescript-eslint": "^8.61.1",
|
|
56
|
+
"vitest": "^4.1.9"
|
|
57
57
|
},
|
|
58
58
|
"funding": [
|
|
59
59
|
{
|