From bfc6d2009a18ae22ae593a5ac20fc5ce8c224c55 Mon Sep 17 00:00:00 2001 From: acalcutt Date: Sat, 8 Feb 2025 22:16:20 -0500 Subject: [PATCH 1/3] Update .gitignore --- .gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitignore b/.gitignore index 0af34c1ad..ffbb0a5fd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,15 @@ docs/_build +public/resources/leaflet-hash.js +public/resources/leaflet.css +public/resources/leaflet.js +public/resources/leaflet.js.map +public/resources/mapbox-gl-rtl-text.js +public/resources/maplibre-gl-inspect.css +public/resources/maplibre-gl-inspect.js +public/resources/maplibre-gl-inspect.js.map +public/resources/maplibre-gl.css +public/resources/maplibre-gl.js +public/resources/maplibre-gl.js.map node_modules test_data test_data.zip From 58773783be449c92f2140df0d5b36f135becd542 Mon Sep 17 00:00:00 2001 From: acalcutt Date: Sat, 8 Feb 2025 22:20:27 -0500 Subject: [PATCH 2/3] v5.2.0-pre.0 --- CHANGELOG.md | 5 +++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a1e4e58b..810965ae0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # tileserver-gl changelog +## 5.2.0-pre.0 +* Use npm packages for public/resources (https://github.com/maptiler/tileserver-gl/pull/1427) by @okimiko +* use ttf files of googlefonts/opensans (https://github.com/maptiler/tileserver-gl/pull/1447) by @okimiko +* fix memory leak on SIGHUP (https://github.com/maptiler/tileserver-gl/pull/1455) by @okimiko + ## 5.1.3 * Fix SIGHUP (broken since 5.1.x) (https://github.com/maptiler/tileserver-gl/pull/1452) by @okimiko diff --git a/package-lock.json b/package-lock.json index 82f0bad57..45667e387 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tileserver-gl", - "version": "5.1.3", + "version": "5.2.0-pre.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tileserver-gl", - "version": "5.1.3", + "version": "5.2.0-pre.0", "license": "BSD-2-Clause", "dependencies": { "@jsse/pbfont": "^0.2.2", diff --git a/package.json b/package.json index 41a9a5179..b8d16c2fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tileserver-gl", - "version": "5.1.3", + "version": "5.2.0-pre.0", "description": "Map tile server for JSON GL styles - vector and server side generated raster tiles", "main": "src/main.js", "bin": "src/main.js", From 5466d3b4d65e3e829116e6111246638253d23e16 Mon Sep 17 00:00:00 2001 From: acalcutt Date: Sat, 8 Feb 2025 22:44:44 -0500 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 810965ae0..e00c22390 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * Use npm packages for public/resources (https://github.com/maptiler/tileserver-gl/pull/1427) by @okimiko * use ttf files of googlefonts/opensans (https://github.com/maptiler/tileserver-gl/pull/1447) by @okimiko * fix memory leak on SIGHUP (https://github.com/maptiler/tileserver-gl/pull/1455) by @okimiko +* Limit Elevation Lat/Long Output Length (https://github.com/maptiler/tileserver-gl/pull/1457) by @okimiko ## 5.1.3 * Fix SIGHUP (broken since 5.1.x) (https://github.com/maptiler/tileserver-gl/pull/1452) by @okimiko