Skip to content

Commit

Permalink
upgrade ip package in frontend for yarn and npm (data-dot-all#1070)
Browse files Browse the repository at this point in the history
### Feature or Bugfix
- Bugfix

### Detail
- upgrade `ip` version 

### Relates
- dependabot issue and data-dot-all#1069 

### 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 Feb 22, 2024
1 parent 44dcb85 commit 3f419a1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
16 changes: 8 additions & 8 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 @@ -80,7 +80,8 @@
"react-scripts": {
"resolve-url-loader": "5.0.0"
},
"postcss": "8.4.31"
"postcss": "8.4.31",
"ip": "1.1.9"
},
"resolutions": {
"react-redux": "^7.2.6",
Expand All @@ -89,7 +90,8 @@
"merge": "2.1.1",
"@babel/traverse": "7.23.2",
"resolve-url-loader": "5.0.0",
"postcss": "8.4.31"
"postcss": "8.4.31",
"ip": "1.1.9"
},
"devDependencies": {
"env-cmd": "^10.1.0",
Expand Down
5 changes: 5 additions & 0 deletions frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8116,6 +8116,11 @@ invariant@^2.2.4:
dependencies:
loose-envify "^1.0.0"

[email protected]:
version "1.1.9"
resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.9.tgz#8dfbcc99a754d07f425310b86a99546b1151e396"
integrity sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==

[email protected]:
version "1.9.1"
resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"
Expand Down

0 comments on commit 3f419a1

Please sign in to comment.