All Versions
51
Latest Version
Avg Release Cycle
16 days
Latest Release
1559 days ago
Changelog History
Page 5
Changelog History
Page 5
-
v3.8.0 Changes
December 12, 2019π Released 12/12/2019
π Features:
- π» Chrome can now be run in headless mode by using
cypress run --headless --browser chrome
. Addresses #832. - Cypress now accepts a
--tag
argument to be used to identify separate runs. Any tags assigned will be shown on the run in the Cypress Dashboard. Addresses #2561. - π² The commands
.its()
and.invoke()
now accept anoptions
object to allow changing logging options. Addresses #1450. - Cypress will now attempt to use the
unzip
binary duringcypress install
before trying the slower, Node.js-based unzipping method. Addresses #3803. - β¬οΈ Upgraded Electron to 7.1.4. This bumps the internal Node version to 12.8.1 and the internal Chromium version to 78.0.3904.113.
π Bugfixes:
- π We fixed a regression in 3.5.0 where Cypress would crash on Windows when trying to pass a url through
--config
or--env
command line flags. Fixes #5466. - π» We fixed a regression in 3.5.0 where a supplied
Cookie
header during "cy.visit()
visit orcy.request()
would be overwritten by theCookie
header generated from the browser's cookie store. Fixes #5894. - π We fixed a regression in 3.5.0 where
cy.getCookie()
would incorrectly filter cookies by their domain, leading to unexpected results. Fixes #5656. - π We fixed a regression in 3.5.0 where calling
.type({ force: true })
on hidden inputs would not type the correct characters. Fixes #5835. - π We fixed a regression in 3.5.0 where
.type()
was not respecting previous selections if the current value of the input was the same as the key. This also fixed an where.type()
would not respect previous selections in non-selectionRange inputs (like email or number inputs). Fixes #5703. - π During visibility checks, Cypress now properly evaluates a DOM element transformed by
scale(0)
orrotateY(90deg)
as not visible. Fixes #723. - π Fixed a bug where the specs list in interactive mode would not refresh when files are changed on disk. Fixes #5933.
- π§
env
configuration option displays properly within the settings panel. Previously, setting env options would incorrectly render"undefined"
as the value. Fixes #5859.
Misc:
- π We removed the max viewport size and lowered min viewport size to
0
forcy.viewport()
Addresses #5871 and #5892. - β
The Test Runner now shows a non-Chrome logo for browsers passed in via
config.browser
that are not of the Chrome family. It also supports showing the Firefox logo (in preparation for Firefox browser support). Fixes #5745. - β‘οΈ We updated the look of some of our icons. Addressed in #5822.
- We're continuing to make progress in converting our codebase from CoffeeScript to JavaScript. Addresses #2690 in #5643.
cy.request
will now automatically encode special characters in the request URL, including Unicode. Addresses #5274.- You can pass additional Electron launch command line arguments using environment variable
ELECTRON_EXTRA_LAUNCH_ARGS
. Addresses #5807.
β‘οΈ Dependency Updates:
- π» Chrome can now be run in headless mode by using
-
v3.7.0 Changes
November 27, 2019π Released 11/27/2019
π Features:
- π§ Cypress now includes the full list of browsers found and their properties within the Cypress configuration. This means that the
browsers
array is also editable within plugins by accessingconfig.browsers
via the Configuration API. The currently available browsers are also displayed within the configuration panel under Settings in the Test Runner. Addresses #5067. - π Environment variables within GitHub Actions are now detected and passed to the Dashboard in order to display the proper git information for recorded runs. Fixes #5609.
π Bugfixes:
- π Fixed a regression in 3.5.0 where a
cy.visit
that changes superdomain would incorrectly clear cookies of other domains. Fixes #5756. - π Fixed a regression in 3.5.0 where cookies set in a redirect on a
cy.visit
or in acy.request
with a customDomain
that is not a subdomain of the current domain would fail to set. Fixes #5656. - π Fixed a regression introduced in 3.5.0 which caused
cy.type
to send duplicate modifier keys. Fixes #5622. - π We fixed a regression in 3.6.1 where cy.request() with
followRedirect: false
would fail if aSet-Cookie
header was present in the response. Fixes #5654. - β
The context of
window
is no longerundefined
within the application under test when called within asetTimeout
during strict mode. Fixes #5707. - π Cypress now captures the SHA of builds generated through Travis CI during pull requests. This should resolve issues with Cypress status checks sometimes not running within GitHub Integration. Fixes #5728.
- π Cypress now automatically strips double quotes from
--ci-build-id
andgroup
flag arguments duringcypress run
. Fixes #5686. - β Assertions printed in the Command Log now correctly identify integers from string integers. Fixes #25.
- β Empty spaces are now accurately reflected in the Command Log within assertions. Fixes #1360.
- β
Keys printed in the Command Log when using the
have.all.keys
assertion now correctly display. Fixes #753. - π We fixed an issue where Cypress would throw an error when using
cy.visit()
on acleverapp.io
domain. Fixes #5722. - π Fixed a bug where fixtures consisting only of
null
would cause an error. Fixes #472. - π Fixed a bug where, if the Test Runner child process is killed with a signal and does not exit normally, the npm CLI process would not exit with an error. Fixes #5808.
Misc:
- β Added a new, more specific error message when an item is not visible because it has
position: fixed
and is being overflowed over. Addresses #1379. - β
cy.visit
s that cause a superdomain change will now result in 2 requests to the origin server. This should not affect tests, as tests will still re-run on a superdomain change. This is a side-effect of the fix for #5756. - π§ The configuration object returned from the plugins file is now validated and will throw a helpful error message when invalid. Addresses #5712.
- π§ The configuration panel under Settings in the Test Runner now has a white background for better readability. Also each configuration option with nested properties is now collapsible. Addressed in #5068.
β‘οΈ Dependency Updates:
- β¬οΈ Upgraded
parse-domain
from2.0.0
to2.3.4
. Addressed in #5726.
- π§ Cypress now includes the full list of browsers found and their properties within the Cypress configuration. This means that the
-
v3.6.1 Changes
November 08, 2019π Released 11/08/2019
π Bugfixes:
- β
The Electron browser no longer hangs when testing applications that have a prompt in a
beforeunload
handler. Fixes #2118. - π We fixed a regression in 3.5.0 where HTTP redirects could cause strange behavior, including cookies not being set as expected, leading to authentication issues and other problems. Fixes #5436 and #5432.
- π When using
cy.setCookie()
with the sameoptions
Object, Cypress now correctly sets the new cookie instead of the one passed into a previouscy.setCookie()
. Fixes #2701. - π We fixed a regression in 3.5.0 where
cy.clearCookie()
would not act as expected when using certainbaseUrls
. Fixes #5453. - π Cypress no longer crashes with the error
Failed to parse or set cookie named "xxx"
when loading certain websites. Fixes #4990. - 0οΈβ£ Cypress now sends the expected headers or request body in a
cy.visit()
to an HTTPS URL using the default port, 443. Fixes #5367. - π We fixed a regression in 3.6.0 where Cypress would crash with
TypeError: Cannot read property 'length' of null
on some network requests. Fixes #5585. - π We fixed a regression in 3.5.0 that caused the red target to be rendered incorrectly when specifying offset coordinates to
.click()
. Fixes #5635. - π We fixed a regression in 3.6.0 that was causing an incorrect element to receive the
click
event during action commands. Fixes #5578. - π We fixed a regression in 3.5.0 causing text after using modifier keys in
.type()
to not be typed. Fixes #5622. - π Elements with
backface-visibility: hidden;
are now accounted for when asserting on the elemtent's visibility. Fixes #2985. - π We fixed a bug where a failed Cypress commands would incorrectly throw
cannot read property 'replace' of undefined
if the error's stack wasundefined
. Fixes #1669. - π The 'Log In' modal within Cypress when setting up a project now correctly closes when manually closed. Fixes #5631.
Misc:
- We improved the user experience around inspecting events fired during
.click()
and.type()
commands within the console. Addresses #5553. - π² We increased the timeout when connecting to the "Developer Tools Protocol" from 5 seconds to 20 seconds and also added logging for when the connection takes longer than 5 seconds. Addresses #5610.
- β There is no longer a warning about
Promise.defer
appearing in stderr when running with video recording enabled. Addresses #5611. - β‘οΈ Types for
.rightclick()
and.dblclick()
have been updated to correctly reflect their accepted options. Addresses #5617. - We're continuing to make progress in converting our codebase from CoffeeScript to JavaScript. Addresses #2690 in #5556
- β
The Electron browser no longer hangs when testing applications that have a prompt in a
-
v3.6.0 Changes
October 31, 2019π Released 10/31/2019
π Features:
- π§
testFiles
now also accepts an Array of glob patterns when specifying what test files to load in configuration. Addresses #5401.
π Bugfixes:
- π We fixed a regression in 3.5.0 where the maximum size of an HTTP header or body in a stubbed
cy.route()
was limited to 8kb causing requests to fail with a 431 HTTP error. Fixes #5431. - β
We fixed a bug where certain types of uncaught errors originating from the application under test would not route through the
uncaught:exception
handler, and thus could not caught and ignored. These errors will also now correctly indicate that they came from application code. Fixes #987. - π We fixed a regression in 3.5.0 that would throw an error during
cypress verify
when running as a non-root user on a non-Windows machine. We now always set the--no-sandbox
flag when verifying in Electron, even when running as a non-root user. Fixes #5434. - π We fixed a regression in 3.5.0 where sometimes cookies were not set on the correct URL during a redirect inside of a
cy.visit()
orcy.request()
. Fixes #5432. - π We fixed a regression in 3.5.0 causing environment variables containing unicode values to be incorrectly resolved when read via
Cypress.env()
. Fixes #5435. - π We fixed a regression in 3.5.0 that prevented use of
.click()
or.type()
inside of an iframe element. Fixes #5449. Fixes #5435. - π We now throw the proper error message when an element cannot be interacted with due to being covered by an element with
position:fixed
. Fixes #5430. - π We fixed a regression in 3.5.0 that caused some
click
events to not be sent to the correct elements during.click()
. Fixes #5459. - β‘οΈ We updated
.type()
to properly respect focus selection changes during typing. Fixes #5456. - π We fixed a regression in 3.5.0 that caused selected text to be overwritten while typing a modifer key during
.type()
. Fixes #5439. - π We now send all the proper events during
.type()
to input elements with typedate
,time
, anddatetime-local
so that it now behaves as it did prior to 3.5.0. Fixes #5476. - π We now properly render iframe placeholder content when previewing DOM snapshots. Fixes #5295.
Misc:
- 0οΈβ£ We no longer log the default option
{multiple: true}
in the Command Log or the console duringcy.dblclick()
. Addresses #5406. - π» The text color of inactive tabs within the Cypress Chrome browser has been set to white for better readability. Addresses #1661.
β‘οΈ Dependency Updates
- π§
-
v3.5.0 Changes
October 23, 2019π Released 10/23/2019
π Features:
- π» We now record video during
cypress run
in Chrome, Chromium, and Canary browsers. This requires passing the name or path of the Chrome browser to the--browser
flag. Addresses #4608. - There is a new
.rightclick()
command to right click on DOM elements. Addresses #53. - π§ Cypress now accepts a
--config-file
argument to specify a different file to be used for Cypress configuration. You can also passfalse
to the--config-file
to not use any configuration file. Addresses #1369. - π You can now use your system's Node version by setting the
nodeVersion
tosystem
in your configuration. This Node version will be used to build files in yourintegrationFolder
and "supportFile
" configuration#Folders-Files and also be used to execute code in your "pluginsFile
" configuration#Folders-Files. If not set, Cypress will continue to use the Node version bundled with Cypress. Addresses #4432. - "
.dblclick()
dblclick now acceptsposition
,x
, andy
arguments. Addresses #116. - "
.dblclick()
dblclick now acceptsforce
andmultiple
in itsoptions
. Addresses #116. .screenshot()
now accepts apadding
argument when screenshotting elements that will alter the dimensions of the screenshot of the element. Addresses #4440.cy.visit()
now accepts aqs
option representing an object of query paramaters to be used in the URL. Addresses #5034.cy.viewport()
now allows for viewport sizes up to 4,000 pixels. Addresses #5181.cy.viewport()
accepts new size presets foriphone-xr
,iphone-x
,samsung-s10
andsamsung-note9
. Addresses #4967.- Passing a
~
toCYPRESS_CACHE_FOLDER
will automatically resolve to the user's home directory. Addresses #5386.
π Bugfixes:
- π "
.dblclick()
dblclick and.click()
now fire all appropriate mouse events includingmouseover
,mousemove
,mouseout
,pointerdown
,pointerup
, andpointermove
. Fixes #1016, #1847, #2045, #2521, #2768, #2928, #2957, and #3224. - β‘οΈ We updated "
.dblclick()
dblclick to follow the same actionability checks as.click()
. Fixes #3798. - π Coordinates clicked during
.click()
are now correct if the element being clicked is within an iframe. Fixes #4347. - π We now allow
.type()
to be used on any DOM element. The element will receive all of the type events. Fixes #2166 and #3661. - π If a typeable element gains focus during
.type()
, Cypress now continues typing into the newly focused element. Fixes #2240. - π We now correctly borrow the property getter for
maxLength
when using .type() on an input. Fixes #4587. - β‘οΈ We fixed an issue where
datetime-local
inputs would not have theirvalue
updated during.type()
. Fixes #2613. - π
.type()
now allows you to type-
into number inputs with text selection. Fixes #4767. - π We now fire an
input
event when using.type()
typing{enter}
inserts a newline. Fixes #4870. - π We no longer input text when non-
{shift}
modifier keys are typed in.type()
. Fixes #5424. - π We now properly send the
code
property during keyboard events triggered during.type()
. Fixes #3722 - π Cypress now sends
screenX
andscreenY
properties to events triggered using.trigger()
. Fixes #3187. - We fixed a bug where Cypress could not intercept traffic sent through
cy.visit()
to IP addresses over HTTPS, leading toERR_SSL_VERSION_OR_CIPHER_MISMATCH
errors. Fixes #771. - π We fixed a bug introduced in 3.3.0 where some HTTPS sites failed to load during
cy.visit()
andcy.request()
with a "handshake failed" error. Fixes #4394. - π We fixed a bug where ECC SSL Certificates were not supported during
cy.visit()
that was introduced in 3.3.0. Fixes #4368. - π We fixed an issue introduced in 3.4.0 that would cause the Selector Playground to not properly highlight the currently hovered element. Fixes #4872.
- π§
Cypress.env()
now escapes<script>
tags in the configuration file. Fixes #4952. - π Cypress now properly handles converting responses of
content-type
application/vnd.api+json
to JSON. Fixes #5165. - XHR responses in
cy.route()
that exceed 80kb in size no longer fail with anERR_EMPTY_RESPONSE
error. Fixes #76. - π Cypress no longer crashes with
dest.end
errors on Windows machines. Fixes #2181. - π The
onFocus
event no longer incorrectly fires on hidden elements. This fixes an issue introduced in 3.3.2. Fixes #4898. - π You can now call
.click()
on inputs or textareas that arereadonly
. This fixes an issue introduced in 3.4.1. Fixes #4874. - π Cypress no longer crashes with a
"port" option should be a number or string
error when receiving an erroneous HTTP CONNECT. Fixes #3250. - β
Cypress tests now timeout if there are no Cypress commands enqueue and the
done()
callback is not called within thecommandTimeout
. Fixes #1075, #2478, #3349, and #4790. - π We fixed a bug where Cypress would exit with an
ENOTCONN
error at the end of a test run when using Node >12.11.0 on Windows OS. Fixes #5241. - β We fixed a bug where the Chrome policy warnings introduced in 3.4.0 would not appear. Fixes #4986.
- π We improved the way that cookies are handled for Chrome browsers. This fixes an issue when parsing cookies that were set with a domain beginning with a
.
in Chrome 77. Fixes #5142 and #5206. - π We fixed a bug when visiting an application that does an HTTP request to a
.js
file containing Unicode transferred usingContent-Encoding: gzip
that could cause the JavaScript file to become corrupted. Fixes #1746. - π We now normalize the Cypress cache folder to resolve in the current folder and not with respect to the
node_modules/cypress
folder. Fixes #2364.
Misc:
- Cypress now displays a more precise error message when checking an element's visibility if an element is detached from the DOM. Addresses #4946.
- β± We increased the timeout to wait for Xvfb to start from 5 seconds to 30 seconds. This should resolve some issues where the error
Could not start Xvfb
was being thrown because Xvfb could not start within the allowed time. Addresses #5110. - We now warn when using
cypress run
from the binary directly (not from an npm module) since this is not its intended use. Addresses #1573. - π We now warn on
cy.visit('file://...)
to explain that this url format is not supported and suggest visiting a relative HTML file. Addresses #4452. - Setting the reserved
CYPRESS_ENV
environment variable will now throw an error. Addresses #1621. - π» We now throw a better error when passing in an Object to the
browser
argument of the Browser Launch API explaining that a String is expected instead. Addresses #4966. - An error will now be thrown if an invalid
name
orvalue
is supplied tocy.setCookie()
, matching the RFC 6265 compliant validation of cookie names and values. Addresses #5206. - Passing an invalid type to the 2nd argument of
cy.get()
now throws an error explaining that anoptions
Object is expected. Addresses #2953. - We now throw a more helpful error message during
cy.screenshot()
that would result in a screenshot with 0 width or height. Addresses #5149. - π¨ Stdout printed during
cypress run
no longer truncates text such a filenames and instead wraps the text to fit within the width of the terminal. Addresses #4977. - We now display up to 2,000 characters of HTTP property values within error messages during
cy.request()
errors. Addresses #3145. - Cypress now always considers
localhost
to be inNO_PROXY
. To make Cypress send traffic forlocalhost
through the proxy, you will now have to pass<-loopback>
inNO_PROXY
. Addresses #4780. - π» We changed the way cookies are set in
cy.visit()
to more closely match the browser's behavior when setting cookies, particularly when usingfetch
with cookies. Addresses #4433. - π€‘ We've added more flags to send to Chrome upon launch that should help with issues encountered during browser automation including
--disable-backgrounding-occluded-window
,--disable-breakpad
,--disable-ipc-flooding-protection
,--password-store=basic
, and--use-mock-keychain
. Addresses #5132 and #3633. - Scrolling the specs list now only scrolls the list of spec files and no longer scrolls the search and filter bar. Addresses #4904.
- β We fixed some layout issues within the Test Runner that were introduced in 3.4.1. Addresses #4888, #4912, and #4959.
- π The counter badge for spies and stubs no longer appears visually cut off. Fixes #4822.
- TypeScript 3.6.2 no longer errors due to outdated jQuery types. Addresses #5065.
- β‘οΈ We updated types for
Cypress.Commands.overwrite()
to not allow anoptions
object as an argument. Addresses #5341. - We added
failures
andmessage
types when a run fails using the Module API. Addresses #5335. - We're continuing to make process in converting our codebase from CoffeeScript to JavaScript. Addresses #2690 in #4869, #4906, #5096, #5107, #5156, #5173, and #5352.
π Documentation Changes:
- β Added a
.rightclick()
doc. - β Added a Webinars doc containing videos of all of the official Cypress webcasts.
- β‘οΈ Updated the
.dblclick()
doc to include newposition
,x
, andy
arguments plusforce
andmultiple
options. - β Added the
--config-file
argument to Command Line and Module API doc. - β Added the
nodeVersion
argument to Configuration doc and mentioned its uses in the Plugins Guide and Writing a Plugin doc. - β‘οΈ Updated all docs to mention 'configuration file' instead of static
cypress.json
file since this is not configurable via a--config-file
argument. - β Added
qs
option tocy.visit()
with examples. - β Added
padding
option tocy.screenshot()
with examples. - β‘οΈ Updated the
cy.viewport()
doc to have a max viewport size of4000
. - β Added newly supported viewport sizes to the
cy.viewport()
doc. - β Documented new keyboard shortcuts in the Test Runner doc.
- β Added a new section on troubleshooting problems with Xvfb to the Continuous Integration doc.
- β Added a section to our Debugging doc about our
cypress-fiddle
plugin used for playing around with small test cases. - β Added a section to our Debugging doc explaining how to patch an installed version of Cypress.
- Mention not needing to decode portions of the
url
in thecy.route()
doc. - π Mention that the
file://
prefix is not supported in thecy.visit()
doc. - β Add a note about when passing
<-loopback>
inNO_PROXY
is necessary in the Proxy Configuration doc. - β‘οΈ Updated our Dashboard docs to include screenshots containing our new Dashboard navigation design.
- π We have some newly translated documentation in Portuguese. If you'd like to help in translating more, please open a pull request in our documentation repo.
β‘οΈ Dependency Updates
- β¬οΈ Upgraded Chrome browser version used during
cypress run
and when selecting Electron browser incypress open
from61
to73
. Addressed in #4720. - β¬οΈ Upgraded
electron
from2.0.18
to5.0.10
. Addressed in #4720. - β¬οΈ Upgraded
node
from8.9.3
to12.0.0
. Addressed in #4720. - Upgaded
jquery
from2.2.4
to3.1.1
. Addressed in #1229. - β¬οΈ Upgraded
sanitize-filename
from1.6.1
to1.6.3
. Addressed in #5216. - β¬οΈ Upgraded
@cypress/get-windows-proxy
from1.5.4
to1.6.0
. Addressed in #5108.
- π» We now record video during
-
v3.4.1 Changes
July 29, 2019π Released 7/29/2019
Dashboard Features:
- β Weβre excited to announce GitHub integration for the Cypress Dashboard. You can now get timely and useful test run information within pull-requests via status checks and pull-request comments. Learn all about it on our blog. Addresses #981.
π Bugfixes:
- π Fixed a bug where the content of pages using non-UTF-8 character encoding would become corrupted when opened in Cypress. Fixes #3479, #1543, and #3650.
- π Fixed a regression introduced in 3.4.0 that caused an error to be thrown when chaining together multiple assertions using the
and
chainable getter. Fixes #4833. - π The
include
andincludes
assertion chainers now correctly work the same ascontain
andcontains
assertion chainers. Fixes #4833. - π Cypress now correctly works offline on Windows when visiting a localhost URL. Fixes #4763.
- π
cy.type()
now factors in thereadonly
property of<input />
elements, and will wait for this property to befalse
before attempting to type. Fixes #1246. - π Variables beginning with
top
andlocation
in your application code are no longer modified whenmodifyObstructiveCode
istrue
. Fixes #4794. - π We removed erroneous socket connections when the browser is initially launching. Fixes #4776.
- π Fixed a bug when dismissing pinned snapshots that would cause the page to be wiped with nothing rendered. Fixes #4864.
- β¬οΈ We upgraded the
mocha-teamcity-reporter
dependency so that it no longer errors in certain situations when trying to access duration on tests. Fixes #4654. - π We upgraded the
lodash
dependency to fix a security vulnerability warning. Fixes #4699, #4730, #4743.
Misc:
- π We now ensure we are shipping with production versions of dependencies such as
react
,mobx
, etc. This should help to prevent conflicts with Developer Tools extensions and increase performance by reducing memory, heap allocation, and overall JS bundle size. Addresses #4844. - β Video recordings now wait after all tests finish to ensure that the video captures the final rendered frames of the browser. This prevents the last few paints from being cut off. Fixes #2370.
- π§ Cypress now looks for any npm proxy configuration values as a fallback when no other system proxy configuration is found. This brings this feature into parity with how npm reads off proxy configuration values during an
npm install
. Addresses #4719. - β‘οΈ We updated the messaging when there is a failure downloading Cypress to recommend checking your proxy settings. Addresses #1662.
- π¦ A warning message now displays if you attempt to run the Cypress binary directly instead of going through the cypress
npm
package. Addresses #1573. - There are newly added examples in the TypeScript definitions for custom commands,
cy.location()
and.should()
. Addresses #3684 and #4715. - The types for the
cy.contains(content, options)
syntax have been added. Addresses #4727. - Types for
cy.once()
have been added. Addressed in #4788. - π There is now a
{ parseSpecialCharSequences: false }
option tocy.type()
that disables parsing the special character sequences found between the{}
characters. This will now type what you've provided literally without any special parsing. Fixes #4287. - β You can now zoom in the main Test Runner window and also the Electron browser. Corresponding keyboard shortcuts for Zoom in, Zoom out and Actual Size are also available. Addresses #1231.
- β When viewing the Test Runner's main window at its smallest size, the header text no longer incorrectly wraps. Addresses #86.
- We're continuing to make process in converting our codebase from CoffeeScript to JavaScript. Addresses #2690 in #4781 and #4817.
- π· We increased the cypress binary verification phase from 10 seconds to 30 seconds to accomodate underpowered or overwhelmed machines typically found in CI environments. Addresses #4624.
π Documentation Changes:
- We have new instructions on how to set up GitHub Integration with the Cypress Dashboard.
- π Updated instructions for adding types for custom commands in the TypeScript Support doc. Addressed in #1901
- β Added a section about video encoding and how to speed up the encoding time to Screenshots and Videos doc. Addressed in #1880
β‘οΈ Dependency Updates
- β¬οΈ Upgraded
@ffmpeg-installer/ffmpeg
from1.0.17
to1.0.19
. Addressed in #4792. - β¬οΈ Upgraded
browserify
from13.3.0
to16.3.0
. Addressed in #4751, #4825 and #4826. - β¬οΈ Upgraded
data-uri-to-buffer
from1.2.0
to2.0.1
. Addressed in #4622. - β¬οΈ Upgraded
duplexify
from4.0.0
to4.1.1
. Addressed in #4853. - β¬οΈ Upgraded
graceful-fs
from4.1.15
to4.2.0
. Addressed in #4818. - β¬οΈ Upgraded
lodash
from4.17.11
to4.17.15
. Addressed in #4684, #4709, #4784. - β¬οΈ Upgraded
mocha-junit-reporter
from1.23.0
to1.23.1
. Addressed in #4785. - β¬οΈ Upgraded
p-queue
from1.2.0
to6.1.0
. Addressed in #4750. - β¬οΈ Upgraded
semver
from6.0.0
to6.3.0
. Addressed in #4797. - β‘οΈ We also updated and removed some dependencies used for development.
-
v3.4.0 Changes
July 09, 2019π Released 7/9/2019
π User Authentication Changes:
- β Users can now log in to the Test Runner using the browser installed on their system. Fixes #3583, #4337, and #1162.
- π§ Users can now log in to the Test Runner with Google or with SSO (if configured). Fixes #3519.
π Continuous Integration Support:
- π· Environment variables for Semaphore CI v2 are now recognized when recording a test for the dashboard. Fixes #4671.
- π Support for Concourse CI has been added when recording a test for the dashboard. Fixes #4376.
- π SnapCI support has been removed and GoCD support has been added. Fixes #2680.
π Bugfixes:
- π
contain.text
,contain.html
, andcontain.value
assertions now support partial matching in all scenarios to match expected behavior. Fixes #1969. - β Electron rendering warnings are no longer printed to console output. Fixes #4288.
Misc:
- β Added verification for
cypress download
that checks the checksum and filesize. This will fix issues with Cypress downloads being corrupted in transit. Fixes #812 and #3515. - β Added a warning when a percent-encoded URL is passed to
cy.route()
. Fixes #2372. - β Added an error for when
cy.click()
fails because an element has the CSSpointer-events: none
. Fixes #3164. - β Added a warning for Windows users who have Group Policy settings that may interfere with usage of Cypress. Fixes #4391.
- π The JSON schema file used for intelligent code completion for the Cypress configuration file has been updated to match our documentation. Addressed in #4300.
- π Type definitions were added to
cy.server()
for theonAnyRequest
,onAnyResponse
, andonAnyAbort
callback options. Fixes #3992. - β The outline when focusing on a panel heading within the 'Settings' tab of the Test Runner now correctly outlines the element. Fixes #3357.
π Documentation Changes:
- Documented
cy.get()
's optionalwithinSubject
argument. - Documented "Expected to find element..." error message and potential causes.
- β Documented new "Cypress detected policy settings on your computer that may cause issues" warning in Error Messages.
β‘οΈ Dependency Updates:
- β Removed
string-to-stream
since it was no longer being used. Addressed in #4619. - β¬οΈ Upgraded
@cypress/commit-info
from2.1.3
to2.1.4
. Addressed in #4597. - β¬οΈ Upgraded
@cypress/react-tooltip
from0.4.0
to0.5.0
. Addressed in #4610. - β¬οΈ Upgraded
errorhandler
from1.5.0
to1.5.1
. Addressed in #4618. - β¬οΈ Upgraded
fs-extra
from8.0.1
to8.1.0
. Addressed in #4620. - β¬οΈ Upgraded
request-progress
from0.4.0
to3.0.0
. Addressed in #4584. - β‘οΈ We also updated and removed some dependencies used for development.
-
v1.1.0-alpha.1
November 30, 2020 -
v1.0.1-alpha.7
November 10, 2020 -
v1.0.1-alpha.6
October 30, 2020