Skip to content

Commit 5013764

Browse files
committed
0.2.3 release files
1 parent 703e674 commit 5013764

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to `homebridge-nest-accfactory` will be documented in this file. This project tries to adhere to [Semantic Versioning](http://semver.org/).
44

5-
## v0.2.3 (alpha)
5+
## v0.2.3 (2024/12/06)
66

77
- General code cleanup and bug fixes
88
- Fix for HomeKit Secure Video recording for migrated camera/doorbell to Google Home

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "homebridge-nest-accfactory",
33
"displayName": "Nest Accfactory",
44
"type": "module",
5-
"version": "0.2.3-alpha.6",
5+
"version": "0.2.3",
66
"description": "Homebridge support for Nest/Google devices including HomeKit Secure Video (HKSV) support for doorbells and cameras",
77
"author": "n0rt0nthec4t",
88
"license": "Apache-2.0",
@@ -54,11 +54,11 @@
5454
"@eslint/js": "^9.16.0",
5555
"@stylistic/eslint-plugin": "^2.11.0",
5656
"@types/node": "^22.10.1",
57-
"@typescript-eslint/parser": "^8.16.0",
57+
"@typescript-eslint/parser": "^8.17.0",
5858
"homebridge": "^2.0.0-beta.0",
5959
"copyfiles": "^2.4.1",
6060
"eslint": "^9.16.0",
61-
"prettier": "^3.4.1",
61+
"prettier": "^3.4.2",
6262
"prettier-eslint": "^16.3.0",
6363
"rimraf": "^6.0.1"
6464
},

src/docker-standalone/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nest-accfactory",
33
"displayName": "Nest Accfactory",
44
"type": "module",
5-
"version": "0.2.3-alpha.6",
5+
"version": "0.2.3",
66
"description": "HomeKit integration for Nest devices using HAP-NodeJS library",
77
"author": "n0rt0nthec4t",
88
"license": "Apache-2.0",
@@ -52,10 +52,10 @@
5252
"@eslint/js": "^9.16.0",
5353
"@stylistic/eslint-plugin": "^2.11.0",
5454
"@types/node": "^22.10.1",
55-
"@typescript-eslint/parser": "^8.16.0",
55+
"@typescript-eslint/parser": "^8.17.0",
5656
"copyfiles": "^2.4.1",
5757
"eslint": "^9.16.0",
58-
"prettier": "^3.4.1",
58+
"prettier": "^3.4.2",
5959
"prettier-eslint": "^16.3.0",
6060
"rimraf": "^6.0.1"
6161
},

src/system.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ export default class NestAccfactory {
368368
this.#connections[connectionUUID].token = googleToken;
369369
this.#connections[connectionUUID].cameraAPI = {
370370
key: 'Authorization',
371-
value: 'Basic ',
371+
value: 'Basic ', // NOTE: extra space required
372372
token: googleToken,
373373
oauth2: googleOAuth2Token,
374374
};

0 commit comments

Comments
 (0)