Skip to content

Commit

Permalink
Update to version 6.2.5 (#530)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonkrol committed Jan 12, 2024
1 parent 56304c8 commit 9375a0a
Show file tree
Hide file tree
Showing 34 changed files with 1,261 additions and 3,345 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [6.2.5] - 2024-01-12

### Fixed

- Ensure accurate image metadata when generating Amazon Rekognition compatible images [#374](https://github.com/aws-solutions/serverless-image-handler/issues/374)
- Upgraded axios to v1.6.5 for vulnerability CVE-2023-26159
- Exclude demo-ui-config from being deleted upon BucketDeployment update sync when updating to a new version

### Changed

- 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)
- cdk update to 2.118.0
- typescript update to 5.3.3
- 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)

## [6.2.4] - 2023-12-06

### Changed
Expand Down
3,118 changes: 25 additions & 3,093 deletions deployment/cdk-solution-helper/package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions deployment/cdk-solution-helper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
"devDependencies": {
"@types/adm-zip": "^0.5.2",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/node": "^20.10.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"adm-zip": "^0.5.10",
"aws-cdk-lib": "^2.111.0"
"aws-cdk-lib": "^2.118.0"
},
"overrides": {
"semver": "7.5.4"
Expand Down
2 changes: 1 addition & 1 deletion source/constructs/cdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"app": "npx ts-node --prefer-ts-exts bin/constructs.ts",
"context": {
"solutionId": "SO0023",
"solutionVersion": "custom-v6.2.4",
"solutionVersion": "custom-v6.2.5",
"solutionName": "serverless-image-handler"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ export class CustomResourcesConstruct extends Construct {
const bucketDeployment = new BucketDeployment(this, "DeployWebsite", {
sources: [S3Source.asset(path.join(__dirname, "../../../../demo-ui"))],
destinationBucket: props.hostingBucket,
exclude: ["demo-ui-config.js"],
});
Aspects.of(bucketDeployment).add(new ConditionAspect(this.conditions.deployUICondition));
}
Expand Down

0 comments on commit 9375a0a

Please sign in to comment.