build(deps): bump tuikit to v0.4.1 for logger data-race fix#415
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
tuikit v0.4.1 makes StandardLogger's mode concurrency-safe and fixes the
Std{Out,Err}Writer restore path (flowexec/tuikit#112). That resolves the data
race between a command's concurrently-copied stdout and stderr streams at the
source, so no client-side workaround is needed here.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
jahvon
force-pushed
the
fix/logger-writer-datarace
branch
from
July 26, 2026 15:06
49088ce to
3661996
Compare
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
Bumps tuikit
v0.4.0→v0.4.1, which fixes the logger data race at the source (flowexec/tuikit#112) instead of working around it in flow.The race was between a command's stdout and stderr streams (copied by os/exec in separate goroutines) both flipping
StandardLogger's sharedmodefield. tuikit v0.4.1:modefield with a mutex,StdOutWriternever restoring the mode after a flip.Since the fix lives in the dependency, no client-side change is needed here beyond the version bump — this PR previously carried a
syncWriterworkaround, now removed in favor of the upstream fix.Testing
flow validatepasses (generate → lint → unit + e2e → schemas).output_race_test.go.🤖 Generated with Claude Code