geojs 1.7.1 → 1.8.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.
@@ -10,6 +10,8 @@ on:
10
10
  release:
11
11
  types:
12
12
  - created
13
+ schedule:
14
+ - cron: "0 7 * * 1"
13
15
 
14
16
  jobs:
15
17
  build:
@@ -63,6 +65,24 @@ jobs:
63
65
  name: website
64
66
  path: |
65
67
  website/public
68
+ unpinned:
69
+ runs-on: ubuntu-latest
70
+ steps:
71
+ - uses: actions/checkout@v2
72
+ # Don't pin version to test with the latest common version
73
+ - uses: actions/setup-node@v2
74
+ - run: npm --version && node --version
75
+ - uses: browser-actions/setup-firefox@latest
76
+ - run: sudo apt-get remove --yes fonts-lato
77
+ - run: fc-list
78
+ - run: firefox --version
79
+ - run: google-chrome --version
80
+ # Delete the package-lock to test with the latest libraries allowed
81
+ - run: rm package-lock.json
82
+ - run: npm install
83
+ - run: npm run setup-website
84
+ - run: npm run ci-xvfb
85
+ - run: npm run ci-build-website
66
86
  deploy-website:
67
87
  if: ${{ github.ref == 'refs/heads/master' }}
68
88
  needs: build
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # GeoJS Change Log
2
2
 
3
+ ## Version 1.7.3
4
+
5
+ ### Bug Fixes
6
+
7
+ - Emit layerMove event when changing a lyer's z-index ([#1185](../../pull/1185))
8
+
9
+ ## Version 1.7.2
10
+
11
+ ### Bug Fixes
12
+
13
+ - Tile layers with keepLower: false purged tiles on high zoom ([#1178](../../pull/1178))
14
+
15
+ ## Version 1.7.1
16
+
17
+ ### Improvements
18
+
19
+ - Reduce texture memory check ([#1175](../../pull/1175))
20
+
3
21
  ## Version 1.7.0
4
22
 
5
23
  ### Features