diff --git a/agent/Dockerfile b/agent/Dockerfile index 20a33b59..a2cb0186 100644 --- a/agent/Dockerfile +++ b/agent/Dockerfile @@ -9,7 +9,7 @@ RUN CGO_ENABLED=0 go build -ldflags="-s -w -X github.com/TerrifiedBug/vectorflow # Stage 2: Download Vector FROM alpine:3.21 AS vector -ARG VECTOR_VERSION=0.44.0 +ARG VECTOR_VERSION=0.53.0 RUN apk add --no-cache curl && \ curl -sSfL -o /tmp/vector.tar.gz \ "https://packages.timber.io/vector/${VECTOR_VERSION}/vector-${VECTOR_VERSION}-x86_64-unknown-linux-musl.tar.gz" && \ diff --git a/agent/install.sh b/agent/install.sh index 04795b1d..9256a9cd 100755 --- a/agent/install.sh +++ b/agent/install.sh @@ -11,7 +11,7 @@ VECTOR_DATA_DIR="/var/lib/vector" CONFIG_DIR="/etc/vectorflow" ENV_FILE="${CONFIG_DIR}/agent.env" SERVICE_NAME="vf-agent" -VECTOR_VERSION="0.44.0" +VECTOR_VERSION="0.53.0" # Defaults VF_URL="" diff --git a/docker/server/Dockerfile b/docker/server/Dockerfile index 1e500556..84960ce5 100644 --- a/docker/server/Dockerfile +++ b/docker/server/Dockerfile @@ -12,7 +12,7 @@ RUN --mount=type=cache,target=/root/.local/share/pnpm/store \ # ---- Stage 2: Download Vector binary (cached unless VECTOR_VERSION changes) ---- FROM alpine:3.21 AS vector -ARG VECTOR_VERSION=0.44.0 +ARG VECTOR_VERSION=0.53.0 RUN apk add --no-cache curl && \ curl -sSfL -o /tmp/vector.tar.gz \ "https://packages.timber.io/vector/${VECTOR_VERSION}/vector-${VECTOR_VERSION}-x86_64-unknown-linux-musl.tar.gz" && \ diff --git a/src/components/flow/detail-panel.tsx b/src/components/flow/detail-panel.tsx index 1b6f77fd..8c26f23c 100644 --- a/src/components/flow/detail-panel.tsx +++ b/src/components/flow/detail-panel.tsx @@ -1,7 +1,7 @@ "use client"; import { useCallback, useEffect, useMemo, useState } from "react"; -import { Copy, Trash2, Lock, Info, MousePointerClick } from "lucide-react"; +import { Copy, Trash2, Lock, Info, MousePointerClick, ExternalLink } from "lucide-react"; import { useFlowStore } from "@/stores/flow-store"; import { SchemaForm } from "@/components/config-forms/schema-form"; import { VrlEditor } from "@/components/vrl-editor/vrl-editor"; @@ -255,8 +255,17 @@ export function DetailPanel({ pipelineId, isDeployed }: DetailPanelProps) {
- + {componentDef.displayName} + + +