Skip to content

Commit

Permalink
Add deprecated/unsupported runtimes (still working)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk committed Jul 25, 2019
1 parent 6b3f2c7 commit 88fecc4
Showing 1 changed file with 41 additions and 8 deletions.
49 changes: 41 additions & 8 deletions src/config/supportedRuntimes.js
Expand Up @@ -3,29 +3,62 @@
// native runtime support for AWS
// https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html

// deprecated runtimes
// https://docs.aws.amazon.com/lambda/latest/dg/runtime-support-policy.html
module.exports = new Set([
// .net
// ==========
// .NET CORE
// ==========

// deprecated
// 'dotnetcore1.0',
// 'dotnetcore2.0',

// supported
// dotnetcore2.1
// dotnetcore1.0

// go
// ==========
// GO
// ==========

'go1.x',

// java
// ==========
// JAVA
// ==========

// supported
// java8

// node.js
// ==========
// NODE.JS
// ==========

// deprecated, but still working
'nodejs4.3',
'nodejs6.10',

// supported
'nodejs8.10',
'nodejs10.x',

// provided
// ==========
// PROVIDED
// ==========

'provided',

// python
// ==========
// PYTHON
// ==========

'python2.7',
'python3.6',
'python3.7',

// ruby
// ==========
// RUBY
// ==========

'ruby2.5',
]);

0 comments on commit 88fecc4

Please sign in to comment.