Skip to content

Commit 7bc55b0

Browse files
authored
Update to version 6.2.7 (#568)
1 parent c6f8c77 commit 7bc55b0

28 files changed

+51
-381
lines changed

.github/workflows/cdk-nag.yml

-26
This file was deleted.

.github/workflows/code-style-lint.yml

-36
This file was deleted.

.github/workflows/codeql.yml

-24
This file was deleted.

.github/workflows/pipeline-workflow.yml

-26
This file was deleted.

.github/workflows/pull-request-workflow.yml

-26
This file was deleted.

.github/workflows/run-unit-test.yml

-26
This file was deleted.

.github/workflows/stale-issues.yml

-22
This file was deleted.

.viperlightignore

-6
This file was deleted.

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.7] - 2024-08-19
9+
10+
### Security
11+
- Upgraded axios to v1.7.4 for vulnerability CVE-2024-39338
12+
13+
814
## [6.2.6] - 2024-06-27
915

1016
### Added

SECURITY.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Reporting Security Issues
2+
3+
We take all security reports seriously.
4+
When we receive such reports,
5+
we will investigate and subsequently address
6+
any potential vulnerabilities as quickly as possible.
7+
If you discover a potential security issue in this project,
8+
please notify AWS/Amazon Security via our
9+
[vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/)
10+
or directly via email to [AWS Security](mailto:[email protected]).
11+
Please do *not* create a public GitHub issue in this project.

VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.2.6
1+
6.2.7

source/constructs/cdk.json

+1-1
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.6",
5+
"solutionVersion": "custom-v6.2.7",
66
"solutionName": "serverless-image-handler"
77
}
88
}

source/constructs/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/constructs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "constructs",
3-
"version": "6.2.6",
3+
"version": "6.2.7",
44
"description": "Serverless Image Handler Constructs",
55
"license": "Apache-2.0",
66
"author": {

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
359359
"Solutions:ApplicationType": "AWS-Solutions",
360360
"Solutions:SolutionID": "S0ABC",
361361
"Solutions:SolutionName": "sih",
362-
"Solutions:SolutionVersion": "v6.2.6",
362+
"Solutions:SolutionVersion": "v6.2.7",
363363
},
364364
},
365365
"Type": "AWS::ServiceCatalogAppRegistry::Application",
@@ -1228,7 +1228,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
12281228
},
12291229
"S3Key": "Omitted to remove snapshot dependency on hash",
12301230
},
1231-
"Description": "sih (v6.2.6): Performs image edits and manipulations",
1231+
"Description": "sih (v6.2.7): Performs image edits and manipulations",
12321232
"Environment": {
12331233
"Variables": {
12341234
"AUTO_WEBP": {
@@ -1262,7 +1262,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
12621262
"Ref": "SecretsManagerKeyParameter",
12631263
},
12641264
"SOLUTION_ID": "S0ABC",
1265-
"SOLUTION_VERSION": "v6.2.6",
1265+
"SOLUTION_VERSION": "v6.2.7",
12661266
"SOURCE_BUCKETS": {
12671267
"Ref": "SourceBucketsParameter",
12681268
},
@@ -1497,13 +1497,13 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
14971497
},
14981498
"S3Key": "Omitted to remove snapshot dependency on hash",
14991499
},
1500-
"Description": "sih (v6.2.6): Custom resource",
1500+
"Description": "sih (v6.2.7): Custom resource",
15011501
"Environment": {
15021502
"Variables": {
15031503
"AWS_NODEJS_CONNECTION_REUSE_ENABLED": "1",
15041504
"RETRY_SECONDS": "5",
15051505
"SOLUTION_ID": "S0ABC",
1506-
"SOLUTION_VERSION": "v6.2.6",
1506+
"SOLUTION_VERSION": "v6.2.7",
15071507
},
15081508
},
15091509
"Handler": "index.handler",
@@ -2104,7 +2104,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
21042104
"applicationType": "AWS-Solutions",
21052105
"solutionID": "S0ABC",
21062106
"solutionName": "sih",
2107-
"version": "v6.2.6",
2107+
"version": "v6.2.7",
21082108
},
21092109
"Description": "Attribute group for solution information",
21102110
"Name": {

source/constructs/test/constructs.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test("Serverless Image Handler Stack Snapshot", () => {
1212
const stack = new ServerlessImageHandlerStack(app, "TestStack", {
1313
solutionId: "S0ABC",
1414
solutionName: "sih",
15-
solutionVersion: "v6.2.6",
15+
solutionVersion: "v6.2.7",
1616
});
1717

1818
const template = Template.fromStack(stack);

source/custom-resource/package-lock.json

+8-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/custom-resource/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "custom-resource",
3-
"version": "6.2.6",
3+
"version": "6.2.7",
44
"private": true,
55
"description": "Serverless Image Handler custom resource",
66
"license": "Apache-2.0",
@@ -17,7 +17,7 @@
1717
},
1818
"dependencies": {
1919
"aws-sdk": "^2.1529.0",
20-
"axios": "^1.6.5",
20+
"axios": "^1.7.4",
2121
"moment": "^2.30.0",
2222
"uuid": "^9.0.1"
2323
},

0 commit comments

Comments
 (0)