File tree Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 5
5
### Added
6
6
7
7
- AWS api-change: Restrict the list of available regions.
8
- - AWS api-change: Added ` eu-central-2 ` region
8
+ - AWS api-change: Added ` eu-central-2 ` and ` eu-south-2 ` regions
9
+ - AWS api-change: Add Node 18 (nodejs18.x) support to AWS Lambda.
9
10
10
11
## 1.7.0
11
12
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ final class Runtime
21
21
public const NODEJS_12_X = 'nodejs12.x ' ;
22
22
public const NODEJS_14_X = 'nodejs14.x ' ;
23
23
public const NODEJS_16_X = 'nodejs16.x ' ;
24
+ public const NODEJS_18_X = 'nodejs18.x ' ;
24
25
public const NODEJS_4_3 = 'nodejs4.3 ' ;
25
26
public const NODEJS_4_3_EDGE = 'nodejs4.3-edge ' ;
26
27
public const NODEJS_6_10 = 'nodejs6.10 ' ;
@@ -52,6 +53,7 @@ public static function exists(string $value): bool
52
53
self ::NODEJS_12_X => true ,
53
54
self ::NODEJS_14_X => true ,
54
55
self ::NODEJS_16_X => true ,
56
+ self ::NODEJS_18_X => true ,
55
57
self ::NODEJS_4_3 => true ,
56
58
self ::NODEJS_4_3_EDGE => true ,
57
59
self ::NODEJS_6_10 => true ,
Original file line number Diff line number Diff line change @@ -381,6 +381,7 @@ protected function getEndpointMetadata(?string $region): array
381
381
case 'eu-central-2 ' :
382
382
case 'eu-north-1 ' :
383
383
case 'eu-south-1 ' :
384
+ case 'eu-south-2 ' :
384
385
case 'eu-west-1 ' :
385
386
case 'eu-west-2 ' :
386
387
case 'eu-west-3 ' :
Original file line number Diff line number Diff line change 3
3
namespace AsyncAws \Lambda \ValueObject ;
4
4
5
5
/**
6
- * The function's environment variables.
6
+ * The function's environment variables. Omitted from CloudTrail logs.
7
7
*
8
8
* @see https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html
9
9
*/
10
10
final class EnvironmentResponse
11
11
{
12
12
/**
13
- * Environment variable key-value pairs.
13
+ * Environment variable key-value pairs. Omitted from CloudTrail logs.
14
14
*/
15
15
private $ variables ;
16
16
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ final class FunctionConfiguration
88
88
private $ deadLetterConfig ;
89
89
90
90
/**
91
- * The function's environment variables.
91
+ * The function's environment variables. Omitted from CloudTrail logs.
92
92
*
93
93
* @see https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html
94
94
*/
You can’t perform that action at this time.
0 commit comments