@itwin/presentation-backend 5.13.0-dev.4 → 5.13.0-dev.6
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 +9 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# Change Log - @itwin/presentation-backend
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Mon, 03 Aug 2026 12:28:16 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 5.12.0
|
|
6
|
+
Mon, 03 Aug 2026 12:25:50 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- `Presentation.initialize`: Added `maxClientManagers` prop to cap the number of concurrent client `PresentationManager` instances kept in memory (default 100, least-recently-used evicted first), bounding memory and native-resource usage from many distinct client ids.
|
|
11
|
+
- Presentation manager caching no longer keys on the untrusted, caller-supplied clientId. In web (RPC) deployments the manager is keyed by the authenticated user (JWT sub claim); in IPC apps a single shared manager is used. This prevents arbitrary client ids from allocating unbounded managers.
|
|
4
12
|
|
|
5
13
|
## 5.11.3
|
|
6
14
|
Wed, 15 Jul 2026 19:40:44 GMT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/presentation-backend",
|
|
3
|
-
"version": "5.13.0-dev.
|
|
3
|
+
"version": "5.13.0-dev.6",
|
|
4
4
|
"description": "Backend of iTwin.js Presentation library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
"./package.json": "./package.json"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@itwin/core-backend": "5.13.0-dev.
|
|
40
|
-
"@itwin/
|
|
41
|
-
"@itwin/core-
|
|
42
|
-
"@itwin/core-
|
|
43
|
-
"@itwin/
|
|
44
|
-
"@itwin/presentation-common": "5.13.0-dev.
|
|
39
|
+
"@itwin/core-backend": "5.13.0-dev.6",
|
|
40
|
+
"@itwin/core-common": "5.13.0-dev.6",
|
|
41
|
+
"@itwin/core-bentley": "5.13.0-dev.6",
|
|
42
|
+
"@itwin/core-quantity": "5.13.0-dev.6",
|
|
43
|
+
"@itwin/ecschema-metadata": "5.13.0-dev.6",
|
|
44
|
+
"@itwin/presentation-common": "5.13.0-dev.6"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@itwin/eslint-plugin": "^6.0.0",
|
|
@@ -75,14 +75,14 @@
|
|
|
75
75
|
"sinon": "^17.0.2",
|
|
76
76
|
"sinon-chai": "^3.7.0",
|
|
77
77
|
"typescript": "~5.6.2",
|
|
78
|
-
"@itwin/build-tools": "5.13.0-dev.
|
|
79
|
-
"@itwin/
|
|
80
|
-
"@itwin/core-
|
|
81
|
-
"@itwin/
|
|
78
|
+
"@itwin/build-tools": "5.13.0-dev.6",
|
|
79
|
+
"@itwin/ecschema-metadata": "5.13.0-dev.6",
|
|
80
|
+
"@itwin/core-common": "5.13.0-dev.6",
|
|
81
|
+
"@itwin/core-backend": "5.13.0-dev.6",
|
|
82
|
+
"@itwin/core-quantity": "5.13.0-dev.6",
|
|
82
83
|
"internal-tools": "3.0.0-dev.69",
|
|
83
|
-
"@itwin/core-
|
|
84
|
-
"@itwin/
|
|
85
|
-
"@itwin/presentation-common": "5.13.0-dev.4"
|
|
84
|
+
"@itwin/core-bentley": "5.13.0-dev.6",
|
|
85
|
+
"@itwin/presentation-common": "5.13.0-dev.6"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
88
|
"@itwin/presentation-shared": "^1.2.2",
|