Skip to content

Commit 9375a0a

Browse files
authored
Update to version 6.2.5 (#530)
1 parent 56304c8 commit 9375a0a

34 files changed

+1261
-3345
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ 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.2.5] - 2024-01-12
9+
10+
### Fixed
11+
12+
- Ensure accurate image metadata when generating Amazon Rekognition compatible images [#374](https://github.com/aws-solutions/serverless-image-handler/issues/374)
13+
- Upgraded axios to v1.6.5 for vulnerability CVE-2023-26159
14+
- Exclude demo-ui-config from being deleted upon BucketDeployment update sync when updating to a new version
15+
16+
### Changed
17+
18+
- Overlay requests with an overlay image with one or both dimensions greater than the base image now returns a 400 bad request status with the message "Image to overlay must have same dimensions or smaller", previously returned a 500 internal error [#405](https://github.com/aws-solutions/serverless-image-handler/issues/405)
19+
- cdk update to 2.118.0
20+
- typescript update to 5.3.3
21+
- GIF files without multiple pages are now treated as non-animated, allowing all filters to be used on them [#460](https://github.com/aws-solutions/serverless-image-handler/issues/460)
22+
823
## [6.2.4] - 2023-12-06
924

1025
### Changed

deployment/cdk-solution-helper/package-lock.json

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

deployment/cdk-solution-helper/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"devDependencies": {
1515
"@types/adm-zip": "^0.5.2",
1616
"@types/jest": "^29.5.6",
17-
"@types/node": "^20.8.7",
17+
"@types/node": "^20.10.4",
1818
"jest": "^29.7.0",
1919
"ts-jest": "^29.1.1",
20-
"ts-node": "^10.9.1",
21-
"typescript": "^5.2.2"
20+
"ts-node": "^10.9.2",
21+
"typescript": "^5.3.3"
2222
},
2323
"dependencies": {
2424
"adm-zip": "^0.5.10",
25-
"aws-cdk-lib": "^2.111.0"
25+
"aws-cdk-lib": "^2.118.0"
2626
},
2727
"overrides": {
2828
"semver": "7.5.4"

source/constructs/cdk.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"app": "npx ts-node --prefer-ts-exts bin/constructs.ts",
33
"context": {
44
"solutionId": "SO0023",
5-
"solutionVersion": "custom-v6.2.4",
5+
"solutionVersion": "custom-v6.2.5",
66
"solutionName": "serverless-image-handler"
77
}
88
}

source/constructs/lib/common-resources/custom-resources/custom-resource-construct.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ export class CustomResourcesConstruct extends Construct {
183183
const bucketDeployment = new BucketDeployment(this, "DeployWebsite", {
184184
sources: [S3Source.asset(path.join(__dirname, "../../../../demo-ui"))],
185185
destinationBucket: props.hostingBucket,
186+
exclude: ["demo-ui-config.js"],
186187
});
187188
Aspects.of(bucketDeployment).add(new ConditionAspect(this.conditions.deployUICondition));
188189
}

0 commit comments

Comments
 (0)