Skip to content

Commit 5adfffd

Browse files
committed
Checking in changes prior to tagging of version 0.7.0.
Changelog diff is: diff --git a/Changes b/Changes index 49a76a3..db60fb4 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Perl extension aws-lambda {{$NEXT}} + +0.7.0 2025-12-13T04:33:18Z - Support tenant id in AWS::Lambda::Context #203 - Add support for AWS_LAMBDA_MAX_CONCURRENCY #204 - Mark Amazon Linux 2 (AL2) based layers as no longer maintained #206
1 parent 0728da2 commit 5adfffd

7 files changed

Lines changed: 12 additions & 10 deletions

File tree

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Revision history for Perl extension aws-lambda
22

33
{{$NEXT}}
4+
5+
0.7.0 2025-12-13T04:33:18Z
46
- Support tenant id in AWS::Lambda::Context #203
57
- Add support for AWS_LAMBDA_MAX_CONCURRENCY #204
68
- Mark Amazon Linux 2 (AL2) based layers as no longer maintained #206

META.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"web" : "https://github.com/shogo82148/p5-aws-lambda"
9090
}
9191
},
92-
"version" : "0.6.0",
92+
"version" : "0.7.0",
9393
"x_contributors" : [
9494
"ICHINOSE Shogo <shogo82148@gmail.com>",
9595
"Jose Luis Martinez <jlmartinez@capside.com>",

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,10 @@ It means that we support the two most recent stable release series.
264264

265265
We also provide the layers for legacy custom runtime as known as "provided".
266266
These layers are only for backward compatibility.
267-
We recommend to migrate to Amazon Linux 2.
267+
We recommend to migrate to Amazon Linux 2023.
268268
These layers are NO LONGER MAINTAINED and WILL NOT RECEIVE ANY UPDATES.
269269

270-
The list of all layer ARNs is availeble on [AWS::Lambda::AL](https://metacpan.org/pod/AWS%3A%3ALambda%3A%3AAL).
270+
The list of all layer ARNs is available on [AWS::Lambda::AL](https://metacpan.org/pod/AWS%3A%3ALambda%3A%3AAL).
271271

272272
## Pre-built Zip Archives for Amazon Linux
273273

@@ -281,9 +281,9 @@ And Paws:
281281

282282
# LEGACY CUSTOM RUNTIME ON AMAZON LINUX 2
283283

284-
Previously, we provided the layers that named without CPU architectures.
285-
These layers are compatible with x86\_64 and only for backward compatibility.
286-
We recommend to specify the CPU architecture.
284+
We also provide the layers for legacy custom runtime as known as "provided.al2".
285+
These layers are only for backward compatibility.
286+
We recommend to migrate to Amazon Linux 2023.
287287
These layers are NO LONGER MAINTAINED and WILL NOT RECEIVE ANY UPDATES.
288288

289289
## Pre-built Legacy Public Lambda Layers for Amazon Linux 2

lib/AWS/Lambda.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use AWS::Lambda::AL;
77
use AWS::Lambda::AL2;
88
use AWS::Lambda::AL2023;
99

10-
our $VERSION = "0.6.0";
10+
our $VERSION = "0.7.0";
1111

1212
# the context of Lambda Function
1313
our $context;

lib/AWS/Lambda/AL.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use 5.026000;
33
use strict;
44
use warnings;
55

6-
our $VERSION = "0.6.0";
6+
our $VERSION = "0.7.0";
77

88
# This list is auto generated by authors/update-aws-lambda-al.pl; DO NOT EDIT
99
our $LAYERS = {

lib/AWS/Lambda/AL2.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use 5.026000;
33
use strict;
44
use warnings;
55

6-
our $VERSION = "0.6.0";
6+
our $VERSION = "0.7.0";
77

88
# This list is auto generated by authors/update-aws-lambda-al2.pl; DO NOT EDIT
99
our $LAYERS = {

lib/AWS/Lambda/AL2023.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use 5.026000;
33
use strict;
44
use warnings;
55

6-
our $VERSION = "0.6.0";
6+
our $VERSION = "0.7.0";
77

88
# This list is auto generated by authors/update-aws-lambda-al2023.pl; DO NOT EDIT
99
our $LAYERS = {

0 commit comments

Comments
 (0)