Found during v0.11.0-beta.1 release review (Tech Lead). The main CI workflow's dbt-tools E2E job had been red since ~2026-08-23 (40+ runs): packages/dbt-tools/test/e2e/setup-versions.sh line 84 ran dbt --version | grep -oE 'installed: ...' with no || echo unknown fallback (unlike lines 63/74), so under set -euo pipefail a no-match killed the whole script mid-run and the actual E2E tests never ran. v0.11.0-beta.1 adds the missing fallback to un-break CI. Remaining work: root-cause WHY the regex stopped matching (did the pinned dbt build change its --version output format?), so unknown doesn't quietly become permanent.
Found during v0.11.0-beta.1 release review (Tech Lead). The main
CIworkflow'sdbt-tools E2Ejob had been red since ~2026-08-23 (40+ runs):packages/dbt-tools/test/e2e/setup-versions.shline 84 randbt --version | grep -oE 'installed: ...'with no|| echo unknownfallback (unlike lines 63/74), so underset -euo pipefaila no-match killed the whole script mid-run and the actual E2E tests never ran. v0.11.0-beta.1 adds the missing fallback to un-break CI. Remaining work: root-cause WHY the regex stopped matching (did the pinned dbt build change its--versionoutput format?), sounknowndoesn't quietly become permanent.