pelias-openstreetmap 6.0.0 → 7.1.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.
@@ -6,12 +6,8 @@ jobs:
6
6
  strategy:
7
7
  matrix:
8
8
  os:
9
- - ${{ vars.UBUNTU_VERSION }}
10
- node-version:
11
- - 12.x
12
- - 14.x
13
- - 16.x
14
- - 18.x
9
+ - ubuntu-22.04
10
+ node-version: [ 18.x, 20.x ]
15
11
  steps:
16
12
  - uses: actions/checkout@v4
17
13
  - name: 'Install node.js ${{ matrix.node-version }}'
@@ -20,5 +16,6 @@ jobs:
20
16
  node-version: '${{ matrix.node-version }}'
21
17
  - name: Run unit tests
22
18
  run: |
19
+ [[ -f ./bin/ci-setup ]] && ./bin/ci-setup
23
20
  npm install
24
21
  npm run ci
@@ -6,7 +6,7 @@ jobs:
6
6
  npm-publish:
7
7
  needs: unit-tests
8
8
  if: github.ref == 'refs/heads/master' && needs.unit-tests.result == 'success'
9
- runs-on: ${{ vars.UBUNTU_VERSION }}
9
+ runs-on: ubuntu-22.04
10
10
  steps:
11
11
  - uses: actions/checkout@v4
12
12
  - name: Install Node.js
@@ -26,7 +26,7 @@ jobs:
26
26
  # note: github actions won't run a job if you don't call one of the status check functions, so `always()` is called since it evalutes to `true`
27
27
  if: ${{ always() && needs.unit-tests.result == 'success' && (needs.npm-publish.result == 'success' || needs.npm-publish.result == 'skipped') }}
28
28
  needs: [unit-tests, npm-publish]
29
- runs-on: ${{ vars.UBUNTU_VERSION }}
29
+ runs-on: ubuntu-22.04
30
30
  steps:
31
31
  - uses: actions/checkout@v4
32
32
  - name: Build Docker images
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pelias-openstreetmap",
3
- "version": "6.0.0",
3
+ "version": "7.1.0",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },
@@ -44,7 +44,7 @@
44
44
  "pbf2json": "^6.9.0",
45
45
  "pelias-blacklist-stream": "^1.0.0",
46
46
  "pelias-config": "^6.0.0",
47
- "pelias-dbclient": "^3.0.0",
47
+ "pelias-dbclient": "^3.1.0",
48
48
  "pelias-logger": "^1.2.1",
49
49
  "pelias-model": "^10.0.0",
50
50
  "pelias-wof-admin-lookup": "^7.8.0",