geojs 1.5.0 → 1.6.3

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.
Files changed (49) hide show
  1. package/.github/workflows/main.yml +4 -4
  2. package/.nvmrc +1 -0
  3. package/CHANGELOG.md +26 -5
  4. package/geo.js +82956 -86701
  5. package/geo.lean.js +70006 -64329
  6. package/geo.lean.min.js +28 -41
  7. package/geo.min.js +30 -47
  8. package/package.json +63 -79
  9. package/src/annotationLayer.js +20 -16
  10. package/src/canvas/heatmapFeature.js +2 -2
  11. package/src/choroplethFeature.js +3 -3
  12. package/src/feature.js +4 -4
  13. package/src/geojsonReader.js +5 -4
  14. package/src/index.js +1 -1
  15. package/src/isolineFeature.js +4 -4
  16. package/src/lineFeature.js +4 -4
  17. package/src/map.js +2 -2
  18. package/src/mapInteractor.js +3 -0
  19. package/src/markerFeature.js +8 -8
  20. package/src/object.js +1 -3
  21. package/src/osmLayer.js +5 -3
  22. package/src/pixelmapFeature.js +1 -1
  23. package/src/pointFeature.js +1 -1
  24. package/src/polygonFeature.js +4 -4
  25. package/src/registry.js +1 -1
  26. package/src/svg/svgRenderer.js +3 -0
  27. package/src/svg/vectorFeature.js +1 -1
  28. package/src/tile.js +1 -1
  29. package/src/tileLayer.js +4 -4
  30. package/src/trackFeature.js +12 -12
  31. package/src/transform.js +11 -10
  32. package/src/ui/colorLegendWidget.js +6 -6
  33. package/src/ui/colorLegendWidget.styl +1 -1
  34. package/src/ui/legendWidget.js +3 -3
  35. package/src/ui/sliderWidget.js +4 -4
  36. package/src/util/common.js +9 -8
  37. package/src/util/mockVGL.js +2 -2
  38. package/src/util/throttle.js +3 -3
  39. package/src/vendor.js +0 -2
  40. package/src/vtkjs/pointFeature.js +1 -1
  41. package/src/vtkjs/vtkjsRenderer.js +3 -0
  42. package/src/webgl/layer.js +1 -1
  43. package/src/webgl/markerFeature.js +4 -4
  44. package/src/webgl/meshColored.js +3 -3
  45. package/src/webgl/pointFeature.js +11 -11
  46. package/src/webgl/polygonFeature.js +3 -3
  47. package/src/webgl/quadFeatureColor.vert +0 -1
  48. package/src/webgl/webglRenderer.js +1 -2
  49. package/src/polyfills.js +0 -4
@@ -18,14 +18,14 @@ jobs:
18
18
  - uses: actions/checkout@v2
19
19
  - uses: actions/setup-node@v2
20
20
  with:
21
- node-version: 14.x
21
+ node-version: '14'
22
22
  - uses: browser-actions/setup-firefox@latest
23
- - run: sudo apt-get install --yes --no-install-recommends cpio optipng
23
+ - run: sudo apt-get install --yes --no-install-recommends optipng
24
24
  - run: sudo apt-get remove --yes fonts-lato
25
25
  - run: fc-list
26
26
  - run: firefox --version
27
27
  - run: google-chrome --version
28
- - run: npm install
28
+ - run: npm ci
29
29
  - run: npm run setup-website
30
30
  - run: npm run ci-xvfb
31
31
  - run: npm run ci-build-website
@@ -86,7 +86,7 @@ jobs:
86
86
  - uses: actions/checkout@v2
87
87
  - uses: actions/setup-node@v2
88
88
  with:
89
- node-version: 15.x
89
+ node-version: '16'
90
90
  - run: npm ci
91
91
  - name: Import artifacts
92
92
  uses: actions/download-artifact@v2
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ v14.18.3
package/CHANGELOG.md CHANGED
@@ -1,16 +1,37 @@
1
1
  # GeoJS Change Log
2
2
 
3
- # [1.5.0](https://github.com/OpenGeoscience/geojs/compare/v1.4.3...v1.5.0) (2021-12-20)
3
+ ## Version 1.6.2
4
4
 
5
+ ### Bug Fixes
5
6
 
6
- ### Features
7
+ - Do not name osm layers based on the tile source ([#1154](../../pull/1154))
8
+
9
+ ## Version 1.6.1
10
+
11
+ ### Changes
12
+
13
+ - Build for older browsers ([#1145](../../issues/1145))
14
+
15
+ ## Version 1.6.0
16
+
17
+ ### Changes
18
+
19
+ - Switch to webpack v5 and update build tooling ([#1132](../../issues/1132))
20
+
21
+ ### Bug Fixes
7
22
 
8
- * Add scaleWithZoom option to heatmaps. ([f3a1a3f](https://github.com/OpenGeoscience/geojs/commit/f3a1a3f328418b375000320103752fa6c4bdd381))
23
+ - Harden checking for optional dependencies ([#1143](../../pull/1143))
9
24
 
25
+ ## Version 1.5.0
10
26
 
11
- ### Performance Improvements
27
+ ### Features
28
+
29
+ - Add scaleWithZoom option to heatmaps ([#1125](../../pull/1125))
30
+
31
+ ### Improvements
12
32
 
13
- * Automatically adjust heatmap update delay. ([57e42b9](https://github.com/OpenGeoscience/geojs/commit/57e42b9f55b8028bd664be6ec21ff5089c50f356)), closes [#1087](https://github.com/OpenGeoscience/geojs/issues/1087)
33
+ - Automatically adjust heatmap update delay ([#1124](../../pull/1124))
34
+ - Log if we can't allocate texture memory([#1116](../../pull/1116))
14
35
 
15
36
  ## Version 1.4.3
16
37