Skip to content

Commit f6fecdc

Browse files
committed
v4.3.0
1 parent 508ded3 commit f6fecdc

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/test_integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test integration CI
22

33
on:
44
workflow_dispatch:
5-
5+
66
jobs:
77
build:
88
runs-on: ubuntu-latest
@@ -12,7 +12,7 @@ jobs:
1212
- name: Use Node.js ${{ matrix.node-version }}
1313
uses: actions/setup-node@v2
1414
with:
15-
node-version: 16.x
15+
node-version: 18.x
1616
- name: Install dependencies
1717
run: npm install
1818
- run: npm run test:integration

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,9 @@ Add suppot for osmServer option
145145

146146
- Handle unathorized error from HERE when a wrong API Key is provided. Related with: Crash with HereGeocoder when bad apiKey given #342
147147
- Fix limit param for TomTom #342
148+
149+
# 4.3.0
150+
151+
- Remove support for node < 18
152+
- Add new geocoder APlace.io (#349)
153+
- Handling undefined values in here geocoder (#351)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "node-geocoder",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
44
"description": "Node Geocoder, node geocoding library, supports google maps, mapquest, open street map, tom tom, promise",
55
"main": "index.js",
66
"engines": {
7-
"node": ">=12"
7+
"node": ">=18"
88
},
99
"scripts": {
1010
"test": "jest --maxWorkers=2 ./test",

0 commit comments

Comments
 (0)