Accept IPv6 addresses in connectivity diagnostics
Build and Deploy Gateway / build-and-push (push) Successful in 20s
Build and Deploy Gateway / deploy (push) Successful in 14s

This commit is contained in:
2026-08-11 17:23:20 +03:00
parent 6381760b27
commit 068a7f9890
3 changed files with 5 additions and 4 deletions
@@ -282,7 +282,7 @@ function parseNetwork(body: string): Omit<NetworkProbeResult, 'attempts' | 'erro
const value = record(JSON.parse(body));
const connection = record(value.connection);
const address = text(value.ip);
if (value.success === false || !address || net.isIP(address) !== 4) return null;
if (value.success === false || !address || net.isIP(address) === 0) return null;
const number = Number(connection.asn);
return {
address,
+2 -2
View File
@@ -1,7 +1,7 @@
export const HARBOR_VERSIONS = Object.freeze({
macClient: '0.25.0',
macClient: '0.25.1',
gatewayClient: '0.26.0',
gatewayBackend: '0.26.0',
gatewayBackend: '0.26.1',
});
export interface ParsedVersion {