Skip to content

Commit 08e3163

Browse files
authored
Merge pull request #250 from alexcasalboni/main
Update Lambda Power Tuning semantic version
2 parents 04ada7b + cf5f054 commit 08e3163

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

the-lambda-power-tuner/csharp/src/TheLambdaPowerTuner/TheLambdaPowerTunerStack.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ internal TheLambdaPowerTunerStack(Construct scope, string id, IStackProps props
3939
Location = new SAM.CfnApplication.ApplicationLocationProperty
4040
{
4141
ApplicationId = "arn:aws:serverlessrepo:us-east-1:451282441545:applications/aws-lambda-power-tuning",
42-
SemanticVersion = "3.4.0"
42+
SemanticVersion = "4.2.0"
4343
},
4444
Parameters = new Dictionary<string, object>
4545
{

the-lambda-power-tuner/java/src/main/java/com/cdkpatterns/TheLambdaPowerTunerStack.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public TheLambdaPowerTunerStack(final Construct scope, final String id, final St
4545
.location(new ApplicationLocationProperty
4646
.Builder()
4747
.applicationId("arn:aws:serverlessrepo:us-east-1:451282441545:applications/aws-lambda-power-tuning")
48-
.semanticVersion("3.4.0")
48+
.semanticVersion("4.2.0")
4949
.build())
5050
.parameters(Map.of(
5151
"lambdaResource", lambdaResource,

the-lambda-power-tuner/python/template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Resources:
3838
Properties:
3939
Location:
4040
ApplicationId: arn:aws:serverlessrepo:us-east-1:451282441545:applications/aws-lambda-power-tuning
41-
SemanticVersion: 3.2.4
41+
SemanticVersion: 4.2.0
4242
Parameters:
4343
lambdaResource: "*"
4444
PowerValues: 128,256,512,1024,1536,3008

the-lambda-power-tuner/python/the_lambda_power_tuner/the_lambda_power_tuner_stack.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
3030
# https://serverlessrepo.aws.amazon.com/applications/arn:aws:serverlessrepo:us-east-1:451282441545:applications~aws-lambda-power-tuning
3131
sam.CfnApplication(self, 'powerTuner', location={
3232
"applicationId": "arn:aws:serverlessrepo:us-east-1:451282441545:applications/aws-lambda-power-tuning",
33-
"semanticVersion": "3.4.0"
33+
"semanticVersion": "4.2.0"
3434
}, parameters={
3535
"lambdaResource": lambda_resource,
3636
"PowerValues": power_values

the-lambda-power-tuner/typescript/lib/the-lambda-power-tuner-stack.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class TheLambdaPowerTunerStack extends cdk.Stack {
2929
new sam.CfnApplication(this, 'powerTuner', {
3030
location: {
3131
applicationId: 'arn:aws:serverlessrepo:us-east-1:451282441545:applications/aws-lambda-power-tuning',
32-
semanticVersion: '3.4.0'
32+
semanticVersion: '4.2.0'
3333
},
3434
parameters: {
3535
"lambdaResource": lambdaResource,

the-lambda-power-tuner/typescript/template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Resources:
3838
Properties:
3939
Location:
4040
ApplicationId: arn:aws:serverlessrepo:us-east-1:451282441545:applications/aws-lambda-power-tuning
41-
SemanticVersion: 3.2.4
41+
SemanticVersion: 4.2.0
4242
Parameters:
4343
lambdaResource: "*"
4444
PowerValues: 128,256,512,1024,1536,3008

the-lambda-power-tuner/typescript/test/the-lambda-power-tuner.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test('SAR Application Created', () => {
1010
expectCDK(stack).to(haveResourceLike("AWS::Serverless::Application", {
1111
"Location": {
1212
"ApplicationId": "arn:aws:serverlessrepo:us-east-1:451282441545:applications/aws-lambda-power-tuning",
13-
"SemanticVersion": "3.4.0"
13+
"SemanticVersion": "4.2.0"
1414
}
1515
}));
1616
});

0 commit comments

Comments
 (0)