Skip to content

Commit

Permalink
Drop Node 10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
pluma committed May 27, 2022
1 parent a55c73f commit e3d482a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [10, 12, 14, 16]
node-version: [12, 14, 16]
arangodb-version: [3.6, 3.7, 3.8]

container:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ This driver uses semantic versioning:

### Changed

- Removed Node.js 10 support

With Node.js 10 moving from its LTS phase into maintenance, arangojs will no
longer support this version of Node.js going forward.

- Updated TypeScript to version 4

This may result in type signatures that are incompatible with TypeScript 3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "arangojs",
"version": "7.8.0",
"engines": {
"node": ">=10"
"node": ">=12"
},
"license": "Apache-2.0",
"description": "The official ArangoDB JavaScript driver.",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"importHelpers": false,
"sourceMap": true,
"inlineSources": true,
"lib": ["es2018"],
"lib": ["es2020"],
"module": "commonjs",
"moduleResolution": "node",
"noEmit": false,
Expand Down

0 comments on commit e3d482a

Please sign in to comment.