@itwin/core-backend 3.3.0-dev.89 → 3.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/CHANGELOG.md +34 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,39 @@
|
|
|
1
1
|
# Change Log - @itwin/core-backend
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 26 Aug 2022 15:40:02 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 3.3.1
|
|
6
|
+
Fri, 26 Aug 2022 15:40:02 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 3.3.0
|
|
11
|
+
Thu, 18 Aug 2022 19:08:02 GMT
|
|
12
|
+
|
|
13
|
+
### Updates
|
|
14
|
+
|
|
15
|
+
- upgrade mocha to version 10.0.0
|
|
16
|
+
- Update links to BIS documentation.
|
|
17
|
+
- vacuum is now an instance method
|
|
18
|
+
- enable loading gcs data from workspace at https://geocoord-workspace.itwinjs.org/
|
|
19
|
+
- Progress API for downloading changesets.
|
|
20
|
+
- IModelHost.startup now accepts IModelHostOptions interface rather than IModelHostConfiguration instance
|
|
21
|
+
- added computeSchemaChecksum function to IModelHost
|
|
22
|
+
- Transport RPC requests over IPC when available.
|
|
23
|
+
- make prefetch opt-in instead of opt-out
|
|
24
|
+
- move HubMock to core-backend
|
|
25
|
+
- retry v2checkpoint downloads when they fail with "Failure when receiving data from the peer"
|
|
26
|
+
- set cloud cache size to 50G
|
|
27
|
+
- move LocalHub to @internal in core-backend
|
|
28
|
+
- deprecate collectPredecessorIds and getPredecessorIds in favor of collectReferenceIds and getReferenceIds
|
|
29
|
+
- added SQLiteDb.withOpenDb
|
|
30
|
+
|
|
31
|
+
## 3.2.9
|
|
32
|
+
Fri, 26 Aug 2022 14:21:40 GMT
|
|
33
|
+
|
|
34
|
+
### Updates
|
|
35
|
+
|
|
36
|
+
- Update to @bentley/imodeljs-native@3.2.15
|
|
4
37
|
|
|
5
38
|
## 3.2.8
|
|
6
39
|
Tue, 09 Aug 2022 15:52:41 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/core-backend",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.1",
|
|
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.3.
|
|
28
|
-
"@itwin/core-common": "^3.3.
|
|
29
|
-
"@itwin/core-geometry": "^3.3.
|
|
30
|
-
"@itwin/ecschema-metadata": "^3.3.
|
|
27
|
+
"@itwin/core-bentley": "^3.3.1",
|
|
28
|
+
"@itwin/core-common": "^3.3.1",
|
|
29
|
+
"@itwin/core-geometry": "^3.3.1",
|
|
30
|
+
"@itwin/ecschema-metadata": "^3.3.1",
|
|
31
31
|
"@opentelemetry/api": "^1.0.4"
|
|
32
32
|
},
|
|
33
33
|
"peerDependenciesMeta": {
|
|
@@ -43,13 +43,13 @@
|
|
|
43
43
|
"NOTE: All tools used by scripts in this package must be listed as devDependencies"
|
|
44
44
|
],
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@itwin/build-tools": "3.3.
|
|
47
|
-
"@itwin/core-bentley": "3.3.
|
|
48
|
-
"@itwin/core-common": "3.3.
|
|
49
|
-
"@itwin/core-geometry": "3.3.
|
|
50
|
-
"@itwin/core-webpack-tools": "3.3.
|
|
51
|
-
"@itwin/ecschema-metadata": "3.3.
|
|
52
|
-
"@itwin/eslint-plugin": "3.3.
|
|
46
|
+
"@itwin/build-tools": "3.3.1",
|
|
47
|
+
"@itwin/core-bentley": "3.3.1",
|
|
48
|
+
"@itwin/core-common": "3.3.1",
|
|
49
|
+
"@itwin/core-geometry": "3.3.1",
|
|
50
|
+
"@itwin/core-webpack-tools": "3.3.1",
|
|
51
|
+
"@itwin/ecschema-metadata": "3.3.1",
|
|
52
|
+
"@itwin/eslint-plugin": "3.3.1",
|
|
53
53
|
"@opentelemetry/api": "^1.0.4",
|
|
54
54
|
"@types/chai": "4.3.1",
|
|
55
55
|
"@types/chai-as-promised": "^7",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"@azure/storage-blob": "^12.7.0",
|
|
82
82
|
"@bentley/imodeljs-native": "3.3.12",
|
|
83
|
-
"@itwin/core-telemetry": "3.3.
|
|
83
|
+
"@itwin/core-telemetry": "3.3.1",
|
|
84
84
|
"form-data": "^2.3.2",
|
|
85
85
|
"fs-extra": "^8.1.0",
|
|
86
86
|
"json5": "^2.2.0",
|