Skip to content

Commit 1ab9290

Browse files
Merge pull request #145 from wilsenhc/feature/add-net-8-and-ruby-33
Add .NET 8 and Ruby 3.3 runtime options
2 parents 3391d15 + ae47ba4 commit 1ab9290

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ You can write functions in any of the following runtimes and execute them straig
3232
- Java 17
3333
- Java 11
3434
- Java 8
35+
- .NET 8
3536
- .NET 7
3637
- .NET 6
38+
- Ruby 3.3
3739
- Ruby 3.2
3840
- OS-only runtime (Amazon Linux 2023)
3941
- OS-only runtime (Amazon Linux 2)

docs/functions/customization.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ Lambda supports multiple languages through the use of runtimes. You can choose a
1919
- Java 17: `java17`
2020
- Java 11: `java11`
2121
- Java 8: `java8.al2`
22+
- .NET 8: `dotnet8`
2223
- .NET 7: `dotnet7`
2324
- .NET 6: `dotnet6`
25+
- Ruby 3.3: `ruby3.3`
2426
- Ruby 3.2: `ruby3.2`
2527
- OS-only runtime (Amazon Linux 2023): `provided.al2023`
2628
- OS-only runtime (Amazon Linux 2): `provided.al2`

docs/overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ You can write functions in any of the following runtimes and execute them straig
1919
- Java 17
2020
- Java 11
2121
- Java 8
22+
- .NET 8
2223
- .NET 7
2324
- .NET 6
25+
- Ruby 3.3
2426
- Ruby 3.2
2527
- OS-only runtime (Amazon Linux 2023)
2628
- OS-only runtime (Amazon Linux 2)

src/Runtime.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,14 @@ abstract class Runtime
3737
/** @deprecated */
3838
public const JAVA_8 = 'java8';
3939

40+
public const DOT_NET_8 = 'dotnet8';
41+
4042
public const DOT_NET_7 = 'dotnet7';
4143

4244
public const DOT_NET_6 = 'dotnet6';
4345

46+
public const RUBY_33 = 'ruby3.3';
47+
4448
public const RUBY_32 = 'ruby3.2';
4549

4650
/** @deprecated */

0 commit comments

Comments
 (0)