Skip to content

Commit ff36478

Browse files
committed
Merge branch 'release/1.10.7'
2 parents 8812077 + 3637ba8 commit ff36478

8 files changed

Lines changed: 1378 additions & 374 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
cache: 'npm'
2222
- name: Install Node.js dependencies
2323
run: npm install
24-
- name: Build Javascript & CSS
24+
- name: Build Javascript
2525
env:
2626
# Fix for ERR_OSSL_EVP_UNSUPPORTED error caused by Webpack
2727
NODE_OPTIONS: --openssl-legacy-provider
28-
run: |
29-
npm run css-dev
30-
npm run webpack-dev
28+
run: npm run webpack-prod
29+
- name: Build CSS
30+
run: npm run css-prod

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**1.10.7 (2022-12-27)**
2+
3+
- Wanneer filters op een kaart staan ingeschakeld met `enable_filter=1` maar geen van de locaties bevatten locatie eigenschappen dan werden alle bestaande eigenschappen in de filterlijst geplaatst. Het was de intentie om alleen de locatie eigenschappen die waren toegekend in deze lijst te plaatsen. Dit is nu opgelost.
4+
15
**1.10.6 (2022-07-07)**
26

37
- Repository verhuisd naar GitHub. Releases worden nu op GitHub gepubliceerd. Plugin aangepast om hier gebruik van te maken.

Dockerfile.node-builder

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ RUN apk add --no-cache --virtual .gyp git python3 make g++ libc6-compat
99
RUN npm config set unsafe-perm true
1010
ADD package*.json ./
1111
RUN npm install
12-
ADD create_archive.js .
1312
ADD webpack.config.js .
1413
COPY src ./src
1514
# --legacy-peer-deps
16-
CMD npm run css-prod && npm run webpack-prod
15+
CMD npm run css-prod && npm run webpack-prod

0 commit comments

Comments
 (0)