Skip to content

Commit

Permalink
v0.31.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Deubler <[email protected]>
  • Loading branch information
TerminalTim committed Aug 23, 2022
1 parent 03213ba commit a2892d0
Show file tree
Hide file tree
Showing 15 changed files with 103 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '16'
registry-url: 'https://registry.npmjs.org'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.31.0 (2022-8-23)
### core
* added: The ImageProvider can now be configured to display an [errorImage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#errorimage) for failing tile requests.
* added: Introduced remote [preprocessor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#preprocessor) to enable custom data processing for remote image sources.
* added: The credentials of IMLProvider and SpaceProvider can now be updated at any time via [provider.config({credentials: {...}})](https://heremaps.github.io/xyz-maps/docs/classes/core.imlprovider.html#config)
### editor
* improved: The [snapTolerance](https://heremaps.github.io/xyz-maps/docs/interfaces/editor.editoroptions.html#snaptolerance) option is now taken into account for crossing detection.
* fixed: Navlinks may still have been highlighted even though the intersection was no longer selected.
* fixed: Altitude precision is reduced when restoring Navlink Features through a local undo operation.
### display
* improved: Handling of missing image tile data has been improved.
* added: The camera (position) of the current view can now be retrieved using [map.getCamera()](https://heremaps.github.io/xyz-maps/docs/classes/display.map.html#getcamera)
* fixed: Visualizing point styles on 3D polylines fails when used in combination with collision detection.
* fixed: 2D roads disappear when the map is pitch or rotated
* fixed: Text placed on a polyline might be upside down

## 0.30.0 (2022-8-5)
### core
* added: The ImageProvider supports images contained in a 404 status response.
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.30.0"
"version": "0.31.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.30.0",
"version": "0.31.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 @@ -59,4 +59,4 @@
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}
}
16 changes: 16 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.31.0 (2022-8-23)
### core
* added: The ImageProvider can now be configured to display an [errorImage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#errorimage) for failing tile requests.
* added: Introduced remote [preprocessor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#preprocessor) to enable custom data processing for remote image sources.
* added: The credentials of IMLProvider and SpaceProvider can now be updated at any time via [provider.config({credentials: {...}})](https://heremaps.github.io/xyz-maps/docs/classes/core.imlprovider.html#config)
### editor
* improved: The [snapTolerance](https://heremaps.github.io/xyz-maps/docs/interfaces/editor.editoroptions.html#snaptolerance) option is now taken into account for crossing detection.
* fixed: Navlinks may still have been highlighted even though the intersection was no longer selected.
* fixed: Altitude precision is reduced when restoring Navlink Features through a local undo operation.
### display
* improved: Handling of missing image tile data has been improved.
* added: The camera (position) of the current view can now be retrieved using [map.getCamera()](https://heremaps.github.io/xyz-maps/docs/classes/display.map.html#getcamera)
* fixed: Visualizing point styles on 3D polylines fails when used in combination with collision detection.
* fixed: 2D roads disappear when the map is pitch or rotated
* fixed: Text placed on a polyline might be upside down

## 0.30.0 (2022-8-5)
### core
* added: The ImageProvider supports images contained in a 404 status response.
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.30.0",
"version": "0.31.0",
"description": "Commonly used libraries of XYZ Maps.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
16 changes: 16 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.31.0 (2022-8-23)
### core
* added: The ImageProvider can now be configured to display an [errorImage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#errorimage) for failing tile requests.
* added: Introduced remote [preprocessor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#preprocessor) to enable custom data processing for remote image sources.
* added: The credentials of IMLProvider and SpaceProvider can now be updated at any time via [provider.config({credentials: {...}})](https://heremaps.github.io/xyz-maps/docs/classes/core.imlprovider.html#config)
### editor
* improved: The [snapTolerance](https://heremaps.github.io/xyz-maps/docs/interfaces/editor.editoroptions.html#snaptolerance) option is now taken into account for crossing detection.
* fixed: Navlinks may still have been highlighted even though the intersection was no longer selected.
* fixed: Altitude precision is reduced when restoring Navlink Features through a local undo operation.
### display
* improved: Handling of missing image tile data has been improved.
* added: The camera (position) of the current view can now be retrieved using [map.getCamera()](https://heremaps.github.io/xyz-maps/docs/classes/display.map.html#getcamera)
* fixed: Visualizing point styles on 3D polylines fails when used in combination with collision detection.
* fixed: 2D roads disappear when the map is pitch or rotated
* fixed: Text placed on a polyline might be upside down

## 0.30.0 (2022-8-5)
### core
* added: The ImageProvider supports images contained in a 404 status response.
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.30.0",
"version": "0.31.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.30.0"
"@here/xyz-maps-common": "^0.31.0"
},
"devDependencies": {
"@mapbox/vector-tile": "^1.3.1",
Expand Down
16 changes: 16 additions & 0 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.31.0 (2022-8-23)
### core
* added: The ImageProvider can now be configured to display an [errorImage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#errorimage) for failing tile requests.
* added: Introduced remote [preprocessor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#preprocessor) to enable custom data processing for remote image sources.
* added: The credentials of IMLProvider and SpaceProvider can now be updated at any time via [provider.config({credentials: {...}})](https://heremaps.github.io/xyz-maps/docs/classes/core.imlprovider.html#config)
### editor
* improved: The [snapTolerance](https://heremaps.github.io/xyz-maps/docs/interfaces/editor.editoroptions.html#snaptolerance) option is now taken into account for crossing detection.
* fixed: Navlinks may still have been highlighted even though the intersection was no longer selected.
* fixed: Altitude precision is reduced when restoring Navlink Features through a local undo operation.
### display
* improved: Handling of missing image tile data has been improved.
* added: The camera (position) of the current view can now be retrieved using [map.getCamera()](https://heremaps.github.io/xyz-maps/docs/classes/display.map.html#getcamera)
* fixed: Visualizing point styles on 3D polylines fails when used in combination with collision detection.
* fixed: 2D roads disappear when the map is pitch or rotated
* fixed: Text placed on a polyline might be upside down

## 0.30.0 (2022-8-5)
### core
* added: The ImageProvider supports images contained in a 404 status response.
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.30.0",
"version": "0.31.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.30.0",
"@here/xyz-maps-core": "^0.30.0"
"@here/xyz-maps-common": "^0.31.0",
"@here/xyz-maps-core": "^0.31.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
Expand Down
16 changes: 16 additions & 0 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.31.0 (2022-8-23)
### core
* added: The ImageProvider can now be configured to display an [errorImage](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#errorimage) for failing tile requests.
* added: Introduced remote [preprocessor](https://heremaps.github.io/xyz-maps/docs/interfaces/core.imageprovideroptions.html#preprocessor) to enable custom data processing for remote image sources.
* added: The credentials of IMLProvider and SpaceProvider can now be updated at any time via [provider.config({credentials: {...}})](https://heremaps.github.io/xyz-maps/docs/classes/core.imlprovider.html#config)
### editor
* improved: The [snapTolerance](https://heremaps.github.io/xyz-maps/docs/interfaces/editor.editoroptions.html#snaptolerance) option is now taken into account for crossing detection.
* fixed: Navlinks may still have been highlighted even though the intersection was no longer selected.
* fixed: Altitude precision is reduced when restoring Navlink Features through a local undo operation.
### display
* improved: Handling of missing image tile data has been improved.
* added: The camera (position) of the current view can now be retrieved using [map.getCamera()](https://heremaps.github.io/xyz-maps/docs/classes/display.map.html#getcamera)
* fixed: Visualizing point styles on 3D polylines fails when used in combination with collision detection.
* fixed: 2D roads disappear when the map is pitch or rotated
* fixed: Text placed on a polyline might be upside down

## 0.30.0 (2022-8-5)
### core
* added: The ImageProvider supports images contained in a 404 status response.
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.30.0",
"version": "0.31.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.30.0",
"@here/xyz-maps-core": "^0.30.0",
"@here/xyz-maps-display": "^0.30.0"
"@here/xyz-maps-common": "^0.31.0",
"@here/xyz-maps-core": "^0.31.0",
"@here/xyz-maps-display": "^0.31.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.4",
Expand Down
12 changes: 6 additions & 6 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.30.0",
"version": "0.31.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.30.0",
"@here/xyz-maps-core": "^0.30.0",
"@here/xyz-maps-display": "^0.30.0",
"@here/xyz-maps-editor": "^0.30.0",
"@here/xyz-maps-common": "^0.31.0",
"@here/xyz-maps-core": "^0.31.0",
"@here/xyz-maps-display": "^0.31.0",
"@here/xyz-maps-editor": "^0.31.0",
"@monaco-editor/react": "^4.4.5",
"monaco-editor": "^0.34.0",
"react": "^18.2.0",
Expand All @@ -36,12 +36,12 @@
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.4",
"@rollup/plugin-virtual": "^2.1.0",
"postcss": "^8.4.16",
"rollup": "^2.78.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.54.5",
"postcss": "^8.4.16",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
Expand Down
4 changes: 2 additions & 2 deletions 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.30.0",
"version": "0.31.0",
"description": "Tests for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down Expand Up @@ -37,8 +37,8 @@
"karma-mocha": "^2.0.1",
"mkdirp": "~1.0.4",
"mocha": "~10.0.0",
"rimraf": "~3.0.2",
"request": "^2.88.2",
"rimraf": "~3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
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.30.0",
"version": "0.31.0",
"description": "Development utilities used to build XYZ Maps modules",
"author": {
"name": "HERE Europe B.V.",
Expand Down

0 comments on commit a2892d0

Please sign in to comment.