We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15acdc1 + 2c55c35 commit 13128ccCopy full SHA for 13128cc
.travis.yml
@@ -1,9 +1,8 @@
1
language: node_js
2
node_js:
3
- node
4
- - '7'
5
- - '6'
6
- - '5'
7
- - '4.3.2'
+ - '8'
+ - '10'
+ - '12'
8
notifications:
9
email: false
src/utils.js
@@ -19,14 +19,14 @@ module.exports = {
19
detectEncoding: request => _.includes(request.headers['content-type'], 'multipart/form-data') ? 'binary' : 'utf8',
20
isProxyRuntime: runtime => { return runtime.startsWith('python') || runtime.startsWith('ruby') },
21
supportedRuntimes: [
22
- 'nodejs',
23
- 'nodejs4.3',
24
- 'nodejs6.10',
25
'nodejs8.10',
+ 'nodejs10.x',
+ 'nodejs12.x',
26
'babel',
27
'python2.7',
28
'python3.6',
29
'python3.7',
+ 'python3.8',
30
'ruby2.5',
31
],
32
};
0 commit comments