tileserver-gl 5.1.0-pre.1 → 5.1.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.
@@ -144,7 +144,7 @@ jobs:
144
144
  bodyFile: changelog_for_version.md
145
145
  allowUpdates: true
146
146
  draft: false
147
- prerelease: ${{ env.PRERELEASE }}
147
+ prerelease: ${{ steps.prepare_release.outputs.prerelease }}
148
148
 
149
149
  - name: Create Tileserver Light Directory
150
150
  run: node publish.js --no-publish
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # tileserver-gl changelog
2
2
 
3
- ## 5.1.0-pre.1
3
+ ## 5.1.0
4
4
  * Update recommended node to v22 + Update docker images to use node 22 (https://github.com/maptiler/tileserver-gl/pull/1438) by @acalcutt
5
5
  * Upgrade Express to v5 + Canvas to v3 + code cleanup (https://github.com/maptiler/tileserver-gl/pull/1429) by @acalcutt
6
6
  * Terrain Preview and simple Elevation Query (https://github.com/maptiler/tileserver-gl/pull/1425 and https://github.com/maptiler/tileserver-gl/pull/1432) by @okimiko
package/README.md CHANGED
@@ -43,7 +43,7 @@ An alternative to npm to start the packed software easier is to install [Docker]
43
43
  Example using a mbtiles file
44
44
  ```bash
45
45
  wget https://github.com/maptiler/tileserver-gl/releases/download/v1.3.0/zurich_switzerland.mbtiles
46
- docker run --rm -it -v $(pwd):/data -p 8080:8080 maptiler/tileserver-gl --file zurich_switzerland.mbtiles
46
+ docker run --rm -it -v $(pwd):/data -p 8080:8080 maptiler/tileserver-gl:latest --file zurich_switzerland.mbtiles
47
47
  [in your browser, visit http://[server ip]:8080]
48
48
  ```
49
49
 
@@ -51,18 +51,18 @@ Example using a config.json + style + mbtiles file
51
51
  ```bash
52
52
  wget https://github.com/maptiler/tileserver-gl/releases/download/v1.3.0/test_data.zip
53
53
  unzip test_data.zip
54
- docker run --rm -it -v $(pwd):/data -p 8080:8080 maptiler/tileserver-gl
54
+ docker run --rm -it -v $(pwd):/data -p 8080:8080 maptiler/tileserver-gl:latest
55
55
  [in your browser, visit http://[server ip]:8080]
56
56
  ```
57
57
 
58
58
  Example using a different path
59
59
  ```bash
60
- docker run --rm -it -v /your/local/config/path:/data -p 8080:8080 maptiler/tileserver-gl
60
+ docker run --rm -it -v /your/local/config/path:/data -p 8080:8080 maptiler/tileserver-gl:latest
61
61
  ```
62
62
  replace '/your/local/config/path' with the path to your config file
63
63
 
64
64
 
65
- Alternatively, you can use the `maptiler/tileserver-gl-light` docker image instead, which is pure javascript, does not have any native dependencies, and can run anywhere, but does not contain rasterization on the server side made with Maplibre GL Native.
65
+ Alternatively, you can use the `maptiler/tileserver-gl-light:latest` docker image instead, which is pure javascript, does not have any native dependencies, and can run anywhere, but does not contain rasterization on the server side made with Maplibre GL Native.
66
66
 
67
67
  ## Getting Started with Linux cli
68
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tileserver-gl",
3
- "version": "5.1.0-pre.1",
3
+ "version": "5.1.0",
4
4
  "description": "Map tile server for JSON GL styles - vector and server side generated raster tiles",
5
5
  "main": "src/main.js",
6
6
  "bin": "src/main.js",