From 4d7e2d584028b963a50fe9045f3f27f7cd5218d1 Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 30 Oct 2025 11:42:31 -0700 Subject: [PATCH] Minor fixes to rc --- messages/en-US.json | 4 ++-- server/lib/consts.ts | 2 +- src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx | 2 +- src/components/DNSRecordsDataTable.tsx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/messages/en-US.json b/messages/en-US.json index 1e891693..3048834c 100644 --- a/messages/en-US.json +++ b/messages/en-US.json @@ -2057,9 +2057,9 @@ "proxyProtocolVersion": "Proxy Protocol Version", "version1": " Version 1 (Recommended)", "version2": "Version 2", - "versionDescription": "Version 1 is text-based and widely supported. Version 2 is binary and more efficient but less compatible.", + "versionDescription": "Version 1 is text-based and widely supported. Version 2 is binary and more efficient but less compatible. Make sure servers transport is added to dynamic config.", "warning": "Warning", - "proxyProtocolWarning": "Your backend application must be configured to accept Proxy Protocol connections. If your backend doesn't support Proxy Protocol, enabling this will break all connections. Make sure to configure your backend to trust Proxy Protocol headers from Traefik.", + "proxyProtocolWarning": "Your backend application must be configured to accept Proxy Protocol connections. If your backend doesn't support Proxy Protocol, enabling this will break all connections so only enable this if you know what you're doing. Make sure to configure your backend to trust Proxy Protocol headers from Traefik.", "restarting": "Restarting...", "manual": "Manual", "messageSupport": "Message Support", diff --git a/server/lib/consts.ts b/server/lib/consts.ts index 25dfdcfe..5b00b146 100644 --- a/server/lib/consts.ts +++ b/server/lib/consts.ts @@ -2,7 +2,7 @@ import path from "path"; import { fileURLToPath } from "url"; // This is a placeholder value replaced by the build process -export const APP_VERSION = "1.12.0"; +export const APP_VERSION = "1.12.0-rc.0"; export const __FILENAME = fileURLToPath(import.meta.url); export const __DIRNAME = path.dirname(__FILENAME); diff --git a/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx b/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx index ac0cd529..158726fe 100644 --- a/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx +++ b/src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx @@ -1697,7 +1697,7 @@ export default function ReverseProxyTargets(props: { )} - {!resource.http && resource.protocol && ( + {!resource.http && resource.protocol == "tcp" && ( diff --git a/src/components/DNSRecordsDataTable.tsx b/src/components/DNSRecordsDataTable.tsx index 95d548a4..6350111b 100644 --- a/src/components/DNSRecordsDataTable.tsx +++ b/src/components/DNSRecordsDataTable.tsx @@ -111,7 +111,7 @@ export function DNSRecordsDataTable({

{t("dnsRecord")}

{t("required")} - +