Skip to content

Commit 44368a7

Browse files
authored
Update to Version v6.2.3
Update to Version v6.2.3
2 parents 29fe1e7 + c856368 commit 44368a7

File tree

21 files changed

+559
-465
lines changed

21 files changed

+559
-465
lines changed

CHANGELOG.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.3] - 2023-10-20
9+
10+
### Fixed
11+
12+
- Fixing Security Vulnerabilities
13+
14+
### Changed
15+
16+
- Updated the versions of multiple dependencies
17+
818
## [6.2.2] - 2023-09-29
919

1020
### Changed
@@ -79,9 +89,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7989

8090
## [6.0.0] - 2021-12-21
8191

82-
### ⚠ BREAKING CHANGES
92+
### Changed
8393

84-
Version 6.0.0 does not support upgrading from previous versions due to the update that uses the AWS CDK to generate the AWS CloudFormation template.
94+
- **Note that** Version 6.0.0 does not support upgrading from previous versions due to the update that uses the AWS CDK to generate the AWS CloudFormation template.
8595

8696
### Added
8797

@@ -130,10 +140,6 @@ Version 6.0.0 does not support upgrading from previous versions due to the updat
130140

131141
## [5.1.0] - 2020-11-19
132142

133-
### ⚠ BREAKING CHANGES
134-
135-
- **Image URL Signature**: When image URL signature is enabled, all URLs including existing URLs should have `signature` query parameter.
136-
137143
### Added
138144

139145
- Image URL signature: [#111](https://github.com/aws-solutions/serverless-image-handler/issues/111), [#203](https://github.com/aws-solutions/serverless-image-handler/issues/203), [#221](https://github.com/aws-solutions/serverless-image-handler/issues/221), [#227](https://github.com/aws-solutions/serverless-image-handler/pull/227)
@@ -159,6 +165,7 @@ Version 6.0.0 does not support upgrading from previous versions due to the updat
159165
- Migrate unit tests to use `jest`
160166
- Move all `aws-sdk` in `ImageHandler` Lambda function to `index.js` for the best practice
161167
- Enhance the default error message not to show empty JSON: [#206](https://github.com/aws-solutions/serverless-image-handler/issues/206)
168+
- **Image URL Signature**: When image URL signature is enabled, all URLs including existing URLs should have `signature` query parameter.
162169

163170
### Removed
164171

@@ -194,7 +201,7 @@ Version 6.0.0 does not support upgrading from previous versions due to the updat
194201
- `thumbor-mapping.js`: `99.29%` to `100%`
195202
- `overall`: `91.55%` to `100%`
196203

197-
## [4.2] - 2020-02-06
204+
## [4.2.0] - 2020-02-06
198205

199206
### Added
200207

@@ -226,7 +233,7 @@ Version 6.0.0 does not support upgrading from previous versions due to the updat
226233
- Fix regular expression issue: [#114](https://github.com/aws-solutions/serverless-image-handler/issues/114), [#121](https://github.com/aws-solutions/serverless-image-handler/issues/121), [#125](https://github.com/aws-solutions/serverless-image-handler/issues/125)
227234
- Fix not working quality parameter: [#129](https://github.com/aws-solutions/serverless-image-handler/issues/129)
228235

229-
## [4.1] - 2019-12-31
236+
## [4.1.0] - 2019-12-31
230237

231238
### Added
232239

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
## Code of Conduct
2-
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3-
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
2+
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3+
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
44
[email protected] with any additional questions or comments.
File renamed without changes.

NOTICE.txt renamed to NOTICE

File renamed without changes.

deployment/build-s3-dist.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,5 @@ rm ./*.template.json
4343

4444
headline "[Package] Generate public assets for lambda and ui"
4545
cd "$deployment_dir"/cdk-solution-helper/asset-packager && npm ci
46-
npx ts-node ./index "$staging_dist_dir" "$build_dist_dir"
46+
npx ts-node ./index "$staging_dist_dir" "$build_dist_dir"
47+
rm -rf $staging_dist_dir

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

Lines changed: 67 additions & 35 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
"license": "Apache-2.0",
1414
"devDependencies": {
1515
"@types/adm-zip": "^0.5.2",
16-
"@types/jest": "^29.5.5",
17-
"@types/node": "^20.7.2",
16+
"@types/jest": "^29.5.6",
17+
"@types/node": "^20.8.7",
1818
"jest": "^29.7.0",
1919
"ts-jest": "^29.1.1",
2020
"ts-node": "^10.9.1",
2121
"typescript": "^5.2.2"
2222
},
2323
"dependencies": {
2424
"adm-zip": "^0.5.10",
25-
"aws-cdk-lib": "^2.99.0"
25+
"aws-cdk-lib": "^2.102.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.2",
5+
"solutionVersion": "custom-v6.2.3",
66
"solutionName": "serverless-image-handler"
77
}
88
}

0 commit comments

Comments
 (0)