Skip to content

Commit afc0fb5

Browse files
authored
Update to version 6.3.1 (#576)
1 parent 55d24fe commit afc0fb5

File tree

23 files changed

+132
-48
lines changed

23 files changed

+132
-48
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [6.3.1] - 2024-10-02
9+
10+
### Fixed
11+
12+
- Base-64 encoded overlayWith call requiring strings in top/left options rather than numbers
13+
- CloudFront anonymized metrics missing for deployments outside of us-east-1
14+
815
## [6.3.0] - 2024-09-09
916

1017
### Added

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.3.0
1+
6.3.1

source/constructs/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/constructs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "constructs",
3-
"version": "6.3.0",
3+
"version": "6.3.1",
44
"description": "Serverless Image Handler Constructs",
55
"license": "Apache-2.0",
66
"author": {

source/constructs/test/__snapshots__/constructs.test.ts.snap

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
8181
"Config": {
8282
"AnonymousUsage": "Yes",
8383
"SolutionId": "S0ABC",
84-
"Version": "v6.3.0",
84+
"Version": "v6.3.1",
8585
},
8686
},
8787
},
@@ -408,7 +408,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
408408
"Solutions:ApplicationType": "AWS-Solutions",
409409
"Solutions:SolutionID": "S0ABC",
410410
"Solutions:SolutionName": "sih",
411-
"Solutions:SolutionVersion": "v6.3.0",
411+
"Solutions:SolutionVersion": "v6.3.1",
412412
},
413413
},
414414
"Type": "AWS::ServiceCatalogAppRegistry::Application",
@@ -1277,7 +1277,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
12771277
},
12781278
"S3Key": "Omitted to remove snapshot dependency on hash",
12791279
},
1280-
"Description": "sih (v6.3.0): Performs image edits and manipulations",
1280+
"Description": "sih (v6.3.1): Performs image edits and manipulations",
12811281
"Environment": {
12821282
"Variables": {
12831283
"AUTO_WEBP": {
@@ -1492,7 +1492,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
14921492
{
14931493
"Ref": "BackEndImageHandlerCloudFrontApiGatewayLambdaCloudFrontToApiGatewayCloudFrontDistribution03AA31B2",
14941494
},
1495-
""},{"Name":"Region","Value":"Global"}],"MetricName":"Requests"},"Stat":"Sum","Period":604800},"Id":"id_",
1495+
""},{"Name":"Region","Value":"Global"}],"MetricName":"Requests"},"Stat":"Sum","Period":604800},"region":"us-east-1","Id":"id_",
14961496
{
14971497
"Fn::Join": [
14981498
"_",
@@ -1510,7 +1510,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
15101510
{
15111511
"Ref": "BackEndImageHandlerCloudFrontApiGatewayLambdaCloudFrontToApiGatewayCloudFrontDistribution03AA31B2",
15121512
},
1513-
""},{"Name":"Region","Value":"Global"}],"MetricName":"BytesDownloaded"},"Stat":"Sum","Period":604800},"Id":"id_",
1513+
""},{"Name":"Region","Value":"Global"}],"MetricName":"BytesDownloaded"},"Stat":"Sum","Period":604800},"region":"us-east-1","Id":"id_",
15141514
{
15151515
"Fn::Join": [
15161516
"_",
@@ -1977,7 +1977,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
19771977
},
19781978
"S3Key": "Omitted to remove snapshot dependency on hash",
19791979
},
1980-
"Description": "sih (v6.3.0): Custom resource",
1980+
"Description": "sih (v6.3.1): Custom resource",
19811981
"Environment": {
19821982
"Variables": {
19831983
"RETRY_SECONDS": "5",
@@ -2583,7 +2583,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
25832583
"applicationType": "AWS-Solutions",
25842584
"solutionID": "S0ABC",
25852585
"solutionName": "sih",
2586-
"version": "v6.3.0",
2586+
"version": "v6.3.1",
25872587
},
25882588
"Description": "Attribute group for solution information",
25892589
"Name": {

source/constructs/test/constructs.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ test("Serverless Image Handler Stack Snapshot", () => {
1111
context: {
1212
solutionId: "SO0023",
1313
solutionName: "serverless-image-handler",
14-
solutionVersion: "v6.3.0",
14+
solutionVersion: "v6.3.1",
1515
},
1616
});
1717

1818
const stack = new ServerlessImageHandlerStack(app, "TestStack", {
1919
solutionId: "S0ABC",
2020
solutionName: "sih",
21-
solutionVersion: "v6.3.0",
21+
solutionVersion: "v6.3.1",
2222
});
2323

2424
const template = Template.fromStack(stack);

source/custom-resource/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/custom-resource/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "custom-resource",
3-
"version": "6.3.0",
3+
"version": "6.3.1",
44
"private": true,
55
"description": "Serverless Image Handler custom resource",
66
"license": "Apache-2.0",

source/demo-ui/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/demo-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "demo-ui",
3-
"version": "6.3.0",
3+
"version": "6.3.1",
44
"private": true,
55
"description": "Serverless Image Handler demo ui",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)