Skip to content

Commit 65d4ea3

Browse files
author
Michael Brewer
committed
chore: sync up with latest version
1 parent edb858b commit 65d4ea3

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/examples/core/event_handler/api_gateway/layout/template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Resources:
2323
CodeUri: src
2424
Layers:
2525
# Latest version: https://awslabs.github.io/aws-lambda-powertools-python/latest/#lambda-layer
26-
- !Sub arn:aws:lambda:${AWS::Region}:017000801446:layer:AWSLambdaPowertoolsPython:13
26+
- !Sub arn:aws:lambda:${AWS::Region}:017000801446:layer:AWSLambdaPowertoolsPython:15
2727
Events:
2828
ByUser:
2929
Type: Api

docs/examples/index/lambda_layer_cdk_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def __init__(self, scope: core.Construct, id_: str, env: core.Environment) -> No
88
powertools_layer = aws_lambda.LayerVersion.from_layer_version_arn(
99
self,
1010
id="lambda-powertools",
11-
layer_version_arn=f"arn:aws:lambda:{env.region}:017000801446:layer:AWSLambdaPowertoolsPython:13",
11+
layer_version_arn=f"arn:aws:lambda:{env.region}:017000801446:layer:AWSLambdaPowertoolsPython:15",
1212
)
1313
aws_lambda.Function(
1414
self,

docs/examples/index/lambda_layer_main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ resource "aws_lambda_function" "test_lambda" {
3232
role = aws_iam_role.iam_for_lambda.arn
3333
handler = "index.test"
3434
runtime = "python3.9"
35-
layers = ["arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPython:13"]
35+
layers = ["arn:aws:lambda:{region}:017000801446:layer:AWSLambdaPowertoolsPython:15"]
3636

3737
source_code_hash = filebase64sha256("lambda_function_payload.zip")
3838
}

docs/examples/index/sar_cdk_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
POWERTOOLS_BASE_NAME = "AWSLambdaPowertools"
66
# Find latest from github.com/awslabs/aws-lambda-powertools-python/releases
7-
POWERTOOLS_VER = "1.25.3"
7+
POWERTOOLS_VER = "1.25.5"
88
POWERTOOLS_ARN = "arn:aws:serverlessrepo:eu-west-1:057560766410:applications/aws-lambda-powertools-python-layer"
99

1010

docs/examples/index/sar_main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ data "aws_serverlessapplicationrepository_application" "sar_app" {
2727

2828
variable "aws_powertools_version" {
2929
type = string
30-
default = "1.25.3"
30+
default = "1.25.5"
3131
description = "The AWS Powertools release version"
3232
}
3333

docs/examples/index/sar_template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Resources:
66
Properties:
77
Location:
88
ApplicationId: arn:aws:serverlessrepo:eu-west-1:057560766410:applications/aws-lambda-powertools-python-layer
9-
SemanticVersion: 1.25.3 # change to latest semantic version available in SAR
9+
SemanticVersion: 1.25.5 # change to latest semantic version available in SAR
1010

1111
MyLambdaFunction:
1212
Type: AWS::Serverless::Function

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ If using SAM, you can include this SAR App as part of your shared Layers stack,
167167
Location:
168168
ApplicationId: arn:aws:serverlessrepo:eu-west-1:057560766410:applications/aws-lambda-powertools-python-layer
169169
# Find latest from github.com/awslabs/aws-lambda-powertools-python/releases
170-
SemanticVersion: 1.25.3
170+
SemanticVersion: 1.25.5
171171
```
172172

173173
=== "CDK"

0 commit comments

Comments
 (0)