Skip to content

Commit 061b662

Browse files
author
Jeshurun Hembd
committed
Updates for 1.130 release
1 parent 93bff98 commit 061b662

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CHANGES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ vec3 voxelNormal = fsInput.attributes.normalEC;
1919

2020
#### Additions :tada:
2121

22-
- Support Texture3D and add Volume Cloud SandBox Sample. [#12550](https://github.com/CesiumGS/cesium/issues/12550)
23-
- Basic support for draping imagery on 3D Tiles. [#7591](https://github.com/CesiumGS/cesium/issues/7591)
22+
- Add basic support for draping imagery on 3D Tiles. [#12567](https://github.com/CesiumGS/cesium/pull/12567)
23+
- Add support for 3D Textures and add Volume Cloud sandcastle example. [#12661](https://github.com/CesiumGS/cesium/pull/12611)
2424

2525
#### Fixes :wrench:
2626

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cesium",
3-
"version": "1.129.0",
3+
"version": "1.130.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": "^17.0.0",
55-
"@cesium/widgets": "^12.0.0"
54+
"@cesium/engine": "^18.0.0",
55+
"@cesium/widgets": "^12.1.0"
5656
},
5757
"devDependencies": {
5858
"@cesium/eslint-config": "^12.0.0",

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.eyJqdGkiOiJjNjVkZDYxOC01NmEwLTQ1ZmEtOGE2ZS1lYWUyODM4ZWQxYzQiLCJpZCI6MjU5LCJpYXQiOjE3NDYxMTA0Njl9.uyhPpCQKB1dodfbqTx0ZUPOLhnrSXd-qWixDxc4GYXk";
7+
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI4ZTlhZTM1MC1lNjM0LTRkNTQtYTE3OC02NWI0YjQ3NTAxNzgiLCJpZCI6MjU5LCJpYXQiOjE3NDg4ODUxMzV9.8mGFxgmp1QW0MIdArET4EVn5c7DKlt_HHA_Gnnu7eF4";
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-
"AAPTxy8BH1VEsoebNVZXo8HurEOF051kAEKlhkOhBEc9BmRwxo7rIWoXrG5RJkAAlrdL0n_Ha7z7WbgHT-DpRd_LxLSeba-Kg8HsK3kJVUF2iiOVOza8OZ-DIdJzjyBZ9IIc5W0JagV3wyuZ9CKE3RHRSADOw-9FbeeUyfJA8iS2mKcK8768q4g11vlHUzVYFhWoKctRWWeG3Amwm6ez2n3vMc1fTSqDdbFP2O6x5eslQDE.AT1_SOxgo20E";
7+
"AAPTxy8BH1VEsoebNVZXo8HurEOF051kAEKlhkOhBEc9BmTP0IZoWRBEdmOPutLUJ2JcHWgott0sjyyyJ6-Nu6O_MLmmkiswXG4qzrOMMu0N8VU2LUbsVXxF7KR041TgbHlgZPBYpt4LZXFH4jpS6NIBFm_JqZPzxLgFhbAYSs4yh_vDo1I7Qxr9dPzWiIPm5KHQ99Hs2uH4JH4356FxozccoIsuX2H4LyTBRUZ36FqFikI.AT1_FcZPNruQ";
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": "17.0.0",
3+
"version": "18.0.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": "12.0.0",
3+
"version": "12.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": ">=20.19.0"
2929
},
3030
"dependencies": {
31-
"@cesium/engine": "^17.0.0",
31+
"@cesium/engine": "^18.0.0",
3232
"nosleep.js": "^0.12.0"
3333
},
3434
"type": "module",

0 commit comments

Comments
 (0)