Skip to content

Commit

Permalink
Merge pull request #61 from aws-solutions/release/v1.0.7
Browse files Browse the repository at this point in the history
Updated to version v1.0.7
  • Loading branch information
tbelmega authored Aug 19, 2024
2 parents f1ac12c + c789f1e commit c97c499
Show file tree
Hide file tree
Showing 11 changed files with 2,336 additions and 1,863 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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).

## [1.0.7] - 2024-08

- Upgrade `axios` to mitigate [CVE-2024-39338](https://nvd.nist.gov/vuln/detail/CVE-2024-39338)

## [1.0.6] - 2024-07-26

### Security
Expand Down
3,935 changes: 2,141 additions & 1,794 deletions source/custom-resources/package-lock.json

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions source/custom-resources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"url": "https://aws.amazon.com/solutions"
},
"license": "Apache-2.0",
"version": "1.0.2",
"version": "1.0.7",
"private": true,
"dependencies": {
"axios": "^0.21.1",
"axios": "^1.7.4",
"uuid": "^8.1.0"
},
"devDependencies": {
Expand All @@ -22,6 +22,9 @@
"axios-mock-adapter": "^1.19.0",
"jest": "^29.7.0"
},
"overrides": {
"fast-xml-parser": ">=4.4.1"
},
"scripts": {
"clean": "rm -rf dist/ node_modules/ coverage/",
"test": "jest test/*.spec.js --coverage --silent",
Expand Down
16 changes: 8 additions & 8 deletions source/utils/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/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "utils",
"version": "1.0.2",
"version": "1.0.7",
"description": "Custom Resource Helper functions",
"scripts": {
"clean": "rm -rf dist/ node_modules/ coverage/",
Expand Down
30 changes: 15 additions & 15 deletions source/workflow-common/package-lock.json

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

5 changes: 4 additions & 1 deletion source/workflow-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "workflow-common",
"version": "1.0.2",
"version": "1.0.7",
"description": "Common functionality for all Step Functions Workflows",
"author": {
"name": "Amazon Web Services",
Expand All @@ -25,6 +25,9 @@
"package": "npm run clean && npm install --production && npm run package:dist && npm run package:zip",
"build": "npm run clean && npm install"
},
"overrides": {
"fast-xml-parser": ">=4.4.1"
},
"bundledDependencies": [],
"bundleDependencies": []
}
28 changes: 14 additions & 14 deletions source/workflow-export/package-lock.json

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

5 changes: 4 additions & 1 deletion source/workflow-export/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://aws.amazon.com/solutions"
},
"license": "Apache-2.0",
"version": "1.0.2",
"version": "1.0.7",
"private": true,
"dependencies": {
"uuid": "^8.3.0"
Expand All @@ -19,6 +19,9 @@
"aws-sdk-client-mock": "^3.0.0",
"jest": "^29.7.0"
},
"overrides": {
"fast-xml-parser": ">=4.4.1"
},
"scripts": {
"clean": "rm -rf dist/ node_modules/ coverage/",
"test": "jest test/*.spec.js --coverage --silent",
Expand Down
Loading

0 comments on commit c97c499

Please sign in to comment.