-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update node dependencies scripting 2024-08-30 (#252)
* Fixed dependabot issues (#247) * Fixed npm audit * Fixed results-viewer npm audit * Update node dependencies 2024-08-29 (#249) * Updated lock file to latest * Updated version * Fixed typo in log message * Added code that if the password checkbox is checked and the variable name field is empty it will populate with 'PASSWORD' * Updated eslint to v9 and renamed file * Updated eslint config to flat config * Fixed lint errors and warnings * Fixed type in eslint file * Fixed the sanitizedCopy functions and their tests (lint found we weren't validating) * Guide viewer eslint (#250) * Updated results-viewer dependencies - Updated eslint to v9 - Renamed .eslintrc to eslint.config.mjs - Updated lock file to latest * Updated eslint.config to new flat config * Fixed lint warnings
- Loading branch information
1 parent
95d7f2e
commit 3e4afab
Showing
35 changed files
with
2,597 additions
and
3,298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fs/ppaas-agent", | ||
"version": "3.3.0", | ||
"version": "3.3.1", | ||
"description": "Agent Service for running pewpew tests", | ||
"main": "dist/src/app.js", | ||
"scripts": { | ||
|
@@ -19,7 +19,6 @@ | |
"type": "git", | ||
"url": "git+https://github.com/FamilySearch/pewpew.git" | ||
}, | ||
"author": "[email protected]", | ||
"bugs": { | ||
"url": "https://github.com/FamilySearch/pewpew/issues" | ||
}, | ||
|
@@ -45,17 +44,19 @@ | |
"@aws-sdk/client-s3": "^3.363.0", | ||
"@aws-sdk/client-sqs": "^3.363.0", | ||
"@aws-sdk/util-stream-node": "^3.363.0", | ||
"@eslint/eslintrc": "^3.1.0", | ||
"@eslint/js": "^9.8.0", | ||
"@types/bunyan": "~1.8.8", | ||
"@types/chai": "^4.3.5", | ||
"@types/express": "^4.17.17", | ||
"@types/mocha": "^10.0.0", | ||
"@types/node": "^20.0.0", | ||
"@types/node": "^22.0.0", | ||
"@types/semver": "^7.5.0", | ||
"@typescript-eslint/eslint-plugin": "^7.0.0", | ||
"@typescript-eslint/parser": "^7.0.0", | ||
"@typescript-eslint/eslint-plugin": "^8.0.0", | ||
"@typescript-eslint/parser": "^8.0.0", | ||
"axios": "~1.7.0", | ||
"chai": "^4.3.7", | ||
"eslint": "^8.40.0", | ||
"eslint": "^9.8.0", | ||
"mocha": "^10.2.0", | ||
"nyc": "^17.0.0", | ||
"typescript": "^5.3.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@fs/ppaas-controller", | ||
"version": "3.3.0", | ||
"version": "3.3.1", | ||
"description": "Controller Service for running pewpew tests", | ||
"private": true, | ||
"scripts": { | ||
|
@@ -25,7 +25,6 @@ | |
"type": "git", | ||
"url": "git+https://github.com/FamilySearch/pewpew.git" | ||
}, | ||
"author": "[email protected]", | ||
"bugs": { | ||
"url": "https://github.com/FamilySearch/pewpew/issues" | ||
}, | ||
|
@@ -36,6 +35,9 @@ | |
"nyc": { | ||
"exclude": "**/*.spec.ts" | ||
}, | ||
"overrides": { | ||
"eslint": "^9.8.0" | ||
}, | ||
"dependencies": { | ||
"@aws-sdk/client-s3": "^3.363.0", | ||
"@aws-sdk/client-secrets-manager": "^3.363.0", | ||
|
@@ -78,6 +80,8 @@ | |
"devDependencies": { | ||
"@aws-sdk/client-sqs": "^3.363.0", | ||
"@aws-sdk/util-stream-node": "^3.363.0", | ||
"@eslint/eslintrc": "^3.1.0", | ||
"@eslint/js": "^9.8.0", | ||
"@next/eslint-plugin-next": "~14.2.0", | ||
"@storybook/addon-actions": "~8.2.0", | ||
"@storybook/addon-links": "~8.2.0", | ||
|
@@ -94,21 +98,21 @@ | |
"@types/js-cookie": "^3.0.2", | ||
"@types/js-yaml": "^4.0.5", | ||
"@types/mocha": "^10.0.0", | ||
"@types/node": "^20.0.0", | ||
"@types/node": "^22.0.0", | ||
"@types/react": "^18.2.12", | ||
"@types/react-dom": "^18.2.5", | ||
"@types/react-transition-group": "^4.4.6", | ||
"@types/semver": "^7.5.0", | ||
"@types/yauzl": "^2.10.0", | ||
"@typescript-eslint/eslint-plugin": "^7.0.0", | ||
"@typescript-eslint/parser": "^7.0.0", | ||
"@typescript-eslint/eslint-plugin": "^8.0.0", | ||
"@typescript-eslint/parser": "^8.0.0", | ||
"aws-sdk-client-mock": "^4.0.0", | ||
"chai": "^4.3.7", | ||
"copy-webpack-plugin": "^12.0.2", | ||
"dotenv": "^16.0.0", | ||
"dotenv-flow": "^4.0.1", | ||
"esbuild": ">=0.17", | ||
"eslint": "^8.40.0", | ||
"eslint": "^9.8.0", | ||
"eslint-config-next": "~14.2.0", | ||
"form-data": "^4.0.0", | ||
"glob-parent": "^6.0.2", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.