Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ENV FLUENTBIT_VERSION=$FLUENT_BIT_VERSION
ARG FLB_NIGHTLY_BUILD
ENV FLB_NIGHTLY_BUILD=$FLB_NIGHTLY_BUILD

ARG TELEMETRY_FORGE_AGENT_VERSION=26.7.3
ARG TELEMETRY_FORGE_AGENT_VERSION=26.7.4
ENV TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION}

# Build metadata
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ENV FLUENTBIT_VERSION=$FLUENT_BIT_VERSION
ARG FLB_NIGHTLY_BUILD
ENV FLB_NIGHTLY_BUILD=$FLB_NIGHTLY_BUILD

ARG TELEMETRY_FORGE_AGENT_VERSION=26.7.3
ARG TELEMETRY_FORGE_AGENT_VERSION=26.7.4
ENV TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION}

# Build metadata
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-code.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ PATCH_LIST=${PATCH_LIST:-$PATCH_DIR/patches-agent.files}
CUSTOM_DIR=${CUSTOM_DIR:-$REPO_ROOT/custom}

# Change via ./scripts/update-version.sh only
export TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION:-26.7.3}
export TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION:-26.7.4}

# Handle version string with or without a v prefix - we just want semver
if [[ "$TELEMETRY_FORGE_AGENT_VERSION" =~ ^v?([0-9]+\.[0-9]+\.[0-9]+)$ ]] ; then
Expand Down
2 changes: 1 addition & 1 deletion source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set(CMAKE_POLICY_DEFAULT_CMP0069 NEW)
# Fluent Bit Version
set(FLB_VERSION_MAJOR 26)
set(FLB_VERSION_MINOR 7)
set(FLB_VERSION_PATCH 3)
set(FLB_VERSION_PATCH 4)
set(FLB_VERSION_STR "${FLB_VERSION_MAJOR}.${FLB_VERSION_MINOR}.${FLB_VERSION_PATCH}")

set(CMAKE_POSITION_INDEPENDENT_CODE ON)
Expand Down
2 changes: 1 addition & 1 deletion testing/bats/run-bats.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ done
SCRIPT_DIR=$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )

export FLUENT_BIT_BINARY=${FLUENT_BIT_BINARY:-/fluent-bit/bin/fluent-bit}
export TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION:-26.7.3}
export TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION:-26.7.4}

@cubic-dev-ai cubic-dev-ai Bot Jul 20, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: The runner now defaults to 26.7.4, but both environment-default sections in testing/bats/README.md still document 26.7.2, so users following the documentation will test a different agent release than expected. Updating those entries with this version bump keeps the documented runner behavior aligned.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At testing/bats/run-bats.sh, line 17:

<comment>The runner now defaults to `26.7.4`, but both environment-default sections in `testing/bats/README.md` still document `26.7.2`, so users following the documentation will test a different agent release than expected. Updating those entries with this version bump keeps the documented runner behavior aligned.</comment>

<file context>
@@ -14,7 +14,7 @@ done
 
 export FLUENT_BIT_BINARY=${FLUENT_BIT_BINARY:-/fluent-bit/bin/fluent-bit}
-export TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION:-26.7.3}
+export TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION:-26.7.4}
 export TELEMETRY_FORGE_AGENT_URL="${TELEMETRY_FORGE_AGENT_URL:-https://staging.telemetryforge.io}"
 
</file context>
Fix with cubic

export TELEMETRY_FORGE_AGENT_URL="${TELEMETRY_FORGE_AGENT_URL:-https://staging.telemetryforge.io}"

echo "INFO: Testing with binary '$FLUENT_BIT_BINARY'"
Expand Down
2 changes: 1 addition & 1 deletion testing/bats/run-package-functional-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export FLUENT_BIT_BINARY=${FLUENT_BIT_BINARY:-/opt/telemetryforge-agent/bin/flue

# Only used if no packages downloaded and running manually (not in CI)
export TELEMETRY_FORGE_AGENT_URL=${TELEMETRY_FORGE_AGENT_URL:-https://staging.telemetryforge.io}
export TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION:-26.7.3}
export TELEMETRY_FORGE_AGENT_VERSION=${TELEMETRY_FORGE_AGENT_VERSION:-26.7.4}

# Location of packages to test: wipe this locally for a different target
export DOWNLOAD_DIR=${DOWNLOAD_DIR:-$PWD/downloads}
Expand Down
Loading