tileserver-gl 5.5.0 → 5.6.0-pre.1
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.
- package/CHANGELOG.md +7 -0
- package/docs/usage.rst +1 -0
- package/package.json +15 -15
- package/public/resources/maplibre-gl.js +4 -4
- package/public/resources/maplibre-gl.js.map +1 -1
- package/src/main.js +5 -0
- package/src/serve_data.js +41 -21
- package/src/serve_style.js +21 -2
- package/src/server.js +45 -1
- package/src/utils.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
### 🐞 Bug fixes
|
|
8
8
|
- _...Add new stuff here..._
|
|
9
9
|
|
|
10
|
+
## 5.6.0-pre.1
|
|
11
|
+
### ✨ Features and improvements
|
|
12
|
+
- feat: Add ignore-missing-files cli option to avoid crashing at startup ([#1896](https://github.com/maptiler/tileserver-gl/pull/1896)) (by [andrewlaguna824](https://github.com/andrewlaguna824))
|
|
13
|
+
|
|
14
|
+
### 🐞 Bug fixes
|
|
15
|
+
- fix: correctly handle public url in tileJSON response ([#1963](https://github.com/maptiler/tileserver-gl/pull/1963)) (by [andrewlaguna824](https://github.com/andrewlaguna824))
|
|
16
|
+
|
|
10
17
|
## 5.5.0
|
|
11
18
|
- Add S3 support for PMTiles with multiple AWS credential profiles (https://github.com/maptiler/tileserver-gl/pull/1779) by @acalcutt
|
|
12
19
|
- Create .aws directory passthrough folder in Dockerfile (https://github.com/maptiler/tileserver-gl/pull/1784) by @acalcutt
|
package/docs/usage.rst
CHANGED
|
@@ -20,6 +20,7 @@ Getting started
|
|
|
20
20
|
-C|--no-cors Disable Cross-origin resource sharing headers
|
|
21
21
|
-u|--public_url <url> Enable exposing the server on subpaths, not necessarily the root of the domain
|
|
22
22
|
--fetch-timeout <ms> Timeout in milliseconds for fetching remote tiles (default: 15000)
|
|
23
|
+
--ignore-missing-files Do not exit when referenced data files or remote sources are missing at startup; log a warning and continue running (useful when styles reference optional or not-yet-available sources)
|
|
23
24
|
-V, --verbose [level] More verbose output (level 1-3)
|
|
24
25
|
-V, --verbose, -V 1, or --verbose 1: Important operations
|
|
25
26
|
-V 2 or --verbose 2: Detailed operations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tileserver-gl",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.6.0-pre.1",
|
|
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": {
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"docker": "docker build . && docker run --rm -i -p 8080:8080 $(docker build -q .)"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@aws-sdk/client-s3": "^3.
|
|
41
|
-
"@jsse/pbfont": "^0.3.
|
|
40
|
+
"@aws-sdk/client-s3": "^3.980.0",
|
|
41
|
+
"@jsse/pbfont": "^0.3.2",
|
|
42
42
|
"@mapbox/mapbox-gl-rtl-text": "0.3.0",
|
|
43
43
|
"@mapbox/mbtiles": "0.12.1",
|
|
44
44
|
"@mapbox/polyline": "^1.2.1",
|
|
@@ -49,19 +49,19 @@
|
|
|
49
49
|
"@maplibre/maplibre-gl-style-spec": "24.4.1",
|
|
50
50
|
"@sindresorhus/fnv1a": "3.1.0",
|
|
51
51
|
"advanced-pool": "0.3.3",
|
|
52
|
-
"canvas": "3.2.
|
|
52
|
+
"canvas": "3.2.1",
|
|
53
53
|
"chokidar": "5.0.0",
|
|
54
54
|
"clone": "2.1.2",
|
|
55
55
|
"color": "5.0.3",
|
|
56
|
-
"commander": "14.0.
|
|
56
|
+
"commander": "14.0.3",
|
|
57
57
|
"copyfiles": "2.4.1",
|
|
58
|
-
"cors": "2.8.
|
|
58
|
+
"cors": "2.8.6",
|
|
59
59
|
"express": "5.2.1",
|
|
60
60
|
"handlebars": "4.7.8",
|
|
61
61
|
"http-shutdown": "1.2.2",
|
|
62
62
|
"leaflet": "1.9.4",
|
|
63
63
|
"leaflet-hash": "0.2.1",
|
|
64
|
-
"maplibre-gl": "5.
|
|
64
|
+
"maplibre-gl": "5.17.0",
|
|
65
65
|
"morgan": "1.10.1",
|
|
66
66
|
"pbf": "4.0.1",
|
|
67
67
|
"pmtiles": "4.3.2",
|
|
@@ -72,24 +72,24 @@
|
|
|
72
72
|
"tileserver-gl-styles": "2.0.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@commitlint/cli": "^20.
|
|
76
|
-
"@commitlint/config-conventional": "^20.
|
|
77
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
78
|
-
"@typescript-eslint/parser": "^8.
|
|
75
|
+
"@commitlint/cli": "^20.4.0",
|
|
76
|
+
"@commitlint/config-conventional": "^20.4.0",
|
|
77
|
+
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
78
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
79
79
|
"chai": "6.2.2",
|
|
80
80
|
"cross-env": "^10.1.0",
|
|
81
81
|
"eslint": "^9.39.2",
|
|
82
82
|
"eslint-config-prettier": "^10.1.8",
|
|
83
|
-
"eslint-plugin-jsdoc": "^
|
|
84
|
-
"eslint-plugin-prettier": "^5.5.
|
|
83
|
+
"eslint-plugin-jsdoc": "^62.5.0",
|
|
84
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
85
85
|
"eslint-plugin-security": "^3.0.1",
|
|
86
86
|
"lint-staged": "^16.2.7",
|
|
87
87
|
"mocha": "^11.7.5",
|
|
88
88
|
"node-addon-api": "^8",
|
|
89
89
|
"pixelmatch": "^7.1.0",
|
|
90
|
-
"prettier": "^3.
|
|
90
|
+
"prettier": "^3.8.1",
|
|
91
91
|
"should": "^13.2.3",
|
|
92
|
-
"supertest": "^7.
|
|
92
|
+
"supertest": "^7.2.2",
|
|
93
93
|
"yaml-lint": "^1.7.0"
|
|
94
94
|
},
|
|
95
95
|
"keywords": [
|