@masterportal/masterportalapi 2.42.1 → 2.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -18,6 +18,20 @@
18
18
 
19
19
  ---
20
20
 
21
+ ## 2.43.0 - 2024-01-17
22
+
23
+ ### Changed
24
+ - The following packages have been updated:
25
+ - dependencies:
26
+ - ol: 10.2.1 to 10.3.1
27
+ - peerDependencies:
28
+ - cesium/engine: 12.0.1 to 13.0.0
29
+
30
+ ### Fixed
31
+ - 3D mesh layer was covered on level 0 by setting globe depthTestAgainstTerrain to false
32
+
33
+ ---
34
+
21
35
  ## 2.42.1 - 2024-11-28
22
36
 
23
37
  ### Fixed
@@ -37,7 +51,7 @@
37
51
  - cesium/engine: 9.2.0 to 12.0.1
38
52
 
39
53
  ### Fixed
40
- - Issue #1275: Layers without capabilitiesURL are now working.
54
+ - Issue #1275: Layers without capabilitiesURL are now working.
41
55
 
42
56
  ---
43
57
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@masterportal/masterportalapi",
3
3
  "author": "Implementierungspartnerschaft Masterportal <info@masterportal.org> (https://www.masterportal.org)",
4
- "version": "2.42.1",
4
+ "version": "2.43.0",
5
5
  "license": "MIT",
6
6
  "description": "Basic functions of the Masterportal as api",
7
7
  "repository": {
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "core-js": "^3.33.1",
23
23
  "dayjs": "^1.11.10",
24
- "ol": "^10.2.1",
24
+ "ol": "^10.3.1",
25
25
  "ol-mapbox-style": "^12.3.5",
26
26
  "olcs": "^2.22.1",
27
27
  "proj4": "^2.10.0",
@@ -56,7 +56,7 @@
56
56
  "util": "^0.12.5"
57
57
  },
58
58
  "peerDependencies": {
59
- "@cesium/engine": "^12.0.1"
59
+ "@cesium/engine": "^13.0.0"
60
60
  },
61
61
  "engines": {
62
62
  "node": "^16.13.2 || ^18.12.0 || ^20.12.2",
package/src/defaults.js CHANGED
@@ -40,7 +40,7 @@ export default {
40
40
  enableTerrainAdjustmentWhenLoading: true
41
41
  },
42
42
  globe: {
43
- depthTestAgainstTerrain: true // is necessary for scene.pickedPosition and correct height of the terrain. @see {https://github.com/CesiumGS/cesium/issues/5676}
43
+ depthTestAgainstTerrain: false
44
44
  },
45
45
  highDynamicRange: false,
46
46
  pickTranslucentDepth: true,