Skip to content

Commit 13128cc

Browse files
authored
Merge pull request #16 from richarddd/master
Update supported runtimes
2 parents 15acdc1 + 2c55c35 commit 13128cc

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: node_js
22
node_js:
33
- node
4-
- '7'
5-
- '6'
6-
- '5'
7-
- '4.3.2'
4+
- '8'
5+
- '10'
6+
- '12'
87
notifications:
98
email: false

src/utils.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ module.exports = {
1919
detectEncoding: request => _.includes(request.headers['content-type'], 'multipart/form-data') ? 'binary' : 'utf8',
2020
isProxyRuntime: runtime => { return runtime.startsWith('python') || runtime.startsWith('ruby') },
2121
supportedRuntimes: [
22-
'nodejs',
23-
'nodejs4.3',
24-
'nodejs6.10',
2522
'nodejs8.10',
23+
'nodejs10.x',
24+
'nodejs12.x',
2625
'babel',
2726
'python2.7',
2827
'python3.6',
2928
'python3.7',
29+
'python3.8',
3030
'ruby2.5',
3131
],
3232
};

0 commit comments

Comments
 (0)