From: Marc Tobias Date: Wed, 16 Nov 2022 12:04:23 +0000 (+0100) Subject: v3.2.9 X-Git-Url: https://git.openstreetmap.org/nominatim-ui.git/commitdiff_plain/1d4529afc54f8680d232d6b45b8b8857d1e48dac v3.2.9 --- diff --git a/CHANGES.md b/CHANGES.md index 60bd3fc..35260da 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ # CHANGES +* version 3.2.9 - 2022-11-16 + + * Fix: For places tagged bulding=yes display the formatted label 'Building', not 'Yes' + * migrate remaining modules to ESM style (import instead of require) + * NPM package updates + * test suite: use JSON files for mocha and eslint configuration + * test suite: update outdated Github Actions + * version 3.2.8 - 2022-09-26 * Use OSM's preferred tile URL for faster map loading diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md index c9b7b9c..9f98597 100644 --- a/CONTRIBUTE.md +++ b/CONTRIBUTE.md @@ -36,7 +36,7 @@ Svelte. Version 3 added theme and easier configuration. The `test/` setup uses [Mocha](https://mochajs.org/) to run tests. Tests use [Puppeteer](https://pptr.dev/) to control a Google Chrome headless browser and evaluate with [Assert](https://nodejs.org/api/assert.html). -* Run integration test suite (configuration in `.mocharc.js`) +* Run integration test suite (configuration in `.mocharc.json`) ``` yarn test @@ -53,7 +53,7 @@ The `test/` setup uses [Mocha](https://mochajs.org/) to run tests. Tests use [Pu yarn run rollup -c && yarn run mocha test/details.js ``` -* Run syntax linter (configuration in `.eslint.js`) +* Run syntax linter (configuration in `.eslint.json`) ``` yarn lint diff --git a/package.json b/package.json index a1a9f59..e7e3498 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "nominatim-ui", "description": "Debug web interface for Nominatim geocoder", - "version": "3.2.8", + "version": "3.2.9", "license": "GPL-2.0", "scripts": { "build": "rollup -c",