Skip to content

Commit

Permalink
chore: drop Node.js 14 and lower
Browse files Browse the repository at this point in the history
breaking change: drop Node.js 14 version and lower

Signed-off-by: dhmlau <[email protected]>
  • Loading branch information
dhmlau committed Sep 11, 2023
1 parent 8a073af commit f237df2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [10, 12, 14, 16]
node-version: [16, 18, 20]
include:
- os: macos-latest
node-version: 14 # LTS
node-version: 16 # LTS
- os: windows-latest
node-version: 14 # LTS
node-version: 16 # LTS
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ Features:

## Install

Node.js version 10, 12, and 14 are officially supported. We dropped version 8
support in 3.0.0.
Node.js version 16 and 18 are officially supported.

Install with [npm](http://github.com/isaacs/npm):

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 @@
"version": "3.5.3",
"description": "A minimal node SOAP client",
"engines": {
"node": ">=8.11.1"
"node": ">=16"
},
"dependencies": {
"compress": "^0.99.0",
Expand Down

0 comments on commit f237df2

Please sign in to comment.