Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to v6.2.5 open-source release #530

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading