Skip to content

release: update to 5.0.9#12018

Merged
edsiper merged 4 commits into
masterfrom
release-v5.0.9
Jun 30, 2026
Merged

release: update to 5.0.9#12018
edsiper merged 4 commits into
masterfrom
release-v5.0.9

Conversation

@cosmo0920

@cosmo0920 cosmo0920 commented Jun 30, 2026

Copy link
Copy Markdown
Contributor

#11999 was overwritten unexpectedly. So, we need to send this manually.


Enter [N/A] in the box, if an item is not applicable to your change.

Testing
Before we can approve your change; please submit the following in a comment:

  • Example configuration file for the change
  • Debug log output from testing the change
  • Attached Valgrind output that shows no leaks or memory corruption was found

If this is a change to packaging of containers or native binaries then please confirm it works for all targets.

  • Run local packaging test showing all targets (including any new ones) build.
  • Set ok-package-test label to test for all targets (requires maintainer to do).

Documentation

  • Documentation required for this feature

Backporting

  • Backport to latest stable release.

Fluent Bit is licensed under Apache 2.0, by submitting this pull request I understand that this code will be released under the terms of that license.

Signed-off-by: Hiroshi Hatake <hiroshi@chronosphere.io>
Signed-off-by: Hiroshi Hatake <hiroshi@chronosphere.io>
Signed-off-by: Hiroshi Hatake <hiroshi@chronosphere.io>
Signed-off-by: Hiroshi Hatake <hiroshi@chronosphere.io>
@coderabbitai

coderabbitai Bot commented Jun 30, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

Version bump from 5.0.8 to 5.0.9 across four packaging manifests: CMakeLists.txt (FLB_VERSION_PATCH), dockerfiles/Dockerfile (RELEASE_VERSION), fluent-bit-5.0.9.bb (PV), and snap/snapcraft.yaml (version).

Changes

Fluent Bit 5.0.9 Version Bump

Layer / File(s) Summary
Version bump across all packaging files
CMakeLists.txt, dockerfiles/Dockerfile, fluent-bit-5.0.9.bb, snap/snapcraft.yaml
FLB_VERSION_PATCH, RELEASE_VERSION, PV, and snap version are all updated from 5.0.8 to 5.0.9.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

  • fluent/fluent-bit#11349: Same set of files (CMakeLists.txt, Bitbake recipe, Snap manifest) were modified for the 5.0.0 version bump.

Suggested reviewers

  • fujimotos
  • niedbalski
  • patrick-stephens
  • celalettin1286

🐰 Nine is fine, the patch is bright,
A tiny hop from eight to right,
CMake, Snap, and Dockerfile too,
All bumped along in version queue.
Fluent Bit hops on, brand new! 🎉

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main change: a release version bump to 5.0.9.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release-v5.0.9

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@cosmo0920 cosmo0920 added this to the Fluent Bit v5.0.9 milestone Jun 30, 2026
@edsiper edsiper merged commit b81c252 into master Jun 30, 2026
50 of 55 checks passed
@edsiper edsiper deleted the release-v5.0.9 branch June 30, 2026 04:10

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@fluent-bit-5.0.9.bb`:
- Around line 19-21: The SRCREV in the fluent-bit recipe is pointing to a
non-existent upstream ref, so update the recipe to use an existing git tag or
commit that is actually present in fluent/fluent-bit.git, or ensure the missing
v5.0.9 tag is published; locate and fix the SRCREV assignment in the
fluent-bit-5.0.9.bb recipe.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 8b191e83-c197-4811-822b-4699f661161c

📥 Commits

Reviewing files that changed from the base of the PR and between 2d5d285 and 016e398.

📒 Files selected for processing (4)
  • CMakeLists.txt
  • dockerfiles/Dockerfile
  • fluent-bit-5.0.9.bb
  • snap/snapcraft.yaml

Comment thread fluent-bit-5.0.9.bb
Comment on lines +19 to 21
PV = "5.0.9"

SRCREV = "v${PV}"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🩺 Stability & Availability | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check for stale 5.0.8 BitBake recipe
fd -i 'fluent-bit-5\.0\.8\.bb' || echo "No stale 5.0.8 recipe found"

# Check if v5.0.9 tag exists in upstream repo
git ls-remote --tags https://github.com/fluent/fluent-bit.git 'refs/tags/v5.0.9' || echo "Tag v5.0.9 not found in remote"

Repository: fluent/fluent-bit

Length of output: 155


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== Files matching fluent-bit recipes =="
git ls-files | rg '(^|/)fluent-bit-[0-9.]+\.bb$' || true

echo
echo "== Recipe contents around PV/SRCREV =="
for f in $(git ls-files | rg '(^|/)fluent-bit-[0-9.]+\.bb$' || true); do
  echo "--- $f"
  sed -n '1,80p' "$f"
done

echo
echo "== Upstream tag refs =="
git ls-remote --tags https://github.com/fluent/fluent-bit.git 'refs/tags/v5.0.9' 'refs/tags/v5.0.8' || true

Repository: fluent/fluent-bit

Length of output: 1948


🏁 Script executed:

#!/bin/bash
set -euo pipefail
git ls-remote --tags https://github.com/fluent/fluent-bit.git 'refs/tags/v5.0.9' || true

Repository: fluent/fluent-bit

Length of output: 155


SRCREV points at a missing upstream tag
fluent-bit-5.0.9.bb:21 resolves to v5.0.9, but that ref is not present in https://github.com/fluent/fluent-bit.git, so fetches will fail. Publish the tag or point SRCREV at an existing ref.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@fluent-bit-5.0.9.bb` around lines 19 - 21, The SRCREV in the fluent-bit
recipe is pointing to a non-existent upstream ref, so update the recipe to use
an existing git tag or commit that is actually present in fluent/fluent-bit.git,
or ensure the missing v5.0.9 tag is published; locate and fix the SRCREV
assignment in the fluent-bit-5.0.9.bb recipe.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants