Skip to content

Commit baaabaa

Browse files
committed
Updates for 1.122 release
1 parent f26e7c8 commit baaabaa

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

CHANGES.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66

77
##### Additions :tada:
88

9-
- Added `enableVerticalExaggeration` option to models. Set this value to `false` to prevent model exaggeration when `Scene.verticalExaggeration` is set to a value other than `1.0`. [#12141](https://github.com/CesiumGS/cesium/pull/12141)
109
- Added `CallbackPositionProperty` to allow lazy entity position evaluation. [#12170](https://github.com/CesiumGS/cesium/pull/12170)
10+
- Added `enableVerticalExaggeration` option to models. Set this value to `false` to prevent model exaggeration when `Scene.verticalExaggeration` is set to a value other than `1.0`. [#12141](https://github.com/CesiumGS/cesium/pull/12141)
1111
- Added `Scene.prototype.pickMetadata` and `Scene.prototype.pickMetadataSchema`, enabling experimental support for picking property textures or property attributes [#12075](https://github.com/CesiumGS/cesium/pull/12075)
1212
- Added experimental support for the `NGA_gpm_local` glTF extension, for GPM 1.2 [#12204](https://github.com/CesiumGS/cesium/pull/12204)
1313

1414
##### Fixes :wrench:
1515

16-
- Fix Texture errors when using a `HTMLVideoElement`. [#12219](https://github.com/CesiumGS/cesium/issues/12219)
17-
- Use first geometryBuffer if no best match found in I3SNode [#12132](https://github.com/CesiumGS/cesium/pull/12132)
18-
- Update type definitions to allow undefined for optional parameters [#12193](https://github.com/CesiumGS/cesium/pull/12193)
19-
- Reverts Firefox OIT temporary fix [#4815] and Firefox test failure fix [#5047]
16+
- Fix `Texture` errors when using a `HTMLVideoElement`. [#12219](https://github.com/CesiumGS/cesium/issues/12219)
2017
- Fixed noise in ambient occlusion post process. [#12201](https://github.com/CesiumGS/cesium/pull/12201)
18+
- Use first `geometryBuffer` if no best match found in I3SNode. [#12132](https://github.com/CesiumGS/cesium/pull/12132)
19+
- Update type definitions throughout `Core/` to allow undefined for optional parameters. [#12193](https://github.com/CesiumGS/cesium/pull/12193)
20+
- Reverts Firefox OIT temporary fix. [#4815](https://github.com/CesiumGS/cesium/pull/4815)
2121

2222
##### Deprecated :hourglass_flowing_sand:
2323

ThirdParty.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"license": [
4545
"Apache-2.0"
4646
],
47-
"version": "3.1.6",
47+
"version": "3.1.7",
4848
"url": "https://www.npmjs.com/package/dompurify",
4949
"notes": "dompurify is available as both MPL-2.0 OR Apache-2.0"
5050
},
@@ -166,7 +166,7 @@
166166
"license": [
167167
"MIT"
168168
],
169-
"version": "4.0.1",
169+
"version": "3.0.1",
170170
"url": "https://www.npmjs.com/package/rbush"
171171
},
172172
{

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cesium",
3-
"version": "1.121.1",
3+
"version": "1.122.0",
44
"description": "CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
55
"homepage": "http://cesium.com/cesiumjs/",
66
"license": "Apache-2.0",
@@ -51,8 +51,8 @@
5151
"./Specs/**/*"
5252
],
5353
"dependencies": {
54-
"@cesium/engine": "^11.0.0",
55-
"@cesium/widgets": "^8.0.0"
54+
"@cesium/engine": "^11.1.0",
55+
"@cesium/widgets": "^8.1.0"
5656
},
5757
"devDependencies": {
5858
"@playwright/test": "^1.41.1",
@@ -158,4 +158,4 @@
158158
"packages/engine",
159159
"packages/widgets"
160160
]
161-
}
161+
}

packages/engine/Source/Core/Ion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Resource from "./Resource.js";
44

55
let defaultTokenCredit;
66
const defaultAccessToken =
7-
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxMjY5YWQzZS04ZGIyLTRlMjEtYjcwNS1iYmY0NDNmN2E3ZjAiLCJpZCI6MjU5LCJpYXQiOjE3MjUzNzYwMzZ9.L0mzOLcquvnxOpG5DnqWQmivpRCwePDt3WAgzb8VlVA";
7+
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI1ZjJlYTllMy1kYWRiLTQwYjctOGZhOS02NGJkOTJhYTA1ODUiLCJpZCI6MjU5LCJpYXQiOjE3Mjc3OTI2NzB9.XbfI79d1v3T5OpMl4CznrcBuctSfW1lycPWlt8bq_1A";
88
/**
99
* Default settings for accessing the Cesium ion API.
1010
*

packages/engine/Source/Scene/ArcGisMapService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Resource from "../Core/Resource.js";
44

55
let defaultTokenCredit;
66
const defaultAccessToken =
7-
"AAPTxy8BH1VEsoebNVZXo8HurEOF051kAEKlhkOhBEc9BmSXu8_pRnGhnW6yZLct-ukUzbJaZRAVfnmUrxDcAu_FaFDIC3M57EwfRm_DuTw9D5oHdLBTYIMD3tpUeFsNDjHHqar5fb1FGIN9KIV1Gk64dNBmhHhuOHY8cq2IhI0XFLj2qnAlqtKnM-lLsO6JpHuHPVD799V1o9VFm9vMW6a66vEi8-e--2QzKQecPYiaq98.AT1_p4pHwb3n";
7+
"AAPTxy8BH1VEsoebNVZXo8HurEOF051kAEKlhkOhBEc9BmRQoHkV6yy7n-w7RwBvqWZInYtbyiKcHHbPb4eH54WQnfJ6TQhd3sKcL6dutvEZajLojeHefo1qcBMplg4hb9OtcvtchKPzwRyH1-W_12nt2rhP3xbk8peiMvgIWZ__JYvZ8Wqw-8UWulEjXnpLRjclKf3NYHCTQgaw6Y6labxudMrnBgOODrJ1WdRxek-flc8.AT1_UW44TSnh";
88
/**
99
* Default options for accessing the ArcGIS image tile service.
1010
*

packages/engine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cesium/engine",
3-
"version": "11.0.0",
3+
"version": "11.1.0",
44
"description": "CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
55
"keywords": [
66
"3D",

packages/widgets/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cesium/widgets",
3-
"version": "8.0.0",
3+
"version": "8.1.0",
44
"description": "A widgets library for use with CesiumJS. CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
55
"keywords": [
66
"3D",
@@ -28,7 +28,7 @@
2828
"node": ">=14.0.0"
2929
},
3030
"dependencies": {
31-
"@cesium/engine": "^11.0.0",
31+
"@cesium/engine": "^11.1.0",
3232
"nosleep.js": "^0.12.0"
3333
},
3434
"type": "module",

0 commit comments

Comments
 (0)