Skip to content

Commit

Permalink
v0.27.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Deubler <[email protected]>
  • Loading branch information
TerminalTim committed Dec 15, 2021
1 parent 3be404f commit ebe6bd8
Show file tree
Hide file tree
Showing 14 changed files with 94 additions and 19 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 0.27.0 (2021-12-15)
### editor
* added: Editing of Line Features with "MultiLineString" geometry is now supported.
### display
* improved: Line-joins of offset polylines now support more acute angles.
* added: offset Lines with ring geometries are now displayed as closed.
* added: Styles of type "Circle", "Rect", "Text" and "Image" can now be placed at the centroid/geometric center of polygon geometry. Usage: [Style.anchor="Centroid"](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#anchor)
* added: The triggering of PointerEvents now takes into account the [Style.offset](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#offset) and empty space between multiple offset lines
* fixed: In rare cases, lines close to tile-edges can become fragmented.
* fixed: PointerEvents for Lines with strokeWidth defined in meter were not triggered correctly if the map is zoomed in very close (z20+).
* fixed: Curves were displayed incorrectly in rare cases.
### general
* improved: several typescript declaration related fixes and improvements.
* fixed: possible dependency resolution issues when using webpack/rollup

## 0.26.0 (2021-10-7)
### editor
* added: Snap coordinates to Navlink geometry nearby can now be controlled by using [navlink.behavior(...)](https://heremaps.github.io/xyz-maps/docs/classes/editor.navlink.html#behavior)
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.26.0"
"version": "0.27.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.26.0",
"version": "0.27.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
15 changes: 15 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 0.27.0 (2021-12-15)
### editor
* added: Editing of Line Features with "MultiLineString" geometry is now supported.
### display
* improved: Line-joins of offset polylines now support more acute angles.
* added: offset Lines with ring geometries are now displayed as closed.
* added: Styles of type "Circle", "Rect", "Text" and "Image" can now be placed at the centroid/geometric center of polygon geometry. Usage: [Style.anchor="Centroid"](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#anchor)
* added: The triggering of PointerEvents now takes into account the [Style.offset](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#offset) and empty space between multiple offset lines
* fixed: In rare cases, lines close to tile-edges can become fragmented.
* fixed: PointerEvents for Lines with strokeWidth defined in meter were not triggered correctly if the map is zoomed in very close (z20+).
* fixed: Curves were displayed incorrectly in rare cases.
### general
* improved: several typescript declaration related fixes and improvements.
* fixed: possible dependency resolution issues when using webpack/rollup

## 0.26.0 (2021-10-7)
### editor
* added: Snap coordinates to Navlink geometry nearby can now be controlled by using [navlink.behavior(...)](https://heremaps.github.io/xyz-maps/docs/classes/editor.navlink.html#behavior)
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.26.0",
"version": "0.27.0",
"description": "Commonly used libraries of XYZ Maps.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
15 changes: 15 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 0.27.0 (2021-12-15)
### editor
* added: Editing of Line Features with "MultiLineString" geometry is now supported.
### display
* improved: Line-joins of offset polylines now support more acute angles.
* added: offset Lines with ring geometries are now displayed as closed.
* added: Styles of type "Circle", "Rect", "Text" and "Image" can now be placed at the centroid/geometric center of polygon geometry. Usage: [Style.anchor="Centroid"](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#anchor)
* added: The triggering of PointerEvents now takes into account the [Style.offset](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#offset) and empty space between multiple offset lines
* fixed: In rare cases, lines close to tile-edges can become fragmented.
* fixed: PointerEvents for Lines with strokeWidth defined in meter were not triggered correctly if the map is zoomed in very close (z20+).
* fixed: Curves were displayed incorrectly in rare cases.
### general
* improved: several typescript declaration related fixes and improvements.
* fixed: possible dependency resolution issues when using webpack/rollup

## 0.26.0 (2021-10-7)
### editor
* added: Snap coordinates to Navlink geometry nearby can now be controlled by using [navlink.behavior(...)](https://heremaps.github.io/xyz-maps/docs/classes/editor.navlink.html#behavior)
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.26.0",
"version": "0.27.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.26.0"
"@here/xyz-maps-common": "^0.27.0"
},
"devDependencies": {
"@mapbox/vector-tile": "^1.3.1",
Expand Down
15 changes: 15 additions & 0 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 0.27.0 (2021-12-15)
### editor
* added: Editing of Line Features with "MultiLineString" geometry is now supported.
### display
* improved: Line-joins of offset polylines now support more acute angles.
* added: offset Lines with ring geometries are now displayed as closed.
* added: Styles of type "Circle", "Rect", "Text" and "Image" can now be placed at the centroid/geometric center of polygon geometry. Usage: [Style.anchor="Centroid"](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#anchor)
* added: The triggering of PointerEvents now takes into account the [Style.offset](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#offset) and empty space between multiple offset lines
* fixed: In rare cases, lines close to tile-edges can become fragmented.
* fixed: PointerEvents for Lines with strokeWidth defined in meter were not triggered correctly if the map is zoomed in very close (z20+).
* fixed: Curves were displayed incorrectly in rare cases.
### general
* improved: several typescript declaration related fixes and improvements.
* fixed: possible dependency resolution issues when using webpack/rollup

## 0.26.0 (2021-10-7)
### editor
* added: Snap coordinates to Navlink geometry nearby can now be controlled by using [navlink.behavior(...)](https://heremaps.github.io/xyz-maps/docs/classes/editor.navlink.html#behavior)
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.26.0",
"version": "0.27.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.26.0",
"@here/xyz-maps-core": "0.26.0"
"@here/xyz-maps-common": "^0.27.0",
"@here/xyz-maps-core": "^0.27.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
Expand Down
15 changes: 15 additions & 0 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 0.27.0 (2021-12-15)
### editor
* added: Editing of Line Features with "MultiLineString" geometry is now supported.
### display
* improved: Line-joins of offset polylines now support more acute angles.
* added: offset Lines with ring geometries are now displayed as closed.
* added: Styles of type "Circle", "Rect", "Text" and "Image" can now be placed at the centroid/geometric center of polygon geometry. Usage: [Style.anchor="Centroid"](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#anchor)
* added: The triggering of PointerEvents now takes into account the [Style.offset](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#offset) and empty space between multiple offset lines
* fixed: In rare cases, lines close to tile-edges can become fragmented.
* fixed: PointerEvents for Lines with strokeWidth defined in meter were not triggered correctly if the map is zoomed in very close (z20+).
* fixed: Curves were displayed incorrectly in rare cases.
### general
* improved: several typescript declaration related fixes and improvements.
* fixed: possible dependency resolution issues when using webpack/rollup

## 0.26.0 (2021-10-7)
### editor
* added: Snap coordinates to Navlink geometry nearby can now be controlled by using [navlink.behavior(...)](https://heremaps.github.io/xyz-maps/docs/classes/editor.navlink.html#behavior)
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.26.0",
"version": "0.27.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.26.0",
"@here/xyz-maps-core": "0.26.0",
"@here/xyz-maps-display": "0.26.0"
"@here/xyz-maps-common": "^0.27.0",
"@here/xyz-maps-core": "^0.27.0",
"@here/xyz-maps-display": "^0.27.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
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.26.0",
"version": "0.27.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.26.0",
"@here/xyz-maps-core": "0.26.0",
"@here/xyz-maps-display": "0.26.0",
"@here/xyz-maps-editor": "0.26.0",
"@here/xyz-maps-common": "^0.27.0",
"@here/xyz-maps-core": "^0.27.0",
"@here/xyz-maps-display": "^0.27.0",
"@here/xyz-maps-editor": "^0.27.0",
"@monaco-editor/react": "^4.2.2",
"monaco-editor": "^0.27.0",
"react": "^17.0.2",
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.26.0",
"version": "0.27.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.26.0",
"version": "0.27.0",
"description": "Development utilities used to build XYZ Maps modules",
"author": {
"name": "HERE Europe B.V.",
Expand Down

0 comments on commit ebe6bd8

Please sign in to comment.