diff --git a/CHANGELOG.md b/CHANGELOG.md index 89b4bcc..6fd0e1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - do not configure it manually, always using Config UI X - required Homebridge v2.0.0 and above +## [3.4.4] - (05.12.2024) + +## Changes + +- fix [#184](https://github.com/grzegorz914/homebridge-melcloud-control/issues/184) +- bump deependemcies + ## [3.4.3] - (02.12.2024) ## Changes diff --git a/package.json b/package.json index cea1387..5c1c44b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "displayName": "MELCloud Control", "name": "homebridge-melcloud-control", - "version": "3.4.3", + "version": "3.4.4", "description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.", "license": "MIT", "author": "grzegorz914", @@ -37,7 +37,7 @@ "dependencies": { "@homebridge/plugin-ui-utils": "^2.0.0", "async-mqtt": "^2.6.3", - "axios": "^1.7.8", + "axios": "^1.7.9", "express": "^4.21.1" }, "keywords": [ diff --git a/src/melclouderv.js b/src/melclouderv.js index c0386e1..38a6547 100644 --- a/src/melclouderv.js +++ b/src/melclouderv.js @@ -1,4 +1,5 @@ import { promises as fsPromises } from 'fs'; +import { Agent } from 'https'; import axios from 'axios'; import EventEmitter from 'events'; import ImpulseGenerator from './impulsegenerator.js';