Skip to content

Commit

Permalink
Merge pull request #145 from wilsenhc/feature/add-net-8-and-ruby-33
Browse files Browse the repository at this point in the history
Add .NET 8 and Ruby 3.3 runtime options
  • Loading branch information
aarondfrancis authored May 15, 2024
2 parents 3391d15 + ae47ba4 commit 1ab9290
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
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

0 comments on commit 1ab9290

Please sign in to comment.