Skip to content

Commit 68ce971

Browse files
authored
v5.1.0 (#1441)
1 parent 5e1e87a commit 68ce971

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tileserver-gl changelog
22

3-
## 5.1.0-pre.1
3+
## 5.1.0
44
* Update recommended node to v22 + Update docker images to use node 22 (https://github.com/maptiler/tileserver-gl/pull/1438) by @acalcutt
55
* Upgrade Express to v5 + Canvas to v3 + code cleanup (https://github.com/maptiler/tileserver-gl/pull/1429) by @acalcutt
66
* 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

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,26 +43,26 @@ An alternative to npm to start the packed software easier is to install [Docker]
4343
Example using a mbtiles file
4444
```bash
4545
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
4747
[in your browser, visit http://[server ip]:8080]
4848
```
4949

5050
Example using a config.json + style + mbtiles file
5151
```bash
5252
wget https://github.com/maptiler/tileserver-gl/releases/download/v1.3.0/test_data.zip
5353
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
5555
[in your browser, visit http://[server ip]:8080]
5656
```
5757

5858
Example using a different path
5959
```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
6161
```
6262
replace '/your/local/config/path' with the path to your config file
6363

6464

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.
6666

6767
## Getting Started with Linux cli
6868

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tileserver-gl",
3-
"version": "5.1.0-pre.1",
3+
"version": "5.1.0",
44
"description": "Map tile server for JSON GL styles - vector and server side generated raster tiles",
55
"main": "src/main.js",
66
"bin": "src/main.js",

0 commit comments

Comments
 (0)