Version Packages - #1500
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 19, 2026 13:19
47ba425 to
dd056d1
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 19, 2026 13:19
dd056d1 to
3622850
Compare
Chase J (chajac)
approved these changes
Aug 19, 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.12.0
Minor Changes
47c7ec9: The managed runtime uses Appium 3.6.0 and the UiAutomator2 driver 8.4.0.
Appium 2.11.3 installed five copies of
axiosbefore version 1.15.1. These versions have a header injection defect (CVE-2026-42035). Appium 3.6.0 installs one copy ofaxios1.18.1.appiumbecomes a development dependency. The CLI does not import it. It starts Appium from the managed runtime directory. An install of@qawolf/cliis thus smaller: 413 packages in place of 797.The managed runtime directory has a new name, so the CLI installs the runtime again when you first run a flow.
fd89edd: The new command
qawolf issue addFlowsadds flows to a coverage request. Flows that the coverage request already covers stay covered.You cannot add flows to a bug report or a maintenance report. These reports link to flows through the runs that reproduce them.
Patch Changes
b656edf: The CLI now reads flow names that contain quote characters.
Before this change, the parser stopped the name at the first single quote or double quote. The parser ignored which quote started the name. Thus the name
Shopper's cartbecameShopper. The parser also did not find the target of that flow. A flow without a target does not run. Thereforeqawolf flows runskipped the flow and showed the messageNo flows matched.The commandqawolf flows listshowed the short name.The parser now records the quote that starts the name. It also accepts a backslash before a quote. Thus the parser correctly reads the names
"Say \"hi\""and'Shopper\'s cart'. The parser accepts a name in backticks. A name that contains${...}stays dynamic, because the value is only available at run time.Two more target forms now work. The CLI reads the target from an options object that contains a second object before the
targetkey. The CLI also reads a target in backticks.