chore: release 0.2.27 - #107
Merged
Merged
Conversation
Cuts 0.2.27 for #106 - a glob rooted in the workspace rather than in the machine. Behaviour change, and worth reading before upgrading: a caller that relied on `glob` searching the whole filesystem from a shell-backed sandbox will now search the working directory. That reliance is unlikely to have been deliberate - the same call on a virtual-path backend always meant the workspace - but a caller wanting the machine can still ask for it by naming an absolute root. Everything else is a fix in the direction callers already expected: `**/*` now matches files at the top level, and a glob of `*` no longer answers 2540 paths from `/proc`. Version and changelog only. Verified on #106 before merge: the full suite, 100% coverage, and the built command checked against a live service - `find . -path '*/*' -type f` in a workspace holding three files answers exactly those three.
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.
Cuts 0.2.27 for #106 - a glob rooted in the workspace rather than in the
machine.
Behaviour change, and worth reading before upgrading: a caller that
relied on
globsearching the whole filesystem from a shell-backedsandbox will now search the working directory. That reliance is unlikely
to have been deliberate - the same call on a virtual-path backend always
meant the workspace - but a caller wanting the machine can still ask for
it by naming an absolute root.
Everything else is a fix in the direction callers already expected:
**/*now matches files at the top level, and a glob of
*no longer answers2540 paths from
/proc.Version and changelog only. Verified on #106 before merge: the full
suite, 100% coverage, and the built command checked against a live
service -
find . -path '*/*' -type fin a workspace holding three filesanswers exactly those three.