From c7531a393a6dcfc445d1cea09422929f7161636c Mon Sep 17 00:00:00 2001 From: Samuel Rothstein Date: Mon, 2 Aug 2021 08:42:54 -0700 Subject: [PATCH 1/5] updated Cesium ion demo token, proofread CHANGES.md, updated version number --- CHANGES.md | 6 +++--- Source/Core/Ion.js | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 88d521c9d077..45faaf5e2f56 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,12 +4,12 @@ ##### Breaking Changes :mega: -- Dropped support for Internet Explorer, which was deprecated in 1.83. +- Dropped support for Internet Explorer, which was deprecated in CesiumJS 1.83. ##### Additions :tada: -- Added `ImageryLayerCollection.pickImageryLayers` which determines the imagery layers that are intersected by a pick ray. [#9651](https://github.com/CesiumGS/cesium/pull/9651) - Added a `polylinePositions` getter to `Cesium3DTileFeature` that gets the decoded positions of a polyline vector feature. [#9684](https://github.com/CesiumGS/cesium/pull/9684) +- Added `ImageryLayerCollection.pickImageryLayers` which determines the imagery layers that are intersected by a pick ray. [#9651](https://github.com/CesiumGS/cesium/pull/9651) ##### Fixes :wrench: @@ -17,9 +17,9 @@ - Fixed an issue in `TileBoundingRegion.distanceToCamera` that caused incorrect results when the camera was on the opposite site of the globe. [#9678](https://github.com/CesiumGS/cesium/pull/9678) - Fixes an error with removing a CZML datasource when the clock interval has a duration of zero. [#9637](https://github.com/CesiumGS/cesium/pull/9637) - Fixed the ability to set a material's image to `undefined` and `Material.DefaultImageId`. [#9644](https://github.com/CesiumGS/cesium/pull/9644) -- Fixed the calculation of `OrientedBoundingBox.distancedSquaredTo` such that they handle `halfAxes` with magnitudes near zero. [#9670](https://github.com/CesiumGS/cesium/pull/9670) - Fixed render crash when creating a `polylineVolume` with very close points. [#9669](https://github.com/CesiumGS/cesium/pull/9669) - Fixed a bug in `PolylineGeometry` that incorrectly shifted colors when duplicate positions were removed. [#9676](https://github.com/CesiumGS/cesium/pull/9676) +- Fixed the calculation of `OrientedBoundingBox.distancedSquaredTo` such that they handle `halfAxes` with magnitudes near zero. [#9670](https://github.com/CesiumGS/cesium/pull/9670) - Fixed a crash that would hang the browser if a `Label` was created with a soft hyphen in its text. [#9682](https://github.com/CesiumGS/cesium/pull/9682) - Fixed the incorrect calculation of `distanceSquaredTo` in `BoundingSphere`. [#9686](https://github.com/CesiumGS/cesium/pull/9686) diff --git a/Source/Core/Ion.js b/Source/Core/Ion.js index 2462799a07b2..14c47721e236 100644 --- a/Source/Core/Ion.js +++ b/Source/Core/Ion.js @@ -4,7 +4,7 @@ import Resource from "./Resource.js"; var defaultTokenCredit; var defaultAccessToken = - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI1MDA2NzVhYi05NjljLTQ2ZWQtYWJkZC1jYTg4NzA4YjEzNGMiLCJpZCI6MjU5LCJpYXQiOjE2MjUxNTA1ODh9.hDxkoBgpk13oYPDuKYhkt6XSyii_kUKufDE_GLE38is"; + "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJkZjZmNmEzYy0zOWUwLTQzMTEtODNlMC1hY2EwZTRkNjQyNWUiLCJpZCI6MjU5LCJpYXQiOjE2Mjc5MTg0MjB9.VbQeEhbHiWrAH5KAAl1ynNkI4kHWxJdDi78IcCZxFk4"; /** * Default settings for accessing the Cesium ion API. * diff --git a/package.json b/package.json index 1ade973c7ee5..aed3dd9c0f18 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cesium", - "version": "1.83.0", + "version": "1.84.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", From 24ff1a00f1970d5da355091b08005da84c3f1d3b Mon Sep 17 00:00:00 2001 From: Samuel Rothstein Date: Mon, 28 Feb 2022 10:48:23 -0800 Subject: [PATCH 2/5] removed documentation from fixes in the change log --- CHANGES.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index b41842232387..e38a7f620917 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -27,7 +27,6 @@ - Fixed a bug where updating `ModelExperimental`'s model matrix would not update its bounding sphere. [#10078](https://github.com/CesiumGS/cesium/pull/10078) - Fixed feature ID texture artifacts on Safari. [#10111](https://github.com/CesiumGS/cesium/pull/10111) - Fixed a bug where a translucent shader applied to a `ModelExperimental` with opaque features was not being rendered. [#10110](https://github.com/CesiumGS/cesium/pull/10110) -- Fixed an inconsistently handled exception in `camera.getPickRay` that arises when the scene is not rendered. [#10139](https://github.com/CesiumGS/cesium/pull/10139) ### 1.90 - 2022-02-01 From db8881307dc1e1d44505da35ddffbed04c054ce5 Mon Sep 17 00:00:00 2001 From: Samuel Rothstein Date: Mon, 28 Feb 2022 10:49:56 -0800 Subject: [PATCH 3/5] added a Breaking Changes section to the change log --- CHANGES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index e38a7f620917..e3ee1ad4969c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,8 @@ ### 1.91 - 2022-03-01 +##### Breaking Changes :mega: + ##### Additions :tada: - Added MSAA support for WebGL2. Enabled on viewer creation with the multisampling rate as the `msaaSamples` option and can be controlled through `Scene.msaaSamples`. From e8a7ba05d922605c314c4325f3591dd44669a3fa Mon Sep 17 00:00:00 2001 From: Samuel Rothstein Date: Mon, 28 Feb 2022 10:50:53 -0800 Subject: [PATCH 4/5] moved entry from fixes into breaking changes --- CHANGES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index e3ee1ad4969c..d6550d497def 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,8 @@ ##### Breaking Changes :mega: +- Fixed an inconsistently handled exception in `camera.getPickRay` that arises when the scene is not rendered. [#10139](https://github.com/CesiumGS/cesium/pull/10139) + ##### Additions :tada: - Added MSAA support for WebGL2. Enabled on viewer creation with the multisampling rate as the `msaaSamples` option and can be controlled through `Scene.msaaSamples`. From 7ef1c89ba9b5b12972b69f86ea3023e9b9510390 Mon Sep 17 00:00:00 2001 From: Samuel Rothstein Date: Mon, 28 Feb 2022 10:51:53 -0800 Subject: [PATCH 5/5] updated the wording in the change log --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index d6550d497def..c6f0c100ad50 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,7 @@ ##### Breaking Changes :mega: -- Fixed an inconsistently handled exception in `camera.getPickRay` that arises when the scene is not rendered. [#10139](https://github.com/CesiumGS/cesium/pull/10139) +- Fixed an inconsistently handled exception in `camera.getPickRay` that arises when the scene is not rendered. `camera.getPickRay` can now return undefined. [#10139](https://github.com/CesiumGS/cesium/pull/10139) ##### Additions :tada: