homebridge-securitysystem 11.4.1-beta.2 → 11.4.1

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.
@@ -26,12 +26,12 @@ jobs:
26
26
  uses: actions/checkout@v7
27
27
 
28
28
  - name: Setup pnpm
29
- uses: pnpm/action-setup@v6.0.9
29
+ uses: pnpm/action-setup@v6.0.10
30
30
  with:
31
31
  version: latest
32
32
 
33
33
  - name: Setup node
34
- uses: actions/setup-node@v6
34
+ uses: actions/setup-node@v7
35
35
  with:
36
36
  cache: "pnpm"
37
37
  registry-url: https://registry.npmjs.org/
@@ -30,7 +30,7 @@ jobs:
30
30
  uses: actions/checkout@v7
31
31
 
32
32
  - name: Setup node
33
- uses: actions/setup-node@v6
33
+ uses: actions/setup-node@v7
34
34
  with:
35
35
  node-version: 24
36
36
 
@@ -133,12 +133,12 @@ jobs:
133
133
  uses: actions/checkout@v7
134
134
 
135
135
  - name: Setup pnpm
136
- uses: pnpm/action-setup@v6.0.9
136
+ uses: pnpm/action-setup@v6.0.10
137
137
  with:
138
138
  version: latest
139
139
 
140
140
  - name: Setup node
141
- uses: actions/setup-node@v6
141
+ uses: actions/setup-node@v7
142
142
  with:
143
143
  node-version: 24
144
144
  registry-url: https://registry.npmjs.org/
@@ -17,7 +17,7 @@ jobs:
17
17
  pull-requests: write
18
18
 
19
19
  steps:
20
- - uses: actions/stale@v10
20
+ - uses: actions/stale@v11
21
21
  with:
22
22
  repo-token: ${{ secrets.GITHUB_TOKEN }}
23
23
  stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed in a few days if no further activity occurs. Thank you for your contributions."
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Changelog
2
2
 
3
+ ## v11.4.1-beta.3 - 2026-08-16
4
+
5
+ <!-- Release notes generated using configuration in .github/release.yml at v11.4.1-beta.3 -->
6
+
7
+ ## What's Changed
8
+ ### 🐛 Bug Fixes
9
+ * chore: update all dependencies to latest by @MiguelRipoll23 in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/976
10
+ ### 📦 Dependencies
11
+ * build(deps): bump actions/stale from 10 to 11 by @dependabot[bot] in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/962
12
+ * build(deps): bump pnpm/action-setup from 6.0.9 to 6.0.10 by @dependabot[bot] in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/966
13
+ * build(deps): bump actions/setup-node from 6 to 7 by @dependabot[bot] in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/950
14
+ ### 🛠️ Other Changes
15
+ * chore: add oxlint and typecheck scripts by @MiguelRipoll23 in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/975
16
+
17
+
18
+ **Full Changelog**: https://github.com/MiguelRipoll23/homebridge-securitysystem/compare/v11.4.1-beta.2...v11.4.1-beta.3
19
+
20
+
21
+ ## v11.4.1-beta.2 - 2026-07-11
22
+
23
+ <!-- Release notes generated using configuration in .github/release.yml at v11.4.1-beta.2 -->
24
+
25
+ ## What's Changed
26
+ ### 🐛 Bug Fixes
27
+ * fix: update publish workflow to use pnpm by @MiguelRipoll23 in https://github.com/MiguelRipoll23/homebridge-securitysystem/pull/945
28
+
29
+
30
+ **Full Changelog**: https://github.com/MiguelRipoll23/homebridge-securitysystem/compare/v11.4.1-beta.1...v11.4.1-beta.2
31
+
32
+
3
33
  ## v11.4.1-beta.1 - 2026-07-11
4
34
 
5
35
  <!-- Release notes generated using configuration in .github/release.yml at v11.4.1-beta.1 -->
package/CONTRIBUTING.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Contributing
2
2
 
3
- Pull requests are welcome! Please lint your code with ESlint and format your code with Prettier before opening your pull request.
3
+ Pull requests are welcome! Please lint your code with Oxlint before opening your pull request.
4
4
 
5
5
  Thanks!
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.4.1-beta.2",
5
+ "version": "11.4.1",
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",
@@ -28,19 +28,20 @@
28
28
  "homebridge": "^1.8.0 || ^2.0.0"
29
29
  },
30
30
  "dependencies": {
31
- "@hono/node-server": "^2.0.8",
32
- "@hono/zod-openapi": "^1.4.0",
33
- "@scalar/hono-api-reference": "^0.11.9",
34
- "hono": "^4.12.29",
31
+ "@hono/node-server": "^2.1.1",
32
+ "@hono/zod-openapi": "^1.6.0",
33
+ "@scalar/hono-api-reference": "^0.11.14",
34
+ "hono": "^4.13.2",
35
35
  "mqtt": "^5.15.2",
36
36
  "node-persist": "^4.0.4",
37
37
  "zod": "^4.4.3"
38
38
  },
39
39
  "devDependencies": {
40
- "@types/node": "^26.1.1",
40
+ "@types/node": "^26.2.0",
41
41
  "@types/node-persist": "^3.1.8",
42
- "homebridge": "^2.1.0",
42
+ "homebridge": "^2.3.1",
43
43
  "nodemon": "^3.1.14",
44
+ "oxlint": "^1.78.0",
44
45
  "rimraf": "^6.1.3",
45
46
  "typescript": "^7.0.2",
46
47
  "vitest": "^4.1.10"
@@ -53,7 +54,9 @@
53
54
  ],
54
55
  "scripts": {
55
56
  "build": "rimraf ./dist && tsc",
57
+ "lint": "oxlint",
56
58
  "test": "vitest run",
59
+ "typecheck": "tsc --noEmit",
57
60
  "watch": "pnpm run build && pnpm link && nodemon"
58
61
  }
59
62
  }
package/tsconfig.json CHANGED
@@ -20,7 +20,6 @@
20
20
  "skipLibCheck": true
21
21
  },
22
22
  "include": [
23
- "eslint.config.js",
24
23
  "homebridge-ui",
25
24
  "src"
26
25
  ]