Skip to content

Commit

Permalink
Upgrade http-proxy-middleware 2.0.7 (#1656)
Browse files Browse the repository at this point in the history
### Feature or Bugfix
- Upgrade dependencies


### Detail
Upgrade `http-proxy-middleware` from 2.0.6 -> 2.0.7
Solves: GHSA-c7qv-q95q-8v27
### Relates
- GHSA-c7qv-q95q-8v27

### Security
Please answer the questions below briefly where applicable, or write
`N/A`. Based on
[OWASP 10](https://owasp.org/Top10/en/).

- Does this PR introduce or modify any input fields or queries - this
includes
fetching data from storage outside the application (e.g. a database, an
S3 bucket)?
  - Is the input sanitized?
- What precautions are you taking before deserializing the data you
consume?
  - Is injection prevented by parametrizing queries?
  - Have you ensured no `eval` or similar functions are used?
- Does this PR introduce any functionality or component that requires
authorization?
- How have you ensured it respects the existing AuthN/AuthZ mechanisms?
  - Are you logging failed auth attempts?
- Are you using or adding any cryptographic features?
  - Do you use a standard proven implementations?
  - Are the used keys controlled by the customer? Where are they stored?
- Are you introducing any new policies/roles/users?
  - Have you used the least-privilege principle? How?


By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.
  • Loading branch information
dlpzx authored Oct 24, 2024
1 parent 3747c9d commit 6cf2389
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions frontend/package-lock.json

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

6 changes: 4 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@
"path-to-regexp": "0.1.10",
"body-parser": "^1.20.3",
"send": "0.19.0",
"rollup": "3.29.5"
"rollup": "3.29.5",
"http-proxy-middleware": "2.0.7"
},
"resolutions": {
"react-redux": "^7.2.6",
Expand All @@ -120,7 +121,8 @@
"path-to-regexp": "0.1.10",
"body-parser": "^1.20.3",
"send": "0.19.0",
"rollup": "3.29.5"
"rollup": "3.29.5",
"http-proxy-middleware": "2.0.7"
},
"devDependencies": {
"env-cmd": "^10.1.0",
Expand Down
8 changes: 4 additions & 4 deletions frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9201,10 +9201,10 @@ http-proxy-agent@^4.0.1:
agent-base "6"
debug "4"

http-proxy-middleware@^2.0.3:
version "2.0.6"
resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz"
integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==
[email protected].7:
version "2.0.7"
resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz"
integrity sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==
dependencies:
"@types/http-proxy" "^1.17.8"
http-proxy "^1.18.1"
Expand Down

0 comments on commit 6cf2389

Please sign in to comment.