Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .NET 8 and Ruby 3.3 runtime options #145

Merged
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ You can write functions in any of the following runtimes and execute them straig
- Java 17
- Java 11
- Java 8
- .NET 8
- .NET 7
- .NET 6
- Ruby 3.3
- Ruby 3.2
- OS-only runtime (Amazon Linux 2023)
- OS-only runtime (Amazon Linux 2)
Expand Down
2 changes: 2 additions & 0 deletions docs/functions/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ Lambda supports multiple languages through the use of runtimes. You can choose a
- Java 17: `java17`
- Java 11: `java11`
- Java 8: `java8.al2`
- .NET 8: `dotnet8`
- .NET 7: `dotnet7`
- .NET 6: `dotnet6`
- Ruby 3.3: `ruby3.3`
- Ruby 3.2: `ruby3.2`
- OS-only runtime (Amazon Linux 2023): `provided.al2023`
- OS-only runtime (Amazon Linux 2): `provided.al2`
Expand Down
2 changes: 2 additions & 0 deletions docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ You can write functions in any of the following runtimes and execute them straig
- Java 17
- Java 11
- Java 8
- .NET 8
- .NET 7
- .NET 6
- Ruby 3.3
- Ruby 3.2
- OS-only runtime (Amazon Linux 2023)
- OS-only runtime (Amazon Linux 2)
Expand Down
4 changes: 4 additions & 0 deletions src/Runtime.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,14 @@ abstract class Runtime
/** @deprecated */
public const JAVA_8 = 'java8';

public const DOT_NET_8 = 'dotnet8';

public const DOT_NET_7 = 'dotnet7';

public const DOT_NET_6 = 'dotnet6';

public const RUBY_33 = 'ruby3.3';

public const RUBY_32 = 'ruby3.2';

/** @deprecated */
Expand Down