Skip to content

Commit

Permalink
v0.40.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Deubler <[email protected]>
  • Loading branch information
TerminalTim committed Nov 29, 2024
1 parent 2605937 commit 85ca28b
Show file tree
Hide file tree
Showing 14 changed files with 84 additions and 49 deletions.
19 changes: 13 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
## 0.40.0-dev.1 (2024-10-17)
## 0.40.0 (2024-11-29)
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
### display
* improved: refined depth clipping to enhance visual quality at high pitch angles
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
### core
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtiles)
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
* fixed: resolve potential rendering artifacts for huge polygons in MVT datasources

## 0.39.0 (2024-9-6)
### editor
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"npmClient": "yarn",
"version": "0.40.0-dev.1"
"version": "0.40.0"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps",
"version": "0.40.0-dev.1",
"version": "0.40.0",
"description": "XYZ Editor is an experimental and work in progress open-source map editor written in TypeScript/JavaScript",
"author": {
"name": "HERE Europe B.V.",
Expand Down
19 changes: 13 additions & 6 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
## 0.40.0-dev.1 (2024-10-17)
## 0.40.0 (2024-11-29)
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
### display
* improved: refined depth clipping to enhance visual quality at high pitch angles
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
### core
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtiles)
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
* fixed: resolve potential rendering artifacts for huge polygons in MVT datasources

## 0.39.0 (2024-9-6)
### editor
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-common",
"version": "0.40.0-dev.1",
"version": "0.40.0",
"description": "Commonly used libraries of XYZ Maps.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
19 changes: 13 additions & 6 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
## 0.40.0-dev.1 (2024-10-17)
## 0.40.0 (2024-11-29)
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
### display
* improved: refined depth clipping to enhance visual quality at high pitch angles
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
### core
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtiles)
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
* fixed: resolve potential rendering artifacts for huge polygons in MVT datasources

## 0.39.0 (2024-9-6)
### editor
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-core",
"version": "0.40.0-dev.1",
"version": "0.40.0",
"description": "Core libs of XYZ Editor.",
"author": {
"name": "HERE Europe B.V.",
Expand All @@ -27,7 +27,7 @@
},
"publishConfig": {},
"dependencies": {
"@here/xyz-maps-common": "^0.40.0-dev.1"
"@here/xyz-maps-common": "^0.40.0"
},
"devDependencies": {
"@mapbox/vector-tile": "^1.3.1",
Expand Down
19 changes: 13 additions & 6 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
## 0.40.0-dev.1 (2024-10-17)
## 0.40.0 (2024-11-29)
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
### display
* improved: refined depth clipping to enhance visual quality at high pitch angles
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
### core
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtiles)
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
* fixed: resolve potential rendering artifacts for huge polygons in MVT datasources

## 0.39.0 (2024-9-6)
### editor
Expand Down
6 changes: 3 additions & 3 deletions packages/display/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-display",
"version": "0.40.0-dev.1",
"version": "0.40.0",
"description": "Map display of XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down Expand Up @@ -28,8 +28,8 @@
},
"publishConfig": {},
"dependencies": {
"@here/xyz-maps-common": "^0.40.0-dev.1",
"@here/xyz-maps-core": "^0.40.0-dev.1"
"@here/xyz-maps-common": "^0.40.0",
"@here/xyz-maps-core": "^0.40.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
Expand Down
19 changes: 13 additions & 6 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
## 0.40.0-dev.1 (2024-10-17)
## 0.40.0 (2024-11-29)
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* added: introduce [getSelectedFeature](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#getselectedfeature) method to retrieve the currently selected feature.
* added: Introduced batch editing to group multiple feature modifications into a single history entry. See [batch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#batch), [startBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#startBatch), [endBatch](https://heremaps.github.io/xyz-maps/docs/classes/editor.editor-1.html#endBatch), [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Editor-Batch_Changes)
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
### display
* improved: refined depth clipping to enhance visual quality at high pitch angles
* improved: Prevent transparency rendering issues when handling clipped data with offsets larger than remote source tile bounds.
* added: Line dashes now support dynamic StyleExpressions with intermediate zoom level support.
* added: The dynamic coloring of the horizon is now possible with [LayerStyle.skyColor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#skycolor), including support for gradients for smooth transitions from sky to horizon
* fixed: prevent the Compass UI from causing the map view to be reset in some cases with excessive applied rotation and tilt
### core
* improved: Enhanced [Provider.clear](https://heremaps.github.io/xyz-maps/docs/classes/core.featureprovider.html#clear) to support more flexible inputs, including bounding boxes and tiles.
* added: locally cached tiles can now be queried using [TileProvider.getCachedTiles](https://heremaps.github.io/xyz-maps/docs/classes/core.tileprovider.html#getcachedtiles)
* fixed: resolve incorrect module initialization in non-browser environments like Node.js
* fix: resolve potential rendering artifacts for huge polygons in MVT datasources
### editor
* improved: Allow customization of default RangeSelector through enhanced overlay styles.
* fixed: Highlighted crossings links are reset in all cases.
* fixed: Ensure RangeSelector fully supports custom Navlink/Line styles and correctly handles zLayer for proper layering.
* fixed: resolve potential rendering artifacts for huge polygons in MVT datasources

## 0.39.0 (2024-9-6)
### editor
Expand Down
8 changes: 4 additions & 4 deletions packages/editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-editor",
"version": "0.40.0-dev.1",
"version": "0.40.0",
"description": "XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down Expand Up @@ -28,9 +28,9 @@
"update-changelog": "npx build-changelog"
},
"dependencies": {
"@here/xyz-maps-common": "^0.40.0-dev.1",
"@here/xyz-maps-core": "^0.40.0-dev.1",
"@here/xyz-maps-display": "^0.40.0-dev.1"
"@here/xyz-maps-common": "^0.40.0",
"@here/xyz-maps-core": "^0.40.0",
"@here/xyz-maps-display": "^0.40.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.4",
Expand Down
10 changes: 5 additions & 5 deletions packages/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-playground",
"version": "0.40.0-dev.1",
"version": "0.40.0",
"description": "Playground for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand All @@ -19,10 +19,10 @@
"dev": "rollup -c -w"
},
"dependencies": {
"@here/xyz-maps-common": "^0.40.0-dev.1",
"@here/xyz-maps-core": "^0.40.0-dev.1",
"@here/xyz-maps-display": "^0.40.0-dev.1",
"@here/xyz-maps-editor": "^0.40.0-dev.1",
"@here/xyz-maps-common": "^0.40.0",
"@here/xyz-maps-core": "^0.40.0",
"@here/xyz-maps-display": "^0.40.0",
"@here/xyz-maps-editor": "^0.40.0",
"@monaco-editor/react": "^4.4.5",
"monaco-editor": "^0.34.0",
"react": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-test",
"version": "0.39.0",
"version": "0.40.0",
"description": "Tests for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-utils",
"version": "0.39.0",
"version": "0.40.0",
"description": "Development utilities used to build XYZ Maps modules",
"author": {
"name": "HERE Europe B.V.",
Expand Down

0 comments on commit 85ca28b

Please sign in to comment.