Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #8406

Merged
merged 2 commits into from
Dec 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ Collection of device converters to be used with zigbee-herdsman.

20.0.0

- A toZigbee converter is now allowed to not define any `key`, in this case the converter should be used for any key.
- A toZigbee converter is now allowed to not define any `key`, in this case the converter should be used for any key.

19.0.0
19.0.0

- Legacy extend was removed
- Legacy extend was removed

18.0.0
18.0.0

- After converting a message with a fromZigbee converter, `postProcessConvertedFromZigbeeMessage` should be called now (for applying calibration/precision)
- After converting a message with a fromZigbee converter, `postProcessConvertedFromZigbeeMessage` should be called now (for applying calibration/precision)

17.0.0
17.0.0

- Various methods in `index.ts` are now async and return a `Promise`
- Various methods in `index.ts` are now async and return a `Promise`

15.0.0
15.0.0

- OTA `isUpdateAvailable` now returns an object instead of a boolean (e.g. `{available: true, currentFileVersion: 120, otaFileVersion: 125}`)
- OTA `updateToLatest` now returns a number (`fileVersion` of the new OTA) instead of a void
- OTA `isUpdateAvailable` now returns an object instead of a boolean (e.g. `{available: true, currentFileVersion: 120, otaFileVersion: 125}`)
- OTA `updateToLatest` now returns a number (`fileVersion` of the new OTA) instead of a void

## Contributing

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},
"homepage": "https://github.com/Koenkk/zigbee-herdsman-converters",
"dependencies": {
"axios": "^1.7.7",
"axios": "^1.7.8",
"buffer-crc32": "^1.0.0",
"https-proxy-agent": "^7.0.5",
"iconv-lite": "^0.6.3",
Expand All @@ -56,25 +56,25 @@
},
"devDependencies": {
"@eslint/core": "^0.9.0",
"@eslint/js": "^9.15.0",
"@eslint/js": "^9.16.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/buffer-crc32": "^0.2.4",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"@types/node": "^22.10.1",
"@types/semver": "^7.5.8",
"@types/tar-stream": "^3.1.3",
"eslint": "^9.15.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"fast-deep-equal": "^3.1.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-morph": "^24.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
"typescript-eslint": "^8.16.0"
},
"jest": {
"preset": "ts-jest",
Expand Down
Loading