This repository was archived by the owner on Mar 11, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed
Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ branches:
66 - rewrite
77node_js :
88 - " node"
9- - " 10 "
10- - " 8 "
9+ - " 14 "
10+ - " 12 "
1111os :
1212 - linux
1313before_install :
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -76,13 +76,13 @@ stage('Build') {
7676
7777stage(' 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
Original file line number Diff line number Diff line change 6363 "main" : " ./cloudant.js" ,
6464 "types" : " types" ,
6565 "engines" : {
66- "node" : " >=6.13.0 "
66+ "node" : " >=12 "
6767 }
6868}
You can’t perform that action at this time.
0 commit comments