Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"web" : "https://github.com/shogo82148/p5-aws-lambda"
}
},
"version" : "0.6.0",
"version" : "0.7.0",
"x_contributors" : [
"ICHINOSE Shogo <shogo82148@gmail.com>",
"Jose Luis Martinez <jlmartinez@capside.com>",
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,10 @@ It means that we support the two most recent stable release series.

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

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

## Pre-built Zip Archives for Amazon Linux

Expand All @@ -281,9 +281,9 @@ And Paws:

# LEGACY CUSTOM RUNTIME ON AMAZON LINUX 2

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

## Pre-built Legacy Public Lambda Layers for Amazon Linux 2
Expand Down
2 changes: 1 addition & 1 deletion lib/AWS/Lambda.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use AWS::Lambda::AL;
use AWS::Lambda::AL2;
use AWS::Lambda::AL2023;

our $VERSION = "0.6.0";
our $VERSION = "0.7.0";

# the context of Lambda Function
our $context;
Expand Down
2 changes: 1 addition & 1 deletion lib/AWS/Lambda/AL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use 5.026000;
use strict;
use warnings;

our $VERSION = "0.6.0";
our $VERSION = "0.7.0";

# This list is auto generated by authors/update-aws-lambda-al.pl; DO NOT EDIT
our $LAYERS = {
Expand Down
2 changes: 1 addition & 1 deletion lib/AWS/Lambda/AL2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use 5.026000;
use strict;
use warnings;

our $VERSION = "0.6.0";
our $VERSION = "0.7.0";

# This list is auto generated by authors/update-aws-lambda-al2.pl; DO NOT EDIT
our $LAYERS = {
Expand Down
2 changes: 1 addition & 1 deletion lib/AWS/Lambda/AL2023.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use 5.026000;
use strict;
use warnings;

our $VERSION = "0.6.0";
our $VERSION = "0.7.0";

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