Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion provider/googleProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,29 @@ class GoogleProvider {
// Source: https://cloud.google.com/functions/docs/concepts/exec#runtimes
enum: [
'nodejs6', // decommissioned
'nodejs8', // deprecated
'nodejs8', // decommissioned
'nodejs10',
'nodejs12',
'nodejs14',
'nodejs16', // recommended
'nodejs18', // preview
'python37',
'python38',
'python39',
'go111',
'go113',
'go116', // recommended

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As of 1-17-23 go119 appears to be the recommended Go runtime.

'go118', // preview
'go119', // preview
'java11',
'java17', // recommended
'dotnet3',
'dotnet6', // recommended
'ruby26',
'ruby27',
'ruby30', // recommended
'php74',
'php81', // recommended
],
},
cloudFunctionMemory: {
Expand Down