Skip to content

Commit 91a7001

Browse files
Merge pull request #146 from wilsenhc/main
Deprecate .NET 7, Node.js 16 and Python 3.8 runtime options
2 parents 9caaab7 + 40115ec commit 91a7001

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,15 @@ You can write functions in any of the following runtimes and execute them straig
2222

2323
- Node.js 20
2424
- Node.js 18
25-
- Node.js 16
2625
- Python 3.12
2726
- Python 3.11
2827
- Python 3.10
2928
- Python 3.9
30-
- Python 3.8
3129
- Java 21
3230
- Java 17
3331
- Java 11
3432
- Java 8
3533
- .NET 8
36-
- .NET 7
3734
- .NET 6
3835
- Ruby 3.3
3936
- Ruby 3.2
@@ -42,7 +39,7 @@ You can write functions in any of the following runtimes and execute them straig
4239

4340
Any runtime that [Lambda supports](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html), you can use!
4441

45-
Sidecar is maintained by [Aaron Francis](https://twitter.com/aarondfrancis), go follow me on Twitter!
42+
Sidecar is maintained by [Aaron Francis](https://twitter.com/aarondfrancis), go follow me on Twitter!
4643

4744
### What It Looks Like
4845

docs/functions/customization.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,15 @@ Lambda supports multiple languages through the use of runtimes. You can choose a
99

1010
- Node.js 20: `nodejs20.x`
1111
- Node.js 18: `nodejs18.x`
12-
- Node.js 16: `nodejs16.x`
1312
- Python 3.12: `python3.12`
1413
- Python 3.11: `python3.11`
1514
- Python 3.10: `python3.10`
1615
- Python 3.9: `python3.9`
17-
- Python 3.8: `python3.8`
1816
- Java 21: `java21`
1917
- Java 17: `java17`
2018
- Java 11: `java11`
2119
- Java 8: `java8.al2`
2220
- .NET 8: `dotnet8`
23-
- .NET 7: `dotnet7`
2421
- .NET 6: `dotnet6`
2522
- Ruby 3.3: `ruby3.3`
2623
- Ruby 3.2: `ruby3.2`

src/Runtime.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ abstract class Runtime
88

99
public const NODEJS_18 = 'nodejs18.x';
1010

11+
/** @deprecated */
1112
public const NODEJS_16 = 'nodejs16.x';
1213

1314
/** @deprecated */
@@ -21,6 +22,7 @@ abstract class Runtime
2122

2223
public const PYTHON_39 = 'python3.9';
2324

25+
/** @deprecated */
2426
public const PYTHON_38 = 'python3.8';
2527

2628
/** @deprecated */
@@ -39,6 +41,7 @@ abstract class Runtime
3941

4042
public const DOT_NET_8 = 'dotnet8';
4143

44+
/** @deprecated */
4245
public const DOT_NET_7 = 'dotnet7';
4346

4447
public const DOT_NET_6 = 'dotnet6';

0 commit comments

Comments
 (0)