@itwin/presentation-backend 5.13.0-dev.3 → 5.13.0-dev.5

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 +9 -1
  2. 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 Wed, 15 Jul 2026 19:42:09 GMT and should not be manually modified.
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",
3
+ "version": "5.13.0-dev.5",
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.3",
40
- "@itwin/core-bentley": "5.13.0-dev.3",
41
- "@itwin/presentation-common": "5.13.0-dev.3",
42
- "@itwin/core-common": "5.13.0-dev.3",
43
- "@itwin/ecschema-metadata": "5.13.0-dev.3",
44
- "@itwin/core-quantity": "5.13.0-dev.3"
39
+ "@itwin/core-backend": "5.13.0-dev.5",
40
+ "@itwin/core-bentley": "5.13.0-dev.5",
41
+ "@itwin/core-common": "5.13.0-dev.5",
42
+ "@itwin/ecschema-metadata": "5.13.0-dev.5",
43
+ "@itwin/core-quantity": "5.13.0-dev.5",
44
+ "@itwin/presentation-common": "5.13.0-dev.5"
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/core-backend": "5.13.0-dev.3",
79
- "@itwin/core-common": "5.13.0-dev.3",
80
- "@itwin/build-tools": "5.13.0-dev.3",
81
- "@itwin/presentation-common": "5.13.0-dev.3",
82
- "@itwin/core-bentley": "5.13.0-dev.3",
83
- "@itwin/core-quantity": "5.13.0-dev.3",
78
+ "@itwin/build-tools": "5.13.0-dev.5",
79
+ "@itwin/core-bentley": "5.13.0-dev.5",
80
+ "@itwin/core-backend": "5.13.0-dev.5",
81
+ "@itwin/core-quantity": "5.13.0-dev.5",
82
+ "@itwin/core-common": "5.13.0-dev.5",
83
+ "@itwin/presentation-common": "5.13.0-dev.5",
84
84
  "internal-tools": "3.0.0-dev.69",
85
- "@itwin/ecschema-metadata": "5.13.0-dev.3"
85
+ "@itwin/ecschema-metadata": "5.13.0-dev.5"
86
86
  },
87
87
  "dependencies": {
88
88
  "@itwin/presentation-shared": "^1.2.2",