Skip to content

Commit

Permalink
Update Node engine to 14 (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmatyusGitHub authored May 4, 2022
1 parent 6804a2b commit 7037d93
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "node"
- "12"
- "10"
- "14"
- "16"
install: npm install
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Unreleased
- [NOTE] Updated minimum supported engine to Node.js 14 `fermium` LTS.

# 2.8.3 (2022-04-05)
- [UPGRADED] `@ibm-cloud/cloudant` dependency to version `0.1.1`.
- [NOTE] Move `retry-axios` and `ibm-cloud-sdk-core` to peerDependencies.
Expand Down
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ stage('QA') {
}

def axes = [
Node12x:{ setupNodeAndTest('12', filter) }, // 12.x Maintenance LTS
Node14x:{ setupNodeAndTest('14', filter) }, // 14.x Active LTS
Node:{ setupNodeAndTest('16', filter) }, // Current
Node14x:{ setupNodeAndTest('14', filter) }, // 14.x Maintenance LTS
Node16x:{ setupNodeAndTest('16', filter) }, // 16.x Active LTS
Node:{ setupNodeAndTest('18', filter) }, // Current
// Test IAM on the current Node.js version. Filter out unit tests and the
// slowest integration tests.
Iam: { setupNodeAndTest('16', '-i -g \'#unit|#slowe\'', 'test-iam') },
Lint: { setupNodeAndTest('12', '', 'lint') }
Lint: { setupNodeAndTest('14', '', 'lint') }
]
// Add unreliable network tests if specified
if (env.RUN_TOXY_TESTS && env.RUN_TOXY_TESTS.toBoolean()) {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ npm install -g @cloudant/couchbackup
```

### Requirements
* The minimum required Node.js version is 12.
* The minimum required Node.js version is 14.
* The minimum required CouchDB version is 2.0.0.

### Snapshots
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"license": "Apache-2.0",
"engines": {
"node": ">=12"
"node": ">=14"
},
"dependencies": {
"@ibm-cloud/cloudant": "0.1.2",
Expand Down

0 comments on commit 7037d93

Please sign in to comment.