tileserver-gl 5.1.0-pre.0 → 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.
@@ -99,7 +99,7 @@ jobs:
99
99
  - name: Publish to NPM
100
100
  run: |
101
101
  npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
102
- npm publish --access public --tag ${{ needs.release-check.outputs.prerelease == 'true' && 'next' || 'latest' }}
102
+ npm publish --access public --tag ${{ steps.prepare_release.outputs.prerelease == 'true' && 'next' || 'latest' }}
103
103
  env:
104
104
  NPM_TOKEN: ${{ github.event.inputs.npm_token }}
105
105
 
@@ -123,7 +123,7 @@ jobs:
123
123
  context: .
124
124
  push: true
125
125
  tags: |
126
- maptiler/tileserver-gl:${{ needs.release-check.outputs.prerelease == 'true' && 'next' || 'latest' }},
126
+ maptiler/tileserver-gl:${{ steps.prepare_release.outputs.prerelease == 'true' && 'next' || 'latest' }},
127
127
  maptiler/tileserver-gl:v${{ env.PACKAGE_VERSION }}
128
128
  platforms: linux/arm64,linux/amd64
129
129
  cache-from: type=gha
@@ -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
@@ -157,7 +157,7 @@ jobs:
157
157
  working-directory: ./light
158
158
  run: |
159
159
  npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
160
- npm publish --access public --tag ${{ needs.release-check.outputs.prerelease == 'true' && 'next' || 'latest' }}
160
+ npm publish --access public --tag ${{ steps.prepare_release.outputs.prerelease == 'true' && 'next' || 'latest' }}
161
161
  env:
162
162
  NPM_TOKEN: ${{ github.event.inputs.npm_token }}
163
163
 
@@ -168,7 +168,7 @@ jobs:
168
168
  file: ./light/Dockerfile
169
169
  push: true
170
170
  tags: |
171
- maptiler/tileserver-gl-light:${{ needs.release-check.outputs.prerelease == 'true' && 'next' || 'latest' }},
171
+ maptiler/tileserver-gl-light:${{ steps.prepare_release.outputs.prerelease == 'true' && 'next' || 'latest' }},
172
172
  maptiler/tileserver-gl-light:v${{ env.PACKAGE_VERSION }}
173
173
  platforms: linux/arm64,linux/amd64
174
174
  cache-from: type=gha
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # tileserver-gl changelog
2
2
 
3
- ## 5.1.0-pre.0
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.0",
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",