Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit ea43683

Browse files
committed
Remove EOL Node.js versions
1 parent 0f0ec30 commit ea43683

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ branches:
66
- rewrite
77
node_js:
88
- "node"
9-
- "10"
10-
- "8"
9+
- "14"
10+
- "12"
1111
os:
1212
- linux
1313
before_install:

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Unreleased
22
- [FIXED] Parsing of max-age from Set-Cookie headers.
33
- [FIXED] Double callback if plugin errors when updating state.
4+
- [NOTE] Updated engines to remove EOL Node.js versions (minimum is now Node.js 12).
45

56
# 4.3.1 (2021-03-17)
67
- [NEW] Add migration guide to the newly supported cloudant-node-sdk

Jenkinsfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ stage('Build') {
7676

7777
stage('QA') {
7878
parallel([
79-
Node8x : {
80-
//8.x LTS
81-
setupNodeAndTest('lts/carbon')
79+
Node12x : {
80+
//12.x LTS
81+
setupNodeAndTest('lts/erbium')
8282
},
83-
Node10x : {
84-
//10.x LTS
85-
setupNodeAndTest('lts/dubnium')
83+
Node14x : {
84+
//14.x LTS
85+
setupNodeAndTest('lts/fermium')
8686
},
8787
Node : {
8888
// Current

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@
6363
"main": "./cloudant.js",
6464
"types": "types",
6565
"engines": {
66-
"node": ">=6.13.0"
66+
"node": ">=12"
6767
}
6868
}

0 commit comments

Comments
 (0)