From 0441552a839781a5c6fd3d238bc9551c838c8af6 Mon Sep 17 00:00:00 2001 From: Ingo Fischer Date: Fri, 5 Jul 2024 11:06:31 +0200 Subject: [PATCH] chore: release v2.0.0 * BREAKING: Username/Passwort and Proxy Authentications are removed and replaced by the new Daikin Portal Authentication! You need to re-authenticate! * BREAKING: DaikinCloudController class constructor changed and has new options structure! * Minimum Node.js version is 18.2 * (jacoscaz) Ports to Typescript * (jacoscaz) Switches to Daikin's OIDC-based Onecta API * (Apollon77) Enhancements to restore some make sure former functionality is still possible to use * (Apollon77) Enhances DaikinCloudController class to update data for all devices with one call to save requests * (Apollon77) Enhances DaikinDevice classes to emit an "updated" event when data is updated, so it's easier to listen for changes * (jacoscaz/Apollon77) Expose rate limit information and own error class for rate limit handling --- README.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 05b56c3..25d0e10 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ See [`src/example.ts`](./src/example.ts). * Add Tests ## Changelog: -### __WORK IN PROGRESS__ +### 2.0.0 (2024-07-05) * BREAKING: Username/Passwort and Proxy Authentications are removed and replaced by the new Daikin Portal Authentication! You need to re-authenticate! * BREAKING: DaikinCloudController class constructor changed and has new options structure! * Minimum Node.js version is 18.2 diff --git a/package-lock.json b/package-lock.json index c5469dd..fb7856e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "daikin-controller-cloud", - "version": "2.0.0-alpha.9", + "version": "2.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "daikin-controller-cloud", - "version": "2.0.0-alpha.9", + "version": "2.0.0", "license": "MIT", "dependencies": { "openid-client": "^5.6.5" diff --git a/package.json b/package.json index f82236c..782f4dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "daikin-controller-cloud", - "version": "2.0.0-alpha.9", + "version": "2.0.0", "description": "Interact with Daikin Cloud devices and retrieve Tokens", "author": "Apollon77 ", "contributors": [],