@masterportal/masterportalapi 2.42.2 → 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
@@ -3,19 +3,34 @@
3
3
 
4
4
  The [Semantic Versioning](https://semver.org/spec/v2.0.0.html) is used.
5
5
 
6
+ ## Unreleased - in development
7
+ ### __Breaking Changes__
6
8
 
7
- ## 2.42.2 - 2024-12-05
9
+ ### Added
8
10
 
9
11
  ### Changed
10
- -Revert Change, because of problems with Routing:
11
- - The following packages have been updated:
12
- - dependencies:
13
- - ol: 9.2.4 to 10.2.1
14
- - ol-mapbox-style: 12.2.1 to 12.3.5
15
- - olcs: 2.20.0 to 2.22.1
16
- - peerDependencies:
17
- - cesium/engine: 9.2.0 to 12.0.1
18
12
 
13
+ ### Deprecated
14
+
15
+ ### Removed
16
+
17
+ ### Fixed
18
+
19
+ ---
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
+ ---
19
34
 
20
35
  ## 2.42.1 - 2024-11-28
21
36
 
@@ -36,7 +51,7 @@
36
51
  - cesium/engine: 9.2.0 to 12.0.1
37
52
 
38
53
  ### Fixed
39
- - Issue #1275: Layers without capabilitiesURL are now working.
54
+ - Issue #1275: Layers without capabilitiesURL are now working.
40
55
 
41
56
  ---
42
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.2",
4
+ "version": "2.43.0",
5
5
  "license": "MIT",
6
6
  "description": "Basic functions of the Masterportal as api",
7
7
  "repository": {
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "core-js": "^3.33.1",
23
23
  "dayjs": "^1.11.10",
24
- "ol": "9.2.4",
25
- "ol-mapbox-style": "12.2.1",
26
- "olcs": "2.20.0",
24
+ "ol": "^10.3.1",
25
+ "ol-mapbox-style": "^12.3.5",
26
+ "olcs": "^2.22.1",
27
27
  "proj4": "^2.10.0",
28
28
  "xml2js": "^0.6.2"
29
29
  },
@@ -56,7 +56,7 @@
56
56
  "util": "^0.12.5"
57
57
  },
58
58
  "peerDependencies": {
59
- "@cesium/engine": "^9.2.0"
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,