You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,13 @@
1
1
# Change Log
2
2
3
+
## 1.133 - 2025-09-02
4
+
5
+
### @cesium/engine
6
+
7
+
#### Breaking Changes :mega:
8
+
9
+
- Removed the argument fallback in `ITwinData.*` functions. Please switch to the new options argument signature [#12778](https://github.com/CesiumGS/cesium/issues/12778)
"The arguments signature for ITwinData functions has changed in 1.132 in favor of a single options object. Please update your code. This fallback will be removed in 1.133",
// the old signature was (iTwinId: string, realityDataId: string, type: RealityDataType, rootDocument: string)
119
-
// grab the later arguments directly instead of in the params only for this special case
120
-
internalOptions={
121
-
iTwinId: options,
122
-
realityDataId: arguments[1],
123
-
type: arguments[2],
124
-
rootDocument: arguments[3],
125
-
};
126
-
deprecationWarning(
127
-
"ITwinData.createTilesetFromIModelId",
128
-
"The arguments signature for ITwinData functions has changed in 1.132 in favor of a single options object. Please update your code. This fallback will be removed in 1.133",
// the old signature was (iTwinId: string, realityDataId: string, type: RealityDataType, rootDocument: string)
197
-
// grab the later arguments directly instead of in the params only for this special case
198
-
internalOptions={
199
-
iTwinId: options,
200
-
realityDataId: arguments[1],
201
-
type: arguments[2],
202
-
rootDocument: arguments[3],
203
-
};
204
-
deprecationWarning(
205
-
"ITwinData.createTilesetFromIModelId",
206
-
"The arguments signature for ITwinData functions has changed in 1.132 in favor of a single options object. Please update your code. This fallback will be removed in 1.133",
// the old signature was (iTwinId: string, collectionId: string, limit: number)
271
-
// grab the later arguments directly instead of in the params only for this special case
272
-
internalOptions={
273
-
iTwinId: options,
274
-
collectionId: arguments[1],
275
-
limit: arguments[2],
276
-
};
277
-
deprecationWarning(
278
-
"ITwinData.createTilesetFromIModelId",
279
-
"The arguments signature for ITwinData functions has changed in 1.132 in favor of a single options object. Please update your code. This fallback will be removed in 1.133",
0 commit comments