cypress 14.3.0 → 14.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/errors.js CHANGED
@@ -42,7 +42,7 @@ const invalidOS = {
42
42
  description: 'The Cypress App could not be installed. Your machine does not meet the operating system requirements.',
43
43
  solution: stripIndent`
44
44
 
45
- ${chalk.blue('https://on.cypress.io/guides/getting-started/installing-cypress#system-requirements')}`
45
+ ${chalk.blue('https://on.cypress.io/app/get-started/install-cypress#System-requirements')}`
46
46
  };
47
47
  const failedDownload = {
48
48
  description: 'The Cypress App could not be downloaded.',
package/lib/exec/spawn.js CHANGED
@@ -16,6 +16,11 @@ const readline = require('readline');
16
16
  const isXlibOrLibudevRe = /^(?:Xlib|libudev)/;
17
17
  const isHighSierraWarningRe = /\*\*\* WARNING/;
18
18
  const isRenderWorkerRe = /\.RenderWorker-/;
19
+ // This is a warning that occurs when running in a container on Linux.
20
+ // https://github.com/cypress-io/cypress/issues/29563
21
+ // Example:
22
+ // [437:1212/125803.148706:ERROR:zygote_host_impl_linux.cc(273)] Failed to adjust OOM score of renderer with pid 610: Permission denied (13)
23
+ const isOOMScoreWarningRe = /Failed to adjust OOM score of renderer with pid/;
19
24
 
20
25
  // Chromium (which Electron uses) always makes several attempts to connect to the system dbus.
21
26
  // This works fine in most desktop environments, but in a docker container, there is no dbus service
@@ -94,7 +99,7 @@ const isEGLDriverMessage = /^\[[^\]]+gl_display\.cc[^\]]+\] EGL Driver message \
94
99
  const isXdgRuntimeError = /^error: XDG_RUNTIME_DIR is invalid or not set/;
95
100
  const isMesaZinkError = /^MESA: error: ZINK: failed to choose pdev/;
96
101
  const isGlxDriverError = /^glx: failed to create drisw screen/;
97
- const GARBAGE_WARNINGS = [isXlibOrLibudevRe, isHighSierraWarningRe, isRenderWorkerRe, isDbusWarning, isCertVerifyProcBuiltin, isHostVulkanDriverWarning, isContainerVulkanDriverWarning, isContainerVulkanStack, isDebugScenario4, isEGLDriverMessage, isXdgRuntimeError, isMesaZinkError, isGlxDriverError];
102
+ const GARBAGE_WARNINGS = [isXlibOrLibudevRe, isHighSierraWarningRe, isRenderWorkerRe, isOOMScoreWarningRe, isDbusWarning, isCertVerifyProcBuiltin, isHostVulkanDriverWarning, isContainerVulkanDriverWarning, isContainerVulkanStack, isDebugScenario4, isEGLDriverMessage, isXdgRuntimeError, isMesaZinkError, isGlxDriverError];
98
103
  const isGarbageLineWarning = str => {
99
104
  return _.some(GARBAGE_WARNINGS, re => {
100
105
  return re.test(str);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "14.3.0",
3
+ "version": "14.3.1",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
@@ -123,8 +123,8 @@
123
123
  },
124
124
  "buildInfo": {
125
125
  "commitBranch": "develop",
126
- "commitSha": "696ba74d05096ba4dfb421cc442748ef76665634",
127
- "commitDate": "2025-04-08T18:07:27.000Z",
126
+ "commitSha": "8e97a0d736d3ccd3c5ebaa8eaff5fff6a46b4afb",
127
+ "commitDate": "2025-04-17T16:53:03.000Z",
128
128
  "stable": true
129
129
  },
130
130
  "description": "Cypress is a next generation front end testing tool built for the modern web",