From c202ef5161c58910449a13c23268a321f32cf948 Mon Sep 17 00:00:00 2001 From: Donavan Becker Date: Fri, 17 Jan 2025 00:17:25 -0600 Subject: [PATCH] v4.1.0 ## [4.1.0](https://github.com/homebridge-plugins/homebridge-noip/releases/tag/v4.1.0) (2025-01-16) ### What's Changes - Added ipv6 support [#161](https://github.com/homebridge-plugins/homebridge-noip/pull/161), Thanks [@v0lume](https://github.com/v0lume) - Added support for other ip providers - `ipify.org`, `ipinfo.io`, `ipapi.co`, `my-ip.io`, and `getmyip.dev` - Housekeeping and updated dependencies. **Full Changelog**: https://github.com/homebridge-plugins/homebridge-noip/compare/v4.0.0...v4.1.0 --- package-lock.json | 4 ++-- package.json | 2 +- tsconfig.json | 18 +++++++++--------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8e96d6a..68ca65a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@homebridge-plugins/homebridge-noip", - "version": "4.0.0", + "version": "4.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@homebridge-plugins/homebridge-noip", - "version": "4.0.0", + "version": "4.1.0", "funding": [ { "type": "Paypal", diff --git a/package.json b/package.json index e725192..febd03a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@homebridge-plugins/homebridge-noip", "displayName": "No-IP", "type": "module", - "version": "4.0.0", + "version": "4.1.0", "description": "The No-IP plugin allows you to update your No-IP hostname(s) for your homebridge instance.", "author": { "name": "donavanbecker", diff --git a/tsconfig.json b/tsconfig.json index b5ad9a3..175c540 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,22 +1,22 @@ { "compilerOptions": { "target": "ES2022", - "module": "ES2022", "lib": [ "DOM", "ES2022" ], - "declaration": true, - "declarationMap": true, - "sourceMap": true, - "outDir": "dist", "rootDir": "src", + "module": "ES2022", + "moduleResolution": "node16", "strict": true, - "esModuleInterop": true, "noImplicitAny": false, + "declaration": true, + "declarationMap": true, + "outDir": "dist", + "sourceMap": true, "allowSyntheticDefaultImports": true, - "forceConsistentCasingInFileNames": true, - "moduleResolution": "node", + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true }, "include": [ "src" @@ -24,4 +24,4 @@ "exclude": [ "**/*.spec.ts" ] -} \ No newline at end of file +}