@itwin/core-backend 3.2.0-dev.28 → 3.2.0-dev.30

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/package.json +22 -14
package/CHANGELOG.md CHANGED
@@ -1,6 +1,23 @@
1
1
  # Change Log - @itwin/core-backend
2
2
 
3
- This log was last generated on Fri, 25 Mar 2022 15:10:01 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 31 Mar 2022 15:55:48 GMT and should not be manually modified.
4
+
5
+ ## 3.1.1
6
+ Thu, 31 Mar 2022 15:55:48 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 3.1.0
11
+ Tue, 29 Mar 2022 20:53:47 GMT
12
+
13
+ ### Updates
14
+
15
+ - Deprecate IModelReadRpcInterface.getViewThumbnail
16
+ - generated element classes now have a default implementation of collectPredecessors returning all set navigation properties
17
+ - Correct return status for processGeometryStream and createBRepGeometry.
18
+ - Remove IModelDb.elementGeometryUpdate.
19
+ - You may specify an element's geometry in terms of an ElementGeometryDataEntry array
20
+ - Web IPC fix (when reloading frontend).
4
21
 
5
22
  ## 3.0.3
6
23
  Fri, 25 Mar 2022 15:10:01 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/core-backend",
3
- "version": "3.2.0-dev.28",
3
+ "version": "3.2.0-dev.30",
4
4
  "description": "iTwin.js backend components",
5
5
  "main": "lib/cjs/core-backend.js",
6
6
  "typings": "lib/cjs/core-backend",
@@ -24,10 +24,10 @@
24
24
  "url": "http://www.bentley.com"
25
25
  },
26
26
  "peerDependencies": {
27
- "@itwin/core-bentley": "^3.2.0-dev.28",
28
- "@itwin/core-common": "^3.2.0-dev.28",
29
- "@itwin/core-geometry": "^3.2.0-dev.28",
30
- "@itwin/ecschema-metadata": "^3.2.0-dev.28"
27
+ "@itwin/core-bentley": "^3.2.0-dev.30",
28
+ "@itwin/core-common": "^3.2.0-dev.30",
29
+ "@itwin/core-geometry": "^3.2.0-dev.30",
30
+ "@itwin/ecschema-metadata": "^3.2.0-dev.30"
31
31
  },
32
32
  "peerDependenciesMeta": {
33
33
  "@itwin/ecschema-metadata": {
@@ -39,12 +39,13 @@
39
39
  "NOTE: All tools used by scripts in this package must be listed as devDependencies"
40
40
  ],
41
41
  "devDependencies": {
42
- "@itwin/build-tools": "3.2.0-dev.28",
43
- "@itwin/core-bentley": "3.2.0-dev.28",
44
- "@itwin/core-common": "3.2.0-dev.28",
45
- "@itwin/core-geometry": "3.2.0-dev.28",
46
- "@itwin/ecschema-metadata": "3.2.0-dev.28",
47
- "@itwin/eslint-plugin": "3.2.0-dev.28",
42
+ "@itwin/build-tools": "3.2.0-dev.30",
43
+ "@itwin/core-bentley": "3.2.0-dev.30",
44
+ "@itwin/core-common": "3.2.0-dev.30",
45
+ "@itwin/core-geometry": "3.2.0-dev.30",
46
+ "@itwin/core-webpack-tools": "3.2.0-dev.30",
47
+ "@itwin/ecschema-metadata": "3.2.0-dev.30",
48
+ "@itwin/eslint-plugin": "3.2.0-dev.30",
48
49
  "@types/chai": "^4.1.4",
49
50
  "@types/chai-as-promised": "^7",
50
51
  "@types/fs-extra": "^4.0.7",
@@ -60,17 +61,21 @@
60
61
  "dotenv": "^10.0.0",
61
62
  "dotenv-expand": "^5.1.0",
62
63
  "eslint": "^7.11.0",
64
+ "fs-extra": "^8.1.0",
63
65
  "internal-tools": "3.0.0-dev.69",
64
66
  "mocha": "^8.3.2",
67
+ "null-loader": "^0.1.1",
65
68
  "nyc": "^15.1.0",
66
69
  "rimraf": "^3.0.2",
67
70
  "sinon": "^9.0.2",
68
- "typescript": "~4.4.0"
71
+ "source-map-loader": "^1.0.0",
72
+ "typescript": "~4.4.0",
73
+ "webpack": "4.42.0"
69
74
  },
70
75
  "dependencies": {
71
76
  "@azure/storage-blob": "^12.7.0",
72
77
  "@bentley/imodeljs-native": "3.2.3",
73
- "@itwin/core-telemetry": "3.2.0-dev.28",
78
+ "@itwin/core-telemetry": "3.2.0-dev.30",
74
79
  "form-data": "^2.3.2",
75
80
  "fs-extra": "^8.1.0",
76
81
  "json5": "^2.2.0",
@@ -114,7 +119,10 @@
114
119
  "cover": "nyc npm -s test",
115
120
  "extract-api": "betools extract-api --entry=core-backend",
116
121
  "lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
117
- "test": "mocha"
122
+ "test": "mocha",
123
+ "ios:webpack:tests": "webpack --config ios/ios.webpack.config.js",
124
+ "ios:copy:assets": "cpx \"./src/assets/**/*\" ./lib/ios/assets/assets && cpx \"./src/test/assets/**/*\" ./lib/ios/assets/assets",
125
+ "ios:build:tests": "npm run -s build && npm run -s ios:webpack:tests && npm run -s ios:copy:assets"
118
126
  },
119
127
  "readme": "# @itwin/core-backend\r\n\r\nCopyright © Bentley Systems, Incorporated. All rights reserved. See LICENSE.md for license terms and full copyright notice.\r\n\r\n## Description\r\n\r\nThe __@itwin/core-backend__ package contains classes that backend code can use to work with directly with iModels.\r\n\r\n## Documentation\r\n\r\nSee the [iTwin.js](https://www.itwinjs.org) documentation for more information.\r\n"
120
128
  }