This repository was archived by the owner on Dec 2, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Expand file tree Collapse file tree 1 file changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -65,22 +65,28 @@ func (r Runtimes) Contains(runtime string) bool {
65
65
return false
66
66
}
67
67
68
- // a list of aws supported runtimes as of 26/01/2019
68
+ // a list of aws supported runtimes as of 2020-06-18
69
69
var ValidRuntimes = Runtimes {
70
- "nodejs" , // eol = 31/10/2016 but included to support existing versions
71
- "nodejs4.3" , // eol = 30/04/2018 but included to support existing versions
72
- "nodejs6.10" ,
73
- "nodejs8.10" ,
70
+ // eol'ed runtimes are included to support existing functions
71
+ "nodejs" , // eol
72
+ "nodejs4.3" , // eol
73
+ "nodejs4.3-edge" , // eol
74
+ "nodejs6.10" , // eol
75
+ "nodejs8.10" , // eol
74
76
"nodejs10.x" ,
77
+ "nodejs12.x" ,
75
78
"java8" ,
79
+ "java11" ,
76
80
"python2.7" ,
77
81
"python3.6" ,
78
82
"python3.7" ,
79
- "dotnetcore1.0" ,
80
- "dotnetcore2.0" ,
83
+ "python3.8" ,
84
+ "dotnetcore1.0" , // eol
85
+ "dotnetcore2.0" , // eol
81
86
"dotnetcore2.1" ,
82
- "nodejs4.3-edge" , // eol = 30/04/2018 but included to support existing versions
87
+ "dotnetcore3.1" ,
83
88
"go1.x" ,
84
89
"ruby2.5" ,
90
+ "ruby2.7" ,
85
91
"provided" ,
86
92
}
You can’t perform that action at this time.
0 commit comments