Skip to content

Commit

Permalink
Update to version 6.2.7 (#568)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonkrol authored Aug 19, 2024
1 parent c6f8c77 commit 7bc55b0
Show file tree
Hide file tree
Showing 28 changed files with 51 additions and 381 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/cdk-nag.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/workflows/code-style-lint.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/codeql.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/pipeline-workflow.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/pull-request-workflow.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/run-unit-test.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/stale-issues.yml

This file was deleted.

6 changes: 0 additions & 6 deletions .viperlightignore

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.7] - 2024-08-19

### Security
- Upgraded axios to v1.7.4 for vulnerability CVE-2024-39338


## [6.2.6] - 2024-06-27

### Added
Expand Down
11 changes: 11 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Reporting Security Issues

We take all security reports seriously.
When we receive such reports,
we will investigate and subsequently address
any potential vulnerabilities as quickly as possible.
If you discover a potential security issue in this project,
please notify AWS/Amazon Security via our
[vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/)
or directly via email to [AWS Security](mailto:aws-security@amazon.com).
Please do *not* create a public GitHub issue in this project.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.2.6
6.2.7
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.6",
"solutionVersion": "custom-v6.2.7",
"solutionName": "serverless-image-handler"
}
}
4 changes: 2 additions & 2 deletions source/constructs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion source/constructs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "constructs",
"version": "6.2.6",
"version": "6.2.7",
"description": "Serverless Image Handler Constructs",
"license": "Apache-2.0",
"author": {
Expand Down
12 changes: 6 additions & 6 deletions source/constructs/test/__snapshots__/constructs.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
"Solutions:ApplicationType": "AWS-Solutions",
"Solutions:SolutionID": "S0ABC",
"Solutions:SolutionName": "sih",
"Solutions:SolutionVersion": "v6.2.6",
"Solutions:SolutionVersion": "v6.2.7",
},
},
"Type": "AWS::ServiceCatalogAppRegistry::Application",
Expand Down Expand Up @@ -1228,7 +1228,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
},
"S3Key": "Omitted to remove snapshot dependency on hash",
},
"Description": "sih (v6.2.6): Performs image edits and manipulations",
"Description": "sih (v6.2.7): Performs image edits and manipulations",
"Environment": {
"Variables": {
"AUTO_WEBP": {
Expand Down Expand Up @@ -1262,7 +1262,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
"Ref": "SecretsManagerKeyParameter",
},
"SOLUTION_ID": "S0ABC",
"SOLUTION_VERSION": "v6.2.6",
"SOLUTION_VERSION": "v6.2.7",
"SOURCE_BUCKETS": {
"Ref": "SourceBucketsParameter",
},
Expand Down Expand Up @@ -1497,13 +1497,13 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
},
"S3Key": "Omitted to remove snapshot dependency on hash",
},
"Description": "sih (v6.2.6): Custom resource",
"Description": "sih (v6.2.7): Custom resource",
"Environment": {
"Variables": {
"AWS_NODEJS_CONNECTION_REUSE_ENABLED": "1",
"RETRY_SECONDS": "5",
"SOLUTION_ID": "S0ABC",
"SOLUTION_VERSION": "v6.2.6",
"SOLUTION_VERSION": "v6.2.7",
},
},
"Handler": "index.handler",
Expand Down Expand Up @@ -2104,7 +2104,7 @@ exports[`Serverless Image Handler Stack Snapshot 1`] = `
"applicationType": "AWS-Solutions",
"solutionID": "S0ABC",
"solutionName": "sih",
"version": "v6.2.6",
"version": "v6.2.7",
},
"Description": "Attribute group for solution information",
"Name": {
Expand Down
2 changes: 1 addition & 1 deletion source/constructs/test/constructs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test("Serverless Image Handler Stack Snapshot", () => {
const stack = new ServerlessImageHandlerStack(app, "TestStack", {
solutionId: "S0ABC",
solutionName: "sih",
solutionVersion: "v6.2.6",
solutionVersion: "v6.2.7",
});

const template = Template.fromStack(stack);
Expand Down
15 changes: 8 additions & 7 deletions source/custom-resource/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions source/custom-resource/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "custom-resource",
"version": "6.2.6",
"version": "6.2.7",
"private": true,
"description": "Serverless Image Handler custom resource",
"license": "Apache-2.0",
Expand All @@ -17,7 +17,7 @@
},
"dependencies": {
"aws-sdk": "^2.1529.0",
"axios": "^1.6.5",
"axios": "^1.7.4",
"moment": "^2.30.0",
"uuid": "^9.0.1"
},
Expand Down
Loading

0 comments on commit 7bc55b0

Please sign in to comment.