Skip to content

Commit 650f2bf

Browse files
committed
prep
1 parent dbe47fa commit 650f2bf

File tree

5 files changed

+49
-34
lines changed

5 files changed

+49
-34
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This project tries to adhere to [Semantic Versioning](http://semver.org/). In pr
88
- `MINOR` version when a new device type is added, or when a new feature is added that is backwards-compatible
99
- `PATCH` version when backwards-compatible bug fixes are implemented
1010

11-
## BETA
11+
## 9.4.0 (2023-08-26)
1212

1313
### Added
1414

@@ -18,7 +18,7 @@ This project tries to adhere to [Semantic Versioning](http://semver.org/). In pr
1818
- `H6609` gaming lights
1919
- `H7029` bluetooth lights
2020
- `H7134` heater
21-
- `H713A` lights
21+
- `H705C`, `H713A` lights
2222
- `H7151` dehumidifier
2323

2424
### Fixed

lib/connection/aws.js

-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ export default class {
4848
this.device.on('message', (topic, payload) => {
4949
const payloadString = Buffer.from(payload).toString();
5050

51-
platform.log.error('[AWS] %s [%s].', platformLang.awsEventMessage, payloadString);
52-
5351
// Parse the message to JSON
5452
try {
5553
payload = JSON.parse(payloadString);

lib/utils/constants.js

+2
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ export default {
247247
'H7055',
248248
'H705A',
249249
'H705B',
250+
'H705C',
250251
'H7060',
251252
'H7061',
252253
'H7062',
@@ -387,6 +388,7 @@ export default {
387388
'H7055',
388389
'H705A',
389390
'H705B',
391+
'H705C',
390392
'H7060',
391393
'H7061',
392394
'H7062',

package-lock.json

+43-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
"govee-bt-client": "^1.0.15"
6969
},
7070
"devDependencies": {
71-
"eslint": "^8.47.0",
71+
"eslint": "^8.48.0",
7272
"eslint-config-airbnb-base": "^15.0.0",
73-
"eslint-plugin-import": "^2.27.5",
73+
"eslint-plugin-import": "^2.28.1",
7474
"eslint-plugin-import-newlines": "^1.3.4",
7575
"eslint-plugin-sort-exports": "^0.8.0"
7676
}

0 commit comments

Comments
 (0)