@daisy/ace-axe-runner-electron 1.2.6-alpha.3 → 1.2.6-alpha.4

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/init.js CHANGED
@@ -315,8 +315,9 @@ function axeRunnerInit(eventEmmitter, CONCURRENT_INSTANCES) {
315
315
  webSecurity: true,
316
316
  webviewTag: false,
317
317
  enableRemoteModule: false,
318
- partition: SESSION_PARTITION,
319
- nativeWindowOpen: false // The default of nativeWindowOpen is deprecated and will be changing from false to true in Electron 15. See https://github.com/electron/electron/issues/28511
318
+ partition: SESSION_PARTITION
319
+ // (electron) Deprecation Warning: Disabling nativeWindowOpen is deprecated. The nativeWindowOpen option will be removed in Electron 18.
320
+ // nativeWindowOpen: false, // The default of nativeWindowOpen is deprecated and will be changing from false to true in Electron 15. See https://github.com/electron/electron/issues/28511
320
321
  }
321
322
  });
322
323
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daisy/ace-axe-runner-electron",
3
- "version": "1.2.6-alpha.3",
3
+ "version": "1.2.6-alpha.4",
4
4
  "engines": {
5
5
  "node": ">=12.0.0",
6
6
  "yarn": "^1.22.0",
@@ -23,12 +23,12 @@
23
23
  "license": "MIT",
24
24
  "main": "lib/index.js",
25
25
  "dependencies": {
26
- "@daisy/ace-cli-shared": "^1.2.6-alpha.3",
26
+ "@daisy/ace-cli-shared": "^1.2.6-alpha.4",
27
27
  "mime-types": "^2.1.34",
28
28
  "uuid": "^8.3.2"
29
29
  },
30
30
  "devDependencies": {
31
- "electron": "^16.0.7",
31
+ "electron": "^17.0.0",
32
32
  "json": "^11.0.0",
33
33
  "json-diff": "^0.7.1"
34
34
  },
package/src/init.js CHANGED
@@ -322,7 +322,8 @@ function axeRunnerInit(eventEmmitter, CONCURRENT_INSTANCES) {
322
322
  webviewTag: false,
323
323
  enableRemoteModule: false,
324
324
  partition: SESSION_PARTITION,
325
- nativeWindowOpen: false, // The default of nativeWindowOpen is deprecated and will be changing from false to true in Electron 15. See https://github.com/electron/electron/issues/28511
325
+ // (electron) Deprecation Warning: Disabling nativeWindowOpen is deprecated. The nativeWindowOpen option will be removed in Electron 18.
326
+ // nativeWindowOpen: false, // The default of nativeWindowOpen is deprecated and will be changing from false to true in Electron 15. See https://github.com/electron/electron/issues/28511
326
327
  },
327
328
  });
328
329