@itwin/core-electron 5.1.0-dev.4 → 5.1.0-dev.41

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/CHANGELOG.md CHANGED
@@ -1,6 +1,58 @@
1
1
  # Change Log - @itwin/core-electron
2
2
 
3
- This log was last generated on Thu, 10 Apr 2025 17:50:15 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 16 Jun 2025 15:03:02 GMT and should not be manually modified.
4
+
5
+ ## 5.0.0
6
+ Fri, 13 Jun 2025 20:25:38 GMT
7
+
8
+ ### Updates
9
+
10
+ - Deprecate `DialogModuleMethod`
11
+ - Dropped support for Node 18
12
+ - Dropped support for Electron 32 and older
13
+ - Upgrade to Electron 34, drop support for Electron 33
14
+ - Bumped `username` to `7.0.0`
15
+ - Removed `ElectronHost.getWindowSizeSetting` and `ElectronApp.callDialog` methods
16
+ - Upgrade to Electron 35, drop support for Electron 34
17
+ - Add support for Electron 36
18
+ - Change core peer dependencies to strict version.
19
+
20
+ ## 4.11.6
21
+ Mon, 16 Jun 2025 15:00:15 GMT
22
+
23
+ _Version update only_
24
+
25
+ ## 4.11.5
26
+ Fri, 06 Jun 2025 13:41:18 GMT
27
+
28
+ _Version update only_
29
+
30
+ ## 4.11.4
31
+ Tue, 03 Jun 2025 16:15:19 GMT
32
+
33
+ _Version update only_
34
+
35
+ ## 4.11.3
36
+ Wed, 28 May 2025 13:56:22 GMT
37
+
38
+ _Version update only_
39
+
40
+ ## 4.11.2
41
+ Tue, 20 May 2025 20:14:45 GMT
42
+
43
+ _Version update only_
44
+
45
+ ## 4.11.1
46
+ Wed, 30 Apr 2025 13:13:21 GMT
47
+
48
+ _Version update only_
49
+
50
+ ## 4.11.0
51
+ Wed, 16 Apr 2025 15:50:28 GMT
52
+
53
+ ### Updates
54
+
55
+ - Bumped `username` to `7.0.0`
4
56
 
5
57
  ## 4.10.13
6
58
  Thu, 10 Apr 2025 17:47:21 GMT
@@ -8,7 +8,7 @@ export declare const electronIpcStrings: {
8
8
  };
9
9
  /** Asynchronous methods of dialog module in an Electron app.
10
10
  * @beta
11
- * @deprecated in 5.0. Use `Electron.Dialog` from `electron` instead.
11
+ * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use `Electron.Dialog` from `electron` instead.
12
12
  */
13
13
  export type DialogModuleMethod = AsyncMethodsOf<Electron.Dialog>;
14
14
  //# sourceMappingURL=ElectronIpcInterface.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ElectronIpcInterface.js","sourceRoot":"","sources":["../../../src/common/ElectronIpcInterface.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAIH,gBAAgB;AACH,QAAA,kBAAkB,GAAG;IAChC,aAAa,EAAE,yBAAyB;CAChC,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module RpcInterface\n */\n\nimport { AsyncMethodsOf } from \"@itwin/core-bentley\";\n\n/** @internal */\nexport const electronIpcStrings = {\n dialogChannel: \"itwinjs-electron/dialog\",\n} as const;\n\n/** Asynchronous methods of dialog module in an Electron app.\n * @beta\n * @deprecated in 5.0. Use `Electron.Dialog` from `electron` instead.\n */\nexport type DialogModuleMethod = AsyncMethodsOf<Electron.Dialog>;\n"]}
1
+ {"version":3,"file":"ElectronIpcInterface.js","sourceRoot":"","sources":["../../../src/common/ElectronIpcInterface.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAIH,gBAAgB;AACH,QAAA,kBAAkB,GAAG;IAChC,aAAa,EAAE,yBAAyB;CAChC,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module RpcInterface\n */\n\nimport { AsyncMethodsOf } from \"@itwin/core-bentley\";\n\n/** @internal */\nexport const electronIpcStrings = {\n dialogChannel: \"itwinjs-electron/dialog\",\n} as const;\n\n/** Asynchronous methods of dialog module in an Electron app.\n * @beta\n * @deprecated in 5.0 - will not be removed until after 2026-06-13. Use `Electron.Dialog` from `electron` instead.\n */\nexport type DialogModuleMethod = AsyncMethodsOf<Electron.Dialog>;\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/core-electron",
3
- "version": "5.1.0-dev.4",
3
+ "version": "5.1.0-dev.41",
4
4
  "description": "iTwin.js ElectronHost and ElectronApp",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -21,11 +21,11 @@
21
21
  "url": "http://www.bentley.com"
22
22
  },
23
23
  "peerDependencies": {
24
- "electron": "^35.0.0",
25
- "@itwin/core-backend": "5.1.0-dev.4",
26
- "@itwin/core-bentley": "5.1.0-dev.4",
27
- "@itwin/core-common": "5.1.0-dev.4",
28
- "@itwin/core-frontend": "5.1.0-dev.4"
24
+ "electron": "^35.0.0 || ^36.0.0",
25
+ "@itwin/core-bentley": "5.1.0-dev.41",
26
+ "@itwin/core-backend": "5.1.0-dev.41",
27
+ "@itwin/core-common": "5.1.0-dev.41",
28
+ "@itwin/core-frontend": "5.1.0-dev.41"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@itwin/eslint-plugin": "5.0.0-dev.1",
@@ -34,7 +34,7 @@
34
34
  "@types/node": "~20.17.0",
35
35
  "chai": "^4.3.10",
36
36
  "cpx2": "^8.0.0",
37
- "electron": "^35.0.0",
37
+ "electron": "^36.2.1",
38
38
  "eslint": "^9.13.0",
39
39
  "glob": "^10.3.12",
40
40
  "mocha": "^11.1.0",
@@ -43,12 +43,12 @@
43
43
  "typescript": "~5.6.2",
44
44
  "webpack": "^5.97.1",
45
45
  "webpack-cli": "^5.0.1",
46
- "@itwin/build-tools": "5.1.0-dev.4",
47
- "@itwin/core-common": "5.1.0-dev.4",
48
- "@itwin/core-backend": "5.1.0-dev.4",
49
- "@itwin/certa": "5.1.0-dev.4",
50
- "@itwin/core-frontend": "5.1.0-dev.4",
51
- "@itwin/core-bentley": "5.1.0-dev.4"
46
+ "@itwin/core-backend": "5.1.0-dev.41",
47
+ "@itwin/build-tools": "5.1.0-dev.41",
48
+ "@itwin/certa": "5.1.0-dev.41",
49
+ "@itwin/core-bentley": "5.1.0-dev.41",
50
+ "@itwin/core-common": "5.1.0-dev.41",
51
+ "@itwin/core-frontend": "5.1.0-dev.41"
52
52
  },
53
53
  "dependencies": {
54
54
  "@openid/appauth": "^1.2.6",