Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(frontend): Fix found vulnerability #79

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [1.3.1] - [unreleased]

### Fix
- Update dependency on vulnerability for @adobe/css-tools
- Update dependency on vulnerability for @adobe/css-tools and axios
- Fix styles on Save Reports and Upload Ratings

### Changed
Expand Down
8 changes: 4 additions & 4 deletions DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ npm/npmjs/-/autoprefixer/10.4.16, MIT, approved, #7494
npm/npmjs/-/autosuggest-highlight/3.3.4, MIT, approved, clearlydefined
npm/npmjs/-/available-typed-arrays/1.0.5, MIT, approved, clearlydefined
npm/npmjs/-/axe-core/4.7.0, MPL-2.0 AND MIT AND (Apache-2.0 AND OFL-1.1), approved, #8318
npm/npmjs/-/axios/1.6.1, MIT, approved, #11338
npm/npmjs/-/axios/1.6.4, MIT, approved, #11338
npm/npmjs/-/axobject-query/3.2.1, Apache-2.0, approved, #9144
npm/npmjs/-/babel-jest/27.5.1, MIT, approved, clearlydefined
npm/npmjs/-/babel-jest/29.7.0, MIT, approved, clearlydefined
Expand Down Expand Up @@ -338,7 +338,7 @@ npm/npmjs/-/find-up/4.1.0, MIT, approved, clearlydefined
npm/npmjs/-/find-up/5.0.0, MIT, approved, clearlydefined
npm/npmjs/-/flat-cache/3.2.0, MIT, approved, clearlydefined
npm/npmjs/-/flatted/3.2.9, ISC AND (ISC AND MIT), approved, #2430
npm/npmjs/-/follow-redirects/1.15.3, MIT, approved, #10782
npm/npmjs/-/follow-redirects/1.15.5, MIT, approved, #10782
npm/npmjs/-/for-each/0.3.3, MIT, approved, clearlydefined
npm/npmjs/-/fork-ts-checker-webpack-plugin/6.5.3, MIT, approved, #7487
npm/npmjs/-/form-data/3.0.1, MIT, approved, clearlydefined
Expand Down Expand Up @@ -384,7 +384,7 @@ npm/npmjs/-/has-flag/4.0.0, MIT, approved, clearlydefined
npm/npmjs/-/has-property-descriptors/1.0.1, MIT, approved, #11098
npm/npmjs/-/has-proto/1.0.1, MIT, approved, #6175
npm/npmjs/-/has-symbols/1.0.3, MIT, approved, clearlydefined
npm/npmjs/-/has-tostringtag/1.0.0, MIT, approved, clearlydefined
npm/npmjs/-/has-tostringtag/1.0.0, MIT, approved, #13161
npm/npmjs/-/has/1.0.4, MIT, approved, #10930
npm/npmjs/-/hasown/2.0.0, MIT, approved, #11097
npm/npmjs/-/he/1.2.0, MIT, approved, clearlydefined
Expand Down Expand Up @@ -1348,7 +1348,7 @@ npm/npmjs/@rushstack/eslint-patch/1.5.1, MIT AND ISC, approved, #10957
npm/npmjs/@sinclair/typebox/0.24.51, MIT, approved, #3330
npm/npmjs/@sinclair/typebox/0.27.8, MIT, approved, clearlydefined
npm/npmjs/@sinonjs/commons/1.8.6, BSD-3-Clause, approved, #4340
npm/npmjs/@sinonjs/commons/3.0.0, BSD-3-Clause, approved, clearlydefined
npm/npmjs/@sinonjs/commons/3.0.0, BSD-3-Clause, approved, #12905
npm/npmjs/@sinonjs/fake-timers/10.3.0, BSD-3-Clause, approved, #9214
npm/npmjs/@sinonjs/fake-timers/8.1.0, BSD-3-Clause, approved, #2563
npm/npmjs/@surma/rollup-plugin-off-main-thread/2.2.3, Apache-2.0, approved, #3006
Expand Down
20 changes: 12 additions & 8 deletions package-lock.json

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

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "14.1.0",
"@testing-library/user-event": "^14.5.1",
"axios": "1.6.1",
"axios": "1.6.4",
"buffer": "^6.0.3",
"cx-portal-shared-components": "0.4.5",
"d3-fetch": "^3.0.1",
Expand Down Expand Up @@ -73,7 +73,9 @@
"babel-jest": "^29.7.0",
"jsdom": "22.0.0",
"sass": "^1.69.5",
"@adobe/css-tools": ">=4.3.2"
"@adobe/css-tools": ">=4.3.2",
"follow-redirects": ">=1.15.4",
"postcss": "^8.4.31"
},
"overrides": {
"react-simple-maps": {
Expand All @@ -83,6 +85,9 @@
"react-scripts": {
"@svgr/webpack": "7.0.0"
},
"resolve-url-loader": {
"postcss": "^8.4.31"
},
"eslint": "8.32.0",
"react-router-dom": "6.14.1",
"keycloak-js": "20.0.5",
Expand Down
Loading