Skip to content

Commit

Permalink
v0.38.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Deubler <[email protected]>
  • Loading branch information
TerminalTim committed Jul 26, 2024
1 parent c24e899 commit 1e098d8
Show file tree
Hide file tree
Showing 14 changed files with 105 additions and 20 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.38.0 (2024-7-26)
### editor
* improved: Modifying building footprints now works seamlessly even when shape points are covered by building extrusions.
* fixed: correctly edit 3D LineString geometry displayed as 2D due to styling.
* fixed: Resolved issue preventing translation of 3D buildings using the Transformer utility.
### display
* added: LayerStyles can now be defined in pure JSON using [StyleExpressions](https://heremaps.github.io/xyz-maps/docs/modules/core.html#styleexpression). See [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Expression_based_Styling).
* added: Enabled pointer event triggering for flat 2D geometry that is positioned below but rendered on top of 3D geometry.
* improved: Enhanced "opacity" and "strokeDasharray" style properties to support StyleZoomRanges for dynamic zoom-level-based rendering.
* fixed: resolve setBackgroundColor issue with StyleZoomRange or StyleValueFunction.
* fixed: ensure correct rotation and positioning of icons along all segments of LineStrings
* fixed: Resolved alpha blending issues for colors defined as RGBA arrays.
### core
* added: Add [LayerStyle.zLayer](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#zlayer) for fallback drawing order control when zLayer is not explicitly defined on the style.
* added: Introduce Layer methods [setVisible(visible: boolean)](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#setvisible) and [isVisible()](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#isvisible) for controlling and querying layer visibility directly, complementing [LayerOptions.visible](https://heremaps.github.io/xyz-maps/docs/interfaces/core.tilelayeroptions.html#visible) without modifying layer presence on the display.
* fixed: resolve packaging issue causing excessive artifact size

## 0.37.0 (2024-5-10)
### display
* fixed: In cases where a particularly large dataset is frequently updated, it could lead to the display of outdated data.
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.37.0"
"version": "0.38.0"
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps",
"version": "0.37.0",
"version": "0.38.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 Expand Up @@ -62,4 +62,4 @@
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}
}
17 changes: 17 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.38.0 (2024-7-26)
### editor
* improved: Modifying building footprints now works seamlessly even when shape points are covered by building extrusions.
* fixed: correctly edit 3D LineString geometry displayed as 2D due to styling.
* fixed: Resolved issue preventing translation of 3D buildings using the Transformer utility.
### display
* added: LayerStyles can now be defined in pure JSON using [StyleExpressions](https://heremaps.github.io/xyz-maps/docs/modules/core.html#styleexpression). See [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Expression_based_Styling).
* added: Enabled pointer event triggering for flat 2D geometry that is positioned below but rendered on top of 3D geometry.
* improved: Enhanced "opacity" and "strokeDasharray" style properties to support StyleZoomRanges for dynamic zoom-level-based rendering.
* fixed: resolve setBackgroundColor issue with StyleZoomRange or StyleValueFunction.
* fixed: ensure correct rotation and positioning of icons along all segments of LineStrings
* fixed: Resolved alpha blending issues for colors defined as RGBA arrays.
### core
* added: Add [LayerStyle.zLayer](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#zlayer) for fallback drawing order control when zLayer is not explicitly defined on the style.
* added: Introduce Layer methods [setVisible(visible: boolean)](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#setvisible) and [isVisible()](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#isvisible) for controlling and querying layer visibility directly, complementing [LayerOptions.visible](https://heremaps.github.io/xyz-maps/docs/interfaces/core.tilelayeroptions.html#visible) without modifying layer presence on the display.
* fixed: resolve packaging issue causing excessive artifact size

## 0.37.0 (2024-5-10)
### display
* fixed: In cases where a particularly large dataset is frequently updated, it could lead to the display of outdated data.
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.37.0",
"version": "0.38.0",
"description": "Commonly used libraries of XYZ Maps.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
17 changes: 17 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.38.0 (2024-7-26)
### editor
* improved: Modifying building footprints now works seamlessly even when shape points are covered by building extrusions.
* fixed: correctly edit 3D LineString geometry displayed as 2D due to styling.
* fixed: Resolved issue preventing translation of 3D buildings using the Transformer utility.
### display
* added: LayerStyles can now be defined in pure JSON using [StyleExpressions](https://heremaps.github.io/xyz-maps/docs/modules/core.html#styleexpression). See [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Expression_based_Styling).
* added: Enabled pointer event triggering for flat 2D geometry that is positioned below but rendered on top of 3D geometry.
* improved: Enhanced "opacity" and "strokeDasharray" style properties to support StyleZoomRanges for dynamic zoom-level-based rendering.
* fixed: resolve setBackgroundColor issue with StyleZoomRange or StyleValueFunction.
* fixed: ensure correct rotation and positioning of icons along all segments of LineStrings
* fixed: Resolved alpha blending issues for colors defined as RGBA arrays.
### core
* added: Add [LayerStyle.zLayer](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#zlayer) for fallback drawing order control when zLayer is not explicitly defined on the style.
* added: Introduce Layer methods [setVisible(visible: boolean)](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#setvisible) and [isVisible()](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#isvisible) for controlling and querying layer visibility directly, complementing [LayerOptions.visible](https://heremaps.github.io/xyz-maps/docs/interfaces/core.tilelayeroptions.html#visible) without modifying layer presence on the display.
* fixed: resolve packaging issue causing excessive artifact size

## 0.37.0 (2024-5-10)
### display
* fixed: In cases where a particularly large dataset is frequently updated, it could lead to the display of outdated data.
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.37.0",
"version": "0.38.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.37.0"
"@here/xyz-maps-common": "^0.38.0"
},
"devDependencies": {
"@mapbox/vector-tile": "^1.3.1",
Expand Down
17 changes: 17 additions & 0 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.38.0 (2024-7-26)
### editor
* improved: Modifying building footprints now works seamlessly even when shape points are covered by building extrusions.
* fixed: correctly edit 3D LineString geometry displayed as 2D due to styling.
* fixed: Resolved issue preventing translation of 3D buildings using the Transformer utility.
### display
* added: LayerStyles can now be defined in pure JSON using [StyleExpressions](https://heremaps.github.io/xyz-maps/docs/modules/core.html#styleexpression). See [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Expression_based_Styling).
* added: Enabled pointer event triggering for flat 2D geometry that is positioned below but rendered on top of 3D geometry.
* improved: Enhanced "opacity" and "strokeDasharray" style properties to support StyleZoomRanges for dynamic zoom-level-based rendering.
* fixed: resolve setBackgroundColor issue with StyleZoomRange or StyleValueFunction.
* fixed: ensure correct rotation and positioning of icons along all segments of LineStrings
* fixed: Resolved alpha blending issues for colors defined as RGBA arrays.
### core
* added: Add [LayerStyle.zLayer](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#zlayer) for fallback drawing order control when zLayer is not explicitly defined on the style.
* added: Introduce Layer methods [setVisible(visible: boolean)](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#setvisible) and [isVisible()](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#isvisible) for controlling and querying layer visibility directly, complementing [LayerOptions.visible](https://heremaps.github.io/xyz-maps/docs/interfaces/core.tilelayeroptions.html#visible) without modifying layer presence on the display.
* fixed: resolve packaging issue causing excessive artifact size

## 0.37.0 (2024-5-10)
### display
* fixed: In cases where a particularly large dataset is frequently updated, it could lead to the display of outdated data.
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.37.0",
"version": "0.38.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.37.0",
"@here/xyz-maps-core": "^0.37.0"
"@here/xyz-maps-common": "^0.38.0",
"@here/xyz-maps-core": "^0.38.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
Expand Down
17 changes: 17 additions & 0 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.38.0 (2024-7-26)
### editor
* improved: Modifying building footprints now works seamlessly even when shape points are covered by building extrusions.
* fixed: correctly edit 3D LineString geometry displayed as 2D due to styling.
* fixed: Resolved issue preventing translation of 3D buildings using the Transformer utility.
### display
* added: LayerStyles can now be defined in pure JSON using [StyleExpressions](https://heremaps.github.io/xyz-maps/docs/modules/core.html#styleexpression). See [Playground Example](https://heremaps.github.io/xyz-maps/playground/#Layers%20/%20Providers-Expression_based_Styling).
* added: Enabled pointer event triggering for flat 2D geometry that is positioned below but rendered on top of 3D geometry.
* improved: Enhanced "opacity" and "strokeDasharray" style properties to support StyleZoomRanges for dynamic zoom-level-based rendering.
* fixed: resolve setBackgroundColor issue with StyleZoomRange or StyleValueFunction.
* fixed: ensure correct rotation and positioning of icons along all segments of LineStrings
* fixed: Resolved alpha blending issues for colors defined as RGBA arrays.
### core
* added: Add [LayerStyle.zLayer](https://heremaps.github.io/xyz-maps/docs/interfaces/core.layerstyle.html#zlayer) for fallback drawing order control when zLayer is not explicitly defined on the style.
* added: Introduce Layer methods [setVisible(visible: boolean)](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#setvisible) and [isVisible()](https://heremaps.github.io/xyz-maps/docs/classes/core.tilelayer.html#isvisible) for controlling and querying layer visibility directly, complementing [LayerOptions.visible](https://heremaps.github.io/xyz-maps/docs/interfaces/core.tilelayeroptions.html#visible) without modifying layer presence on the display.
* fixed: resolve packaging issue causing excessive artifact size

## 0.37.0 (2024-5-10)
### display
* fixed: In cases where a particularly large dataset is frequently updated, it could lead to the display of outdated data.
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.37.0",
"version": "0.38.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.37.0",
"@here/xyz-maps-core": "^0.37.0",
"@here/xyz-maps-display": "^0.37.0"
"@here/xyz-maps-common": "^0.38.0",
"@here/xyz-maps-core": "^0.38.0",
"@here/xyz-maps-display": "^0.38.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.37.0",
"version": "0.38.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.37.0",
"@here/xyz-maps-core": "^0.37.0",
"@here/xyz-maps-display": "^0.37.0",
"@here/xyz-maps-editor": "^0.37.0",
"@here/xyz-maps-common": "^0.38.0",
"@here/xyz-maps-core": "^0.38.0",
"@here/xyz-maps-display": "^0.38.0",
"@here/xyz-maps-editor": "^0.38.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.37.0",
"version": "0.38.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.37.0",
"version": "0.38.0",
"description": "Development utilities used to build XYZ Maps modules",
"author": {
"name": "HERE Europe B.V.",
Expand Down

0 comments on commit 1e098d8

Please sign in to comment.