Version Packages#1383
Merged
Merged
Conversation
Michael Price (michael-pr)
approved these changes
Jun 26, 2026
Contributor
|
This release is currently blocked. I ran into an issue testing last night. Will post an update with a fix here today. |
Contributor
|
Waiting on #1385. |
b2e7623 to
5f24357
Compare
5f24357 to
45ac4af
Compare
Michael Price (michael-pr)
approved these changes
Jul 1, 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.
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.1.0
Minor Changes
node_modulesso flows run correctly in monorepos, single-package projects, and empty directories across both the Node and compiled-binary channels. The CLI-owned executor is always pinned and never pollutes or is shadowed by the surrounding project, while the flow's own declared dependencies still resolve. Addsqawolf install clearto wipe the managed runtime cache.Patch Changes
flows rundeterministically once the run completes. The flow runtime can launch browser processes (e.g. a channel-launched Google Chrome) whose CDP sockets and timers keep Node's event loop alive after teardown, so the CLI previously printed its results and then hung indefinitely. The process now flushes stdout/stderr and exits with the run's exit code (1 on flow failure, 0 on pass) as soon as the command resolves, with a backstop in case a stream stalls.#playwrightsubpath import when running flows in the isolated managed runtime. QA Wolf flow bundles import Playwright through a Node.jsimportsalias (#playwright), but the pulled bundle'spackage.jsonomits theimportsfield, so the stagedexec/package.jsoncould not resolve it and flows failed withERR_PACKAGE_IMPORT_NOT_DEFINED. The CLI now merges the#playwrightalias into the stagedexec/package.json, pointing it at the pinned Playwright resolved through the inner-hopnode_modulessymlink — fixing both the Node import path and the compiled-binary bundle path..tsextension but ships as.js(and vice versa). Platform-generated bundles often import sibling utilities as.tswhile the file on disk is.js; native Node ESM resolves extensions literally and throwsERR_MODULE_NOT_FOUND. A synchronousmodule.registerHooksresolve hook now transparently retries the sibling source extension (.ts↔.js,.mts↔.mjs,.cts↔.cjs) only on resolution failure — literal matches always win and nothing is rewritten on disk. Raises the Node engine floor to>=22.15.0, the release that introduced synchronous hooks.