-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dependency: upgrade to electron 29 #30224
Changes from all commits
121aef3
a74681e
6e73a3e
05f873d
1cbd4ea
fe34d4d
837a079
23cbb71
652eeaa
0d3bae1
8e66ac2
2ef87a0
3b9c2d9
de8ab30
306e5b6
5f40d20
1401928
1113a99
ef36f34
763367a
1fbc23c
2a6d6e2
decdca0
99d1620
52addeb
500225b
de6a1fd
e858554
9985f75
67c4065
ef8361c
a32c241
9595366
a5d92ae
f871559
aa36916
b0276b6
c5c44af
0d14d87
1549bd2
208bc8b
55287d4
8286d7b
f56bb33
a589f05
b52aef9
94a69ec
a0ec796
ac4fc2b
01023e0
4255fb5
9f31f09
ee67e7b
2bce45f
44c070d
9fe813a
ba370fc
a50043e
01bdddc
beea4b7
cad44d8
2e8876e
0ae94b2
f03ad63
4f849dd
610ea3b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Bump this version to force CI to re-create the cache from scratch. | ||
|
||
08-13-24 | ||
09-11-24 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18.17.1 | ||
20.15.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
"types": [ | ||
"cypress", | ||
"./support", | ||
"./node_modules/@types/node" | ||
"node" | ||
] | ||
}, | ||
"include": [ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,6 +181,7 @@ export class DataContext { | |
@cached | ||
get cloud () { | ||
return new CloudDataSource({ | ||
// @ts-ignore | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To address error below. Open to better ideas here. https://app.circleci.com/pipelines/github/cypress-io/cypress/59948/workflows/efa9b4b3-12ca-4f83-a8d7-d5c9186f28d4/jobs/2493976 |
||
fetch: (...args) => this.util.fetch(...args), | ||
getUser: () => this.coreData.user, | ||
logout: () => this.actions.auth.logout().catch(this.logTraceError), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -185,7 +185,7 @@ export function create (projectRoot, _options: WindowOptions, newBrowserWindow = | |
}) | ||
} | ||
|
||
win.webContents.on('crashed', function (...args) { | ||
win.webContents.on('render-process-gone', function (...args) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addresses this type failure: https://cloud.nx.app/runs/cibLuMvwic This event was removed in 29: https://github.com/electron/electron/pull/40115/files#diff-18ed6a5b5a9084c976509502962b7f05989a8bd13a2ba3dc02868056938c03b6 |
||
return options.onCrashed.apply(win, args) | ||
}) | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ | |
"ansi_up": "5.0.0", | ||
"ast-types": "0.13.3", | ||
"base64url": "^3.0.1", | ||
"better-sqlite3": "9.2.2", | ||
"better-sqlite3": "10.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ryanthemanuel Do you remember the context as to why this was necessary? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I do not unfortunately. We can try reverting? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @AtofStryker do you happen to remember either? I know you were working in here too at times. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was just wondering - I don't think have confirmation that it's breaking anything - it was just a difference between 29 and 28 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is needed due to this failure when it is left on 9.2.2: https://cloud.nx.app/runs/n23a1Mbn3x |
||
"black-hole-stream": "0.0.1", | ||
"bluebird": "3.7.2", | ||
"bundle-require": "3.0.4", | ||
|
@@ -163,7 +163,7 @@ | |
"@types/chrome-remote-interface": "0.31.14", | ||
"@types/http-proxy": "1.17.4", | ||
"@types/mime": "3.0.1", | ||
"@types/node": "18.17.5", | ||
"@types/node": "^20.15.0", | ||
"@types/request-promise": "^4.1.48", | ||
"babel-loader": "9.1.3", | ||
"chai": "1.10.0", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To address this error: https://app.circleci.com/pipelines/github/cypress-io/cypress/59971/workflows/b10cb9c6-89ad-4a6b-8ae8-9ff9d8d6121e/jobs/2495052