Skip to content

Commit c202ef5

Browse files
committed
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](#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**: v4.0.0...v4.1.0
1 parent befa0ae commit c202ef5

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@homebridge-plugins/homebridge-noip",
33
"displayName": "No-IP",
44
"type": "module",
5-
"version": "4.0.0",
5+
"version": "4.1.0",
66
"description": "The No-IP plugin allows you to update your No-IP hostname(s) for your homebridge instance.",
77
"author": {
88
"name": "donavanbecker",

tsconfig.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
22
"compilerOptions": {
33
"target": "ES2022",
4-
"module": "ES2022",
54
"lib": [
65
"DOM",
76
"ES2022"
87
],
9-
"declaration": true,
10-
"declarationMap": true,
11-
"sourceMap": true,
12-
"outDir": "dist",
138
"rootDir": "src",
9+
"module": "ES2022",
10+
"moduleResolution": "node16",
1411
"strict": true,
15-
"esModuleInterop": true,
1612
"noImplicitAny": false,
13+
"declaration": true,
14+
"declarationMap": true,
15+
"outDir": "dist",
16+
"sourceMap": true,
1717
"allowSyntheticDefaultImports": true,
18-
"forceConsistentCasingInFileNames": true,
19-
"moduleResolution": "node",
18+
"esModuleInterop": true,
19+
"forceConsistentCasingInFileNames": true
2020
},
2121
"include": [
2222
"src"
2323
],
2424
"exclude": [
2525
"**/*.spec.ts"
2626
]
27-
}
27+
}

0 commit comments

Comments
 (0)