chore(deps): update dependency cypress to version 10.11.0 π #303
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 contains the following updates:
5.3.0β10.11.0Release Notes
cypress-io/cypress (cypress)
v10.11.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-11-0
v10.10.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-10-0
v10.9.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-9-0
v10.8.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-8-0
v10.7.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-7-0
v10.6.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-6-0
v10.5.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-5-0
v10.4.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-4-0
v10.3.1Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-3-1
v10.3.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-3-0
v10.2.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-2-0
v10.1.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-1-0
v10.0.3Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-0-3
v10.0.2Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-0-2
v10.0.1Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-0-1
v10.0.0Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#10-0-0
v9.7.0Compare Source
Released 5/23/2022
Features:
Addressed in #β21418.
Deprecations:
Cypress.Cookies.preserveOnce()andCypress.Cookies.defaults()CypressAPIs have been deprecated. In a future release, support for
Cypress.Cookies.preserveOnce()andCypress.Cookies.defaults()will beremoved. Consider using the experimental
cy.session()command instead to cache and restorecookies and other sessions details between tests. Fixed
#β21333.
Bugfixes:
cy.contains()command to correctlyerror and retry if the provided regex pattern begins with an equal sign and a
match was not initially found. Previously the command would incorrectly fail
with a syntax error. Fixed
#β21108.
cy.session()command log grouping and validation verbiage.This change provides better insights to logs associated with the command.
Fixed #β21377.
eventemitter2third-party type definitions fromcyandCypressthat were unintentionally exposed. Fixed
#β20556.
Dependency Updates:
16.5.0to16.13.2. Addressed in#β21418.
cypress runand whenselecting Electron browser in
cypress openfrom94.0.4606.81to100.0.4896.75. Addressed in#β21418.
electrondependency from15.5.1to18.0.4. Addressed in#β21418.
v9.6.1: 9.6.1Compare Source
Released 5/9/2022
Bugfixes:
Fixed #β19793.
body in the command log. Fixed
#β21361.
cy.contains()and.should('contain', ...)to handle finding text thatcontains backslash characters. Fixed
#β19116
.type('{enter}')to support sending the Enterkeystroke to submit buttons that are not rendered within a form html element,
but are associated with a form via the
formattribute. Fixed#β21163.
cy.session()such that re-running tests in open modewill now correctly recreate a session. Before this change, an error was thrown
indicating the saved
setupfunction was not a function because it wasserialized. Fixed
#β17805.
v9.6.0: 9.6.0Compare Source
Released 4/25/2022
Features:
cy.origin()command. This feature allows you to testacross different origins or domains within a single test. This experiment was
designed to work side-by-side with the
cy.session()experimental feature. You can turn on use of this command by setting the
experimentalSessionAndOriginconfigurationoption to
true. For more details, readour blog post.
Addressed #β17336 and
#β944.
experimentalSessionAndOrigin. Thisoption enables support for
cy.session()andcy.origin().experimentalSessionSupportconfiguration option has been removed andreplaced by the
experimentalSessionAndOriginconfiguration option. Pleaseupdate your configuration to use the new
experimentalSessionAndOriginoption to continue to opt-in to this experimental feature.
experimentalSessionAndOriginis enabled, cross-origin requests willno longer immediately fail, but instead, time out based on the
pageLoadTimeoutconfiguration. This allows the request to be appropriately handled by the
cy.origin()command.experimentalSessionAndOriginis enabled, Cypress will no longer waiton page loads between hooks before moving on to the next test.
Bugfixes:
to an input element when using
.type('{enter}'). Fixed#β21033.
or if it came from an error in a plugin before showing the error message.
Fixed #β21010.
Cypress binary and the max file length is exceeded. Fixed in
#β21047.
Cypress.Commands.add()TypeScript types to better reflect theattributes of the
.add()utility and the JQuery element, a possible previoussubject type. #β20376.
Dependency Updates:
electrondependency from15.3.5to15.5.1to consume fixesrelated to
improve performance on
macOS Big Sur and later. Addressed
#β21068.
v9.5.4: 9.5.4Compare Source
Released 4/11/2022
Bugfixes:
connect to dbus. These errors are normal and expected, and do not result in
test failures. Because they are always present when running Electron inside
docker containers, it has incorrectly led people to believe it is the
root-cause of an error within their test run. By silencing these errors, it
will improve the debug experience to allow users to focus on meaningful
warning and error messages. Fixed
#β19299.
*.enableevents are sent if Cypressbecomes disconnected from the Chrome DevTools Protocol and must re-establish a
connection to ensure all command logs are displayed to the user. This fixes an
issue where some command logs, like download or network events, are missing
once Cypress has disconnected and then reconnected to the Chrome DevTools
Protocol. Fixed #β20618.
cy.type('{enter}')was not sending the Enter key forFirefox
v98+. This was not an issue with Firefoxv97and below. Fixed#β20562.
patterns provided to the
--specCLI parameter was incorrectly splitting thepatterns in unexpected places when it should have split on commas. Fixes
#β20794.
cy.root()to respect thetimeoutoption passed to the command.Previously, when the
timeoutoption was provided, it was ignored and thedefault timeout was used. Fixed
#β19985.
to ensure
installing pre-release versions
of the Cypress binary are within the maximum path length of 260 characters.
Fixed in #β20961.
prevented
.pause()from correctly executing when passing the--headed --no-exitCLI flags tocypress run. Fixed#β20745.
sometimes throw an expected error on navigation with
cy.back()andcy.go(). Fixed #β19749and #β20539.
anywhen the correct type isCookie. Fixed in#β20513.
Cypress.Command.addAll()Typescript types. Fixed#β18886.
cy.session()where an error was thrownwhen no cookies had been set for the session and the user clicks the session
command log to view additional details in the DevTools console. Fixed in
#β20946.
Misc:
cy.session()command log visuals.Fixed #β20433.
Dependency Updates:
ansi-regexdependency from4.1.0to4.1.1to address theCVE-2021-3807 NVD security
vulnerability. Addressed in
#β20807.
plistdependency from3.0.4to3.0.5to address theCVE-2022-22912 NVD security
vulnerability. Addressed in
#β20808.
v9.5.3: 9.5.3Compare Source
Released 3/28/2022
Bugfixes:
cy.intercept()where the response status codeand response body were sometimes missing from the log details in
openmode.Fixed #β18757.
cy.readFile()where the command would not retry or providea meaningful error message if
nullencoding was used and the file was notfound. Fixed #β20683.
pressed shortcut key was not used in conjunction with either the
alt,ctrl, orshiftmodifier keys. This fixed an issue where the Cypressshortcut handler would override the browser native keyboard shortcut for
search (
ctrl + f). Fixed#β20222.
CYPRESS_DOWNLOAD_PATH_TEMPLATEenvironment variable. Issues were seenutilizing this template when the env was provided from a package manager file.
Fixed #β19914.
Cypress.BufferTypeScript type to reference the static constructorof
Buffer, instead of incorrectly referencing theBufferinstance whichcaused Type errors. Fixes
#β20542.
Dependency Updates:
electrondependency from15.3.4to15.3.5to address theCVE-2022-21718 NVD security
vulnerability. Addressed in
#β20750.
minimistdependency from1.2.5to1.2.6. Addressed in#β20756.
nanoiddependency from3.1.20to3.1.31to address theCVE-2021-23566 NVD security
vulnerability. Addressed in
#β20726.
node-forgedependency from1.0.0to1.3.0to address theCVE-2022-24771 NVD security
vulnerability. Addressed in
#β20727.
v9.5.2: 9.5.2Compare Source
Released 3/14/2022
Bugfixes:
.type()where click events could be fired on theincorrect target element because the target focus changed within a key-down
event handler callback. Fixed in
#β20525.
colors were not removed from the FireFox warning message about the
chromeWebSecurityconfiguration option having no effect on the Firefoxbrowser. Fixes #β20496.
unique cache folder for each
pre-release installation
on a machine. This removes the need to run
cypress clear cachebeforeinstalling a new pre-release version of Cypress or before installing a new
released version of Cypress after a pre-release version had been installed.
Addressed in #β20296.
Misc:
Origin-Agent-Clusterheader forproxied responses to ensure
document.domaincan continue to be set withChrome v106+. This was necessary because Chrome is planning to make
document.domainimmutablein v106+ to relax the same-origin policy by interpreting the
Origin-Agent-Clusterastrue, whereas it is currently interpreted asfalse. Addresses#β20147.
Dependency Updates:
url-parsedependency from1.5.6to1.5.9to address these NVDsecurity vulnerabilities,
CVE-2022-0639,
CVE-2022-0686 and
CVE-2022-0691. Addressed in
#β20386 and
#β20439.
v9.5.1: 9.5.1Compare Source
Released 2/28/2022
Bugfixes:
readyevent to the Plugins process to ensure all plugins havesuccessfully started before the configuration is loaded and the tests start.
Fixed in #β19792.
stuck in the initialization phase, where the user can only view the loading
spinner.
--loaderflag for plugins.on MacOS machines that leverage the VMWare CBCloud SaaS solution. Before this
change, random test failures were observed, as well as hanging tests and
initially pending HTTP and HTTPS responses. Fixed in
#β20062.
colors were not removed from the
cy.fixtures()error code frame. Fixes#β20208.
test config override errors were formatted incorrectly. Fixes
#β20208.
errors with booleans or numbers. Fixes
#β19561.
Dependency Updates:
url-parsedependency from1.5.2to1.5.6to avoid authorizationbypass through user-controlled key to address this
NVD security vulnerability.
Addressed in #β20270.
v9.5.0: 9.5.0Compare Source
Released 2/15/2022
Features:
to improve readability and provide meaningful stack traces. Addressed in
#β20124.
cy.request()log message to hide the origin when it matched thebrowser origin to make debugging easier. This reduces the length of the log
message that could be partially hidden if a long url is requested. Addressed
in #β20009.
ShadowRootandDocumentelements as HTMLelements. Previously these would be logged as enumerated objects, which were
difficult to evaluate. Addressed in
#β20049.
nodepath in the run header. Addressed in#β20120.
Bugfixes:
.selectFile()could have thewrong
Fileprototype. Fixes#β20003.
.select()to only dispatch thechangeandinputevents when theselected option is not the currently selected option. This change aligns
.select()with the browser. Fixes#β19494.
.type(' ')to align with the W3C standards where a click eventshould be dispatched when the Space key is pressed and the current focus is on
a state-changing element with type
button,image,submitorreset.Fixes #β20067.
v9.4.1: 9.4.1Compare Source
Released 1/31/2022
Bugfixes:
line endings in the public NPM package prevented some users from running
Cypress. Fixes #β19986.
v9.4.0: 9.4.0Compare Source
Released 1/31/2022
Features
.selectFile()after receiving feedback after itsinitial release in 9.3.0.
files based on their extension to correctly encode file uploads. Addressed
in #β19751.
mimeTypeproperty so you can explicitly set the mime type onfiles using the
mimeTypeproperty. Addressed in#β19751.
TypedArrayinstance or a
Cypress.Bufferinstance, where previously file contents wereexpected to only be an instance of
Cypress.Buffer. Addressed in#β19751.
.selectFile()to retain the fileName of files read from disk towork with aliases. Addressed in
#β19803.
Bugfixes:
parse the
--specCLI parameter for glob patterns containing a range. Fixes#β19783.
--openssl-legacy-providerflag was not being passed to the plugins' childprocess when the user's system Node version was Node 17+ built with OpenSSL
v3+ which resulted in Cypress crashing when trying to run tests. Fixes
#β19712.
cy.type('{enter}')to align with the W3C standards where a clickevent should be dispatched when the Enter key is pressed and the current focus
is on astate-changing element with type
button,image,submitorreset. Fixes #β19541.v9.3.1: 9.3.1Compare Source
Released 1/19/2022
Bugfixes:
#β19747.
v9.3.0: 9.3.0Compare Source
Released 1/18/2022
Features:
.selectFile(), to select a file or files in anHTML5 input element or simulate dragging a file or files into the browser. The
API is similar to
cypress-file-uploadand we have provided amigration guide
for previous users of that plugin. For more details, see
our blog post.
Fixes #β19524 and
#β170.
Bufferpolyfill, asCypress.Buffer,to enable working with binary data. Addressed in
#β19524.
CYPRESS_DOWNLOAD_PATH_TEMPLATEenvironment variable which can beset to a string template for building the download URL for the Cypress binary.
This environment variable is useful for users who are downloading the Cypress
binary from a proxy that is not one-to-one with the Cypress's default download
url. More information can be found in the
Install Binary
documentation. Fixes
#β15697.
Bugfixes:
--specCLI parameter was not working properly whenpassing multiple glob patterns that are separated by commas. Fixes
#β16102.
CYPRESS_VERIFY_TIMEOUTenvironment variable wasread so it can set in a project's
package.jsonor it's.npmrc. Fixes#β19559.
Dependency Updates:
graceful-fsfrom4.2.0to4.2.9. This upgrade resolves issuesobserved with using graceful-fs v4.2.0 with resolve v1.21+. Addressed in
#β19676 and resolves
#β19610.
graceful-fsbreaks Cypress's compatibility withYarn 2. We have observed errors with Yarn 2.4.2 with
graceful-fs4.2.9.Before this change, Cypress had minimal Yarn 2 support (see
#β6377). Between Yarn 3
fixing multiple bugs and the migration path from Yarn 2 to Yarn 3 being
minimal, we felt the best step forward was to support and recommend Yarn 3
over Yarn 2.
electronfrom15.2.0to15.3.4. Addressed in#β19351.
v9.2.1: 9.2.1Compare Source
Released 1/10/2022
Bugfixes:
Cypress open after each spec finishes when the
--headed --no-exitflags arepassed to
cypress run. Fixes#β19485.
--openssl-legacy-provideroptionshould be passed to the plugins' child process when the system Node version is
v17+. This prevents Cypress from crashing when a user has Node 17 installed
which was built with OpenSSL v1. Fixes
#β19320.
CYPRESS_VERIFY_TIMEOUTenvironment variable as a numberso Cypress will no longer throw
TypeError: Expected the timeout option to be a non-negative integer. Fixes#β19476.
Dependency Updates:
cli-table3from~0.6.0to~0.6.1to avoidproblems with the bug introduced in the
colors.js v1.4.44-liberty-2 release.
Addresses #β19624.
v9.2.0: 9.2.0Compare Source
Released 12/20/2021
Features:
value at run-time using either the Test Configuration or using
Cypress.config()that is areadonly option.
Addresses #β6407 and
#β19001.
timeoutoption has been added to thecy.writeFile()command, with adefault value of
defaultCommandTimeout. Addresses#β3350.
maxHttpBufferSizefor the internal socket server has beenincreased to
Node's maximum Buffer size
(size varies by OS) to allow large file writes with
cy.writeFile().Addresses #β19140.
CYPRESS_VERIFY_TIMEOUTenvironment variable to override the timeoutduration of the
verifycommand. Addresses#β18290.
Bugfixes:
unnecessarily increase CPU use in
cypress openmode which lead to out ofmemory crashes on certain browsers. Fixes
#β18549.
fixes an issue where failed requests could be re-sent too many times in some
conditions. This change could increase the number of failed requests that your
app sees. Fixes #β19043.
fetchandxhrrequestscould be associated with the wrong request. Fixes
#β19043.
thenblocks will no longer throw errorscausing the test to fail. Tests that are skipped outside of
thenblocks willno longer trigger the fail event. This will prevent screenshots from happening
from errors thrown by the fail event.Fixes
#β14867 and
#β17660.
fixture provided in a static response to
cy.intercept()did not supportpassing
nullto encoding to read the fixture as a Buffer. This identified anundocumented 9.0.0 Breaking Change where the default read behavior of a
fixture changed from a Buffer to being read with
utf8encoding. Fixes#β19344.
cy.contains()attempted to ignore<script>and<style>elements foundwithin
<body>. by deleting them from the dom. This behavior was corrected toignore the elements without deleting them. Fixes
#β19377.
if the application under test has a resource of
"http: //localhost/asset.js"(notice the extraneous space), Cypress will now log a debug message and the
asset will fail to load. Fixes
#β9220.
Cypress.Command.add()andCypress.Command.override()TypeScripttypes. Fixes #β18879,
#β19095 and
#β18940.
prevSubjectvariants.
originalFnfunction.Cypress.session.clearAllSavedSessions(). Fixes#β19363.
Dependencies:
ssrifrom6.0.1to6.0.2to mitigatessri vulnerability. Addressed in
#β19351.
v9.1.1: 9.1.1Compare Source
Released 12/03/2021
Bugfixes:
built binary didn't contain patches to some dependencies. Addressed in
#β19239. This fixed some
issues including:
~will no longer be improperly encoded. Fixes#β19083,
#β19084,
#β19115,
#β19096,
#β19178.
data.hasOwnProperty is not a functionwill nolonger throw in some situations. Fixes
#β19091.
Dashboard. Fixes
#β19087.
#β19105
"nodeVersion": "system"with aninstalled system node >=17, Cypress will now work properly rather than throw
an error incorrectly pointing to the user's plugin file. Fixes
#β18914.
element is covered by its parent shadow root. Fixes
#β18008.
.type()events now correctly propagate out of the shadow DOM.Fixes #β17531.
thiscontext is now properly preserved when overwritingcy.clock().Fixes #β19158.
Dependencies:
@cypress/requestfrom2.88.7to2.88.10. Addressed in#β19099.
v9.1.0: 9.1.0Compare Source
Released 11/22/2021
Features:
CYPRESSenvironment variable will be set to true in child processes whereCypress runs user code in Node.js. You can now detect that you're running in
Cypress by looking for
process.env.CYPRESS. Addresses#β18805.
Bugfixes:
other spec. Fixes
#β18871.
in double-quotes. Fixes
#β1884.
cy.stub().log(false). Fixes#β18907.
indicate when it is still waiting. Fixes
#β18644.
thiscontext now have access tothiswhenoverridden. Fixes #β18899.
v9.0.0: 9.0.0Compare Source
Released 11/10/2021
Breaking Changes:
nodeVersionconfiguration option now defaults tosystem. The behaviorof the
systemoption has changed to always use the Node.js binary/versionthat launched Cypress. If Cypress was not launched via the terminal, Cypress
will use the
bundledNode.js version. This could change the behavior of codewithin your
pluginsFilesince it may be run in yoursystemNode.jsversion. Addresses
#β18684.
#β17962.
Cypress.config.Previously invalid values were ignored and could cause unexpected behavior.
Addresses #β18589.
cy.contains()no longer yields the<body>element when it matches thecontent of
<script>or<style>tags. Addresses#β14861.
Cypress.Commands.add()will now throw an error, indicating thatCypress.Commands.overwrite()should be used instead to overwrite thebehavior of existing commands. Addresses
#β18572.
chainables. Addresses
#β17496.
14.17.0to16.5.0. Thiscould change the behavior of code within the
pluginsFilewhen using thebundled Node.js version of Cypress. Addressed in
#β18317.
Deprecations:
nodeVersionconfiguration option has been deprecated and will be removedin a future release.
Features:
nullis passed as the encoding tocy.readFile()orcy.fixture(),the file is treated as binary and read as a Buffer. Similarly,
nullpassedas the encoding to
cy.writeFile()allows direct writing of buffers. If theencoding is unspecified, the default remains
utf8, matching the currentbehavior. Addresses
#β18534.
Bugfixes:
scrolled to during action commands. Fixes
#β4233.
document.referrerwill now correctly reflect the correct value from theapplication under test after
cy.visit(). Fixes#β4295.
Dependencies:
cypress runand when selectingElectron browser in
cypress openfrom91to94. Addressed in#β15292.
14.17.0to16.5.0. Addressed in#β15292.
electronfrom14.1.0to15.2.0. Addressed in#β15292.
v8.7.0: 8.7.0Compare Source
Released 10/25/2021
Features:
Addresses #β18496.
slowTestThresholdconfiguration option to customize when tests are considered "slow" during
cypress run. A test that runs slower than the given threshold will displayin orange text in the default 'spec' reporter. This configuration can be set
in your Cypress config file or via specific
test configuration.
10000ms for e2e tests and 250ms for component tests. To restore the old
behavior, you can add
"slowTestThreshold": 75to your Cypress config file.cypress runwith the default 'spec' reporter.overwrite: trueoption toCypress.Screenshot.defaultstochange default behavior to overwrite existing screenshots without having to
set
overwritefor eachcy.screenshot()command. Addresses#β7955.
Bugfixes:
Electron to the Dashboard were not playable in the Firefox or Safari browser
and were not compatible with QuickTime player in MacOS.
projectRootdirectory not being writeable will now display correctly. Fixes#β18485.
Fixes #β18445.
selectorPriorityconfiguration option of
Cypress.SelectorPlayground.defaults. Valid valuesare
data-*,id,class,tag,attribute, ornth-child. Fixes#β7745.
Dependency Updates:
ua-parser-jsto0.7.24to avoid dependency resolutionto the compromised package versions. Please read the
security advisory and
take actions advised as soon as possible. Addressed in
#β18611
v8.6.0: 8.6.0Compare Source
Released 10/11/2021
Features:
cy.screenshot()now acceptsoverwrite: trueas an option to overwriteexisting screenshots with the same file name. Addresses
#β7955.
cy.select([])can now be used to clear any selected options in a multi-valueselect. Addresses #β4318.
cy.pause()when usingcypress run --headed --no-exitwill now pausea test. Addresses #β4044.
Bugfixes:
would not display their response bodies in the DevTools Console when clicked.
Fixes #β17656.
versions earlier than 89 would result in choppy videos and skipped frames.
Fixes #β18021.
within a test. Fixes
#β18259.
--spec: {}from the CLIand instead error when passed an invalid object argument. Fixes
#β3957.
to primitive value". Fixes #β18143.
Misc:
cy.request()error message when conflictingfailOnStatusCodeand
retryOnStatusCodeFailureoptions are passed to be clearer. Fixes#β18271.
Dependency Updates:
cypress runand whenselecting Electron browser in
cypress openfrom91.0.4472.164to93.0.4577.58.electronfrom13.2.0to14.1.0. Addressed in#β18318 and
#β18384.
v8.5.0: 8.5.0Compare Source
Released 09/27/2021
Features:
.select()command. Addresses#β757.
#β18210.
Bugfixes:
NO_PROXYenvironment variable whenone is set. Fixes
#β17702.
Cypress now writes the
projectIdin the custom config file instead ofcypress.json. Fixes#β5747.
Misc:
release. A deprecation warning will now display when using Cypress in a
Windows 32-bit OS. See
#β17962 for more detail.
Addresses #β18094.
.select()command. Addressed in #β18234.v8.4.1: 8.4.1Compare Source
Released 09/17/2021
Bugfixes:
Dashboard or viewing the runs or record key for a previously set up project.
Fixes #β18129.
for showing in the Cypress Dashboard. Fixes
#β17860.
v8.4.0: 8.4.0Compare Source
Released 09/13/2021
Features:
decodeoption of
cy.url()to decode it. Addresses#β17399.
Bugfixes:
read-only location. Fixes
#β3852.
.check()or.uncheck()whenthere are no matching value attributes found.
Fixes#β7379.
domain navigation. Fixes
#β17705.
clientCertificatetypes have been added for the Cypress configuration. Fixes#β17799.
v8.3.1: 8.3.1Compare Source
Released 08/27/2021
Performance:
detection performance. Fixes
#β17773.
Bugfixes:
correct exit code would not be issued during
cypress run-ctwhile running inthe Electron browser. Fixes
#β17752 and
#β17885.
Cypress would cause a
SIGSEGVerror on Mac when closing the Cypress appopened via
cypress open. Fixes#β17766.
beforeinputevent now correctly fires in Firefox during keyboard events.Fixes #β17583.
Misc:
cy.document()typings now allow for thetimeoutoption. Fixes#β17695.
cy.title()typings now allow for thetimeoutoption. Fixes#β17781
Dependency Updates:
electronfrom13.1.7to13.2.0. Addressed in#β17772.
Configuration
π Schedule: Branch creation - "before 2am" in timezone America/New_York, Automerge - At any time (no schedule defined).
π¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.
β» Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
π Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.