Bump FdwVersion to 2.2.3 (FDW v2.2.3 security release)#4996
Merged
Conversation
MichaelBurgess
approved these changes
May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Points the embedded Steampipe FDW at the newly published
steampipe-postgres-fdwv2.2.3 security release. FDW v2.2.3 is now fully published — GitHub release plus the OCI imageghcr.io/turbot/steampipe/fdw:2.2.3is live — so Steampipe must consume the patched image.This is a one-line constant change in
pkg/constants/db.go(FdwVersion2.2.2→2.2.3).FdwImageRefis derived fromFdwVersion, so the embedded FDW image ref automatically resolves toghcr.io/turbot/steampipe/fdw:2.2.3.Why
FDW v2.2.3 carries the
jackc/pgx/v5v5.9.2 fix for CVE-2026-41889. Steampipe's ownpgx/go-jose/otelremediations for v2.4.3 already merged via #4995 (which also added the## v2.4.3 [2026-05-19]CHANGELOG entry). Pointing at the patched FDW image is the last remaining prerequisite before cutting the Steampipe v2.4.3 release.Changes
pkg/constants/db.go:FdwVersion = "2.2.2"→FdwVersion = "2.2.3"(only this constant;FdwImageRefuntouched, derives automatically).CHANGELOG.md: appended one bullet to the existing## v2.4.3 [2026-05-19]Dependencies section (no new entry created).Verification
GOTOOLCHAIN=auto go build ./...— clean (exit 0).PR only. No merge, no tag, no release.