Version Packages - #1404
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
8 times, most recently
from
July 31, 2026 01:33
6693b60 to
5c1f21a
Compare
Simon Ingeson (smonn)
approved these changes
Jul 31, 2026
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 31, 2026 13:59
5c1f21a to
9f7f690
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@qawolf/cli@1.4.1
Patch Changes
5d43046: A request that runs out of time now says it timed out and how long it waited, instead of reporting an unreachable host and sending you to check your network and
QAWOLF_HOST_URL.Behind that, a call can now carry its own deadline rather than sharing one fifteen-second limit with everything else. Nothing changes for calls the platform answers from its database, which is all of them today; the endpoints whose work genuinely takes longer can ask for the time they need.
ba45b94: Stage flow files correctly on Windows. Flow discovery returned forward-slash paths from the glob, while the rest of the CLI builds paths with
node:pathand gets backslashes. The staging step compared the two, never matched, and returned the original source path.qawolf flows runthen executed flows from the project tree instead of the prepared run directory, so a flow resolved whatever Playwright the project had installed rather than the pinned executor, and a flow importing#playwrightfailed. Flow discovery now returns one canonical path form.e7cf799: Find Playwright and Appium correctly on Windows. The CLI accepted two shim names: the
.cmdwrapper npm writes, and the extension-less POSIX script. It missed the.exeshimbun installwrites, soqawolf doctorreported Playwright as missing, andqawolf flows runandqawolf install browsersfailed on a project installed with bun. It also counted the extension-less script as usable, which Windows cannot launch —CreateProcessreportsENOENTfor a path with no executable extension, even when the file is present.qawolf doctorthen reported Playwright as installed, andqawolf flows runfailed with an error naming a file the user can see on disk. Both bugs also gated the pinned-dependency check, so the CLI either reinstalled its runtime on every run or read an unusable directory as fully installed.appiumcarried the same names and the same two bugs, which broke Android flows andqawolf install android. The CLI now looks only for the.cmdand.exeshims on Windows. A project whosenode_modules/.binholds only the extension-less shim is now rejected, and the CLI installs its managed runtime instead. That affects a tree installed on Linux or macOS and then used from Windows, through a bind mount, a copied directory, or WSL. A project installed on Windows by npm or bun is unaffected.e7cf799: Fix
ENOENTwhen the CLI spawns npm, Appium, or the Android SDK tools on Windows.qawolf flows runfailed while preparing the environment.qawolf doctorreported npm andappiumas not installed, even though both worked in the same shell.qawolf install androidcould not reachsdkmanageroravdmanager. Windows ships these tools as.cmdor.batwrappers and ships no.exealternative. Node's process spawn cannot execute a batch file directly. The CLI now names the wrapper file and runs it throughcmd.exe /d /s /cwith quoted arguments. Theadbandemulatorpaths built fromANDROID_HOMEnow name the.exesuffix directly instead of relying on the spawn path search. Running the CLI inside WSL is unaffected, because it reports itself as Linux and carries POSIX tools.