Skip to content

Commit

Permalink
Updates for 1.106 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeshurun Hembd committed May 31, 2023
1 parent b2d169d commit d11b746
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

##### Fixes :wrench:

- Fixed tracked entity camera controls. [#11286](https://github.com/CesiumGS/cesium/issues/11286)
- Fixed label background rendering. [#11293](https://github.com/CesiumGS/cesium/pull/11293)
- Fixed color creation from CSS color string with modern "space-separated" syntax. [#11271](https://github.com/CesiumGS/cesium/pull/11271)
- Fixed tracked entity camera controls. [#11286](https://github.com/CesiumGS/cesium/issues/11286)
- Fixed a race condition when loading cut-out terrain. [#11296](https://github.com/CesiumGS/cesium/pull/11296)
- Fixed async behavior for custom terrain and imagery providers. [#11274](https://github.com/CesiumGS/cesium/issues/11274)
- Fixed label background rendering. [#11293](https://github.com/CesiumGS/cesium/pull/11293)

### 1.105.2 - 2023-05-15

Expand Down
4 changes: 2 additions & 2 deletions ThirdParty.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"license": [
"Apache-2.0"
],
"version": "3.0.2",
"version": "3.0.3",
"url": "https://www.npmjs.com/package/dompurify",
"notes": "dompurify is available as both MPL-2.0 OR Apache-2.0"
},
Expand Down Expand Up @@ -125,7 +125,7 @@
"license": [
"MIT"
],
"version": "0.18.1",
"version": "0.19.0",
"url": "https://www.npmjs.com/package/meshoptimizer"
},
{
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cesium",
"version": "1.105.2",
"version": "1.106.0",
"description": "CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
"homepage": "http://cesium.com/cesiumjs/",
"license": "Apache-2.0",
Expand Down Expand Up @@ -51,7 +51,7 @@
"./Specs/**/*"
],
"dependencies": {
"@cesium/engine": "2.4.0",
"@cesium/engine": "2.4.1",
"@cesium/widgets": "2.3.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/engine/Source/Core/GoogleMaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import defined from "./defined.js";
import Resource from "./Resource.js";

let defaultKeyCredit;
const defaultKey = "AIzaSyBESBYnp1EcqtlAcjMTJ65GjUsJtaCWVXA";
const defaultKey = "AIzaSyBqCv5lozjjhtIQ_pZuj2obyAL9bTJdY28";

/**
* Default settings for accessing the Google Maps API.
Expand Down
3 changes: 2 additions & 1 deletion packages/engine/Source/Core/Ion.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import Resource from "./Resource.js";

let defaultTokenCredit;
const defaultAccessToken =
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIwZWQ3OWFlZC1kOTg3LTRlZjctYTAyYy0xNjFmODE1MWE2NGUiLCJpZCI6MjU5LCJpYXQiOjE2ODI5NDYzODh9.DEH4GpqliH-xsDE7h-ZCICtHgnGu32wdSjt4hFqw7lU";
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJmYmE2YWEzOS1lZDUyLTQ0YWMtOTlkNS0wN2VhZWI3NTc4MmEiLCJpZCI6MjU5LCJpYXQiOjE2ODU2MzQ0Njl9.AswCMxsN03WYwuZL-r183OZicN64Ks9aPExWhA3fuLY";

/**
* Default settings for accessing the Cesium ion API.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/engine/Source/Scene/ArcGisMapService.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Resource from "../Core/Resource.js";

let defaultTokenCredit;
const defaultAccessToken =
"AAPKd815e334cb774973b7245e23a67f4d08Js7A8e8xvfBpgnZIzp1jbL3FWJTmx7AKG8wa87OwDcWEu4CxQCNiydpPbGpALiTf";
"AAPKac82a6d80f1340a4aa9587f789d07e96a_Jj1a4fbA59cggYHArDizxxA2U4QDofLUm36VivpUsSRyK7O1JjRPwy916Y-7ld";
/**
* Default options for accessing the ArcGIS image tile service.
*
Expand Down
2 changes: 1 addition & 1 deletion packages/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cesium/engine",
"version": "2.4.0",
"version": "2.4.1",
"description": "CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
"keywords": [
"3D",
Expand Down
2 changes: 1 addition & 1 deletion packages/widgets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"node": ">=14.0.0"
},
"dependencies": {
"@cesium/engine": "2.4.0",
"@cesium/engine": "2.4.1",
"nosleep.js": "^0.12.0"
},
"type": "module",
Expand Down

0 comments on commit d11b746

Please sign in to comment.