Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit b199c17

Browse files
committed
Update list of supported runtimes
1 parent 4f11a13 commit b199c17

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

img2lambda/types/types.go

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,22 +65,28 @@ func (r Runtimes) Contains(runtime string) bool {
6565
return false
6666
}
6767

68-
// a list of aws supported runtimes as of 26/01/2019
68+
// a list of aws supported runtimes as of 2020-06-18
6969
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
7476
"nodejs10.x",
77+
"nodejs12.x",
7578
"java8",
79+
"java11",
7680
"python2.7",
7781
"python3.6",
7882
"python3.7",
79-
"dotnetcore1.0",
80-
"dotnetcore2.0",
83+
"python3.8",
84+
"dotnetcore1.0", // eol
85+
"dotnetcore2.0", // eol
8186
"dotnetcore2.1",
82-
"nodejs4.3-edge", // eol = 30/04/2018 but included to support existing versions
87+
"dotnetcore3.1",
8388
"go1.x",
8489
"ruby2.5",
90+
"ruby2.7",
8591
"provided",
8692
}

0 commit comments

Comments
 (0)