Update dependency is-ip to v5. (#31467)

* Update dependency is-ip to v5

* Fix import

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

* Make jest happier

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>

---------

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
renovate[bot]
2025-12-09 16:36:22 +00:00
committed by GitHub
parent 67b0311852
commit 014a9edf0f
4 changed files with 52 additions and 13 deletions

View File

@@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Com
Please see LICENSE files in the repository root for full details.
*/
import isIp from "is-ip";
import { isIP } from "is-ip";
import * as utils from "matrix-js-sdk/src/utils";
import { type Room, type MatrixClient, RoomStateEvent, EventType } from "matrix-js-sdk/src/matrix";
import { KnownMembership } from "matrix-js-sdk/src/types";
@@ -492,7 +492,7 @@ function isHostnameIpAddress(hostname: string): boolean {
hostname = hostname.substring(1, hostname.length - 1);
}
return isIp(hostname);
return isIP(hostname);
}
export const calculateRoomVia = (room: Room): string[] => {