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(deps): update dependency axios to ^0.28.0 [security] - autoclosed #1730

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 10, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
axios (source) ^0.21.4 -> ^0.28.0 age adoption passing confidence

GitHub Vulnerability Alerts

CVE-2023-45857

An issue discovered in Axios 0.8.1 through 1.5.1 inadvertently reveals the confidential XSRF-TOKEN stored in cookies by including it in the HTTP header X-XSRF-TOKEN for every request made to any host allowing attackers to view sensitive information.


Release Notes

axios/axios (axios)

v0.28.0

Compare Source

Release notes:

Bug Fixes
Backports from v1.x:
  • Allow null indexes on formSerializer and paramsSerializer v0.x (#​4961)
  • Fixing content-type header repeated #​4745
  • Fixed timeout error message for HTTP 4738
  • Added axios.formToJSON method (#​4735)
  • URL params serializer (#​4734)
  • Fixed toFormData Blob issue on node>v17 #​4728
  • Adding types for progress event callbacks #​4675
  • Fixed max body length defaults #​4731
  • Added data URL support for node.js (#​4725)
  • Added isCancel type assert (#​4293)
  • Added the ability for the url-encoded-form serializer to respect the formSerializer config (#​4721)
  • Add string[] to AxiosRequestHeaders type (#​4322)
  • Allow type definition for axios instance methods (#​4224)
  • Fixed AxiosError stack capturing; (#​4718)
  • Fixed AxiosError status code type; (#​4717)
  • Adding Canceler parameters config and request (#​4711)
  • fix(types): allow to specify partial default headers for instance creation (#​4185)
  • Added blob to the list of protocols supported by the browser (#​4678)
  • Fixing Z_BUF_ERROR when no content (#​4701)
  • Fixed race condition on immediate requests cancellation (#​4261)
  • Added a clear() function to the request and response interceptors object so a user can ensure that all interceptors have been removed from an Axios instance https://github.com/axios/axios/pull/4248
  • Added generic AxiosAbortSignal TS interface to avoid importing AbortController polyfill (#​4229)
  • Fix TS definition for AxiosRequestTransformer (#​4201)
  • Use type alias instead of interface for AxiosPromise (#​4505)
  • Include request and config when creating a CanceledError instance (#​4659)
  • Added generic TS types for the exposed toFormData helper (#​4668)
  • Optimized the code that checks cancellation (#​4587)
  • Replaced webpack with rollup (#​4596)
  • Added stack trace to AxiosError (#​4624)
  • Updated AxiosError.config to be optional in the type definition (#​4665)
  • Removed incorrect argument for NetworkError constructor (#​4656)

v0.27.2

Compare Source

Fixes and Functionality:

  • Fixed FormData posting in browser environment by reverting #​3785 (#​4640)
  • Enhanced protocol parsing implementation (#​4639)
  • Fixed bundle size

v0.27.1

Compare Source

Fixes and Functionality:
  • Removed import of url module in browser build due to huge size overhead and builds being broken (#​4594)
  • Bumped follow-redirects to ^1.14.9 (#​4615)

v0.27.0

Compare Source

Breaking changes:
  • New toFormData helper function that allows the implementor to pass an object and allow axios to convert it to FormData (#​3757)
  • Removed functionality that removed the the Content-Type request header when passing FormData (#​3785)
  • (*) Refactored error handling implementing AxiosError as a constructor, this is a large change to error handling on the whole (#​3645)
  • Separated responsibility for FormData instantiation between transformRequest and toFormData (#​4470)
  • (*) Improved and fixed multiple issues with FormData support (#​4448)
QOL and DevX improvements:
  • Added a multipart/form-data testing playground allowing contributors to debug changes easily (#​4465)
Fixes and Functionality:
  • Refactored project file structure to avoid circular imports (#​4515) & (#​4516)
  • Bumped follow-redirects to ^1.14.9 (#​4562)
Internal and Tests:
  • Updated dev dependencies to latest version
Documentation:
  • Fixing incorrect link in changelog (#​4551)
Notes:
  • (*) Please read these pull requests before updating, these changes are very impactful and far reaching.

v0.26.1

Compare Source

Fixes and Functionality:
  • Refactored project file structure to avoid circular imports (#​4220)

v0.26.0

Compare Source

Fixes and Functionality:
  • Fixed The timeoutErrorMessage property in config not work with Node.js (#​3581)
  • Added errors to be displayed when the query parsing process itself fails (#​3961)
  • Fix/remove url required (#​4426)
  • Update follow-redirects dependency due to Vulnerability (#​4462)
  • Bump karma from 6.3.11 to 6.3.14 (#​4461)
  • Bump follow-redirects from 1.14.7 to 1.14.8 (#​4473)

v0.25.0

Compare Source

Breaking changes:
  • Fixing maxBodyLength enforcement (#​3786)
  • Don't rely on strict mode behaviour for arguments (#​3470)
  • Adding error handling when missing url (#​3791)
  • Update isAbsoluteURL.js removing escaping of non-special characters (#​3809)
  • Use native Array.isArray() in utils.js (#​3836)
  • Adding error handling inside stream end callback (#​3967)
Fixes and Functionality:
  • Added aborted even handler (#​3916)
  • Header types expanded allowing boolean and number types (#​4144)
  • Fix cancel signature allowing cancel message to be undefined (#​3153)
  • Updated type checks to be formulated better (#​3342)
  • Avoid unnecessary buffer allocations (#​3321)
  • Adding a socket handler to keep TCP connection live when processing long living requests (#​3422)
  • Added toFormData helper function (#​3757)
  • Adding responseEncoding prop type in AxiosRequestConfig (#​3918)
Internal and Tests:
  • Adding axios-test-instance to ecosystem (#​3786)
  • Optimize the logic of isAxiosError (#​3546)
  • Add tests and documentation to display how multiple inceptors work (#​3564)
  • Updating follow-redirects to version 1.14.7 (#​4379)
Documentation:
  • Fixing changelog to show corrext pull request (#​4219)
  • Update upgrade guide for https proxy setting (#​3604)

Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:

v0.24.0

Compare Source

Breaking changes:
  • Revert: change type of AxiosResponse to any, please read lengthy discussion here: (#​4141) pull request: (#​4186)

Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:

v0.23.0

Compare Source

Breaking changes:
  • Distinguish request and response data types (#​4116)
  • Change never type to unknown (#​4142)
  • Fixed TransitionalOptions typings (#​4147)
Fixes and Functionality:
  • Adding globalObject: 'this' to webpack config (#​3176)
  • Adding insecureHTTPParser type to AxiosRequestConfig (#​4066)
  • Fix missing semicolon in typings (#​4115)
  • Fix response headers types (#​4136)
Internal and Tests:
  • Improve timeout error when timeout is browser default (#​3209)
  • Fix node version on CI (#​4069)
  • Added testing to TypeScript portion of project (#​4140)
Documentation:
  • Rename Angular to AngularJS (#​4114)

Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:

v0.22.0

Compare Source

Fixes and Functionality:
  • Caseless header comparing in HTTP adapter (#​2880)
  • Avoid package.json import fixing issues and warnings related to this (#​4041), (#​4065)
  • Fixed cancelToken leakage and added AbortController support (#​3305)
  • Updating CI to run on release branches
  • Bump follow redirects version
  • Fixed default transitional config for custom Axios instance; (#​4052)

Huge thanks to everyone who contributed to this release via code (authors listed below) or via reviews and triaging on GitHub:


Configuration

📅 Schedule: Branch creation - "" in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 383c8e3 to d7e7309 Compare November 13, 2023 14:48
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from d7e7309 to 80fc706 Compare November 20, 2023 23:29
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 80fc706 to 04982af Compare November 20, 2023 23:32
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 04982af to cc1933d Compare November 20, 2023 23:40
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from cc1933d to 6843d48 Compare November 24, 2023 12:14
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 6843d48 to 75dd659 Compare December 18, 2023 11:16
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 75dd659 to 6e15ca6 Compare December 18, 2023 12:56
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 6e15ca6 to b7cbeca Compare December 21, 2023 17:03
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from b7cbeca to 1baf1dd Compare December 21, 2023 17:39
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 1baf1dd to 945f93e Compare December 21, 2023 17:47
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 945f93e to ee189a3 Compare January 15, 2024 10:36
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from ee189a3 to 6b33077 Compare January 15, 2024 10:46
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 6b33077 to 4f83bd8 Compare January 15, 2024 14:57
Copy link
Contributor Author

renovate bot commented Jan 15, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: back/strapi/yarn.lock
/opt/containerbase/tools/corepack/0.26.0/14.21.3/node_modules/corepack/dist/yarn.js:2
process.env.COREPACK_ENABLE_DOWNLOAD_PROMPT??='1'
                                           ^^^

SyntaxError: Unexpected token '??='
    at wrapSafe (internal/modules/cjs/loader.js:1029:16)
    at Module._compile (internal/modules/cjs/loader.js:1078:27)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1143:10)
    at Module.load (internal/modules/cjs/loader.js:979:32)
    at Function.Module._load (internal/modules/cjs/loader.js:819:12)
    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:75:12)
    at internal/main/run_main_module.js:17:47

@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 4f83bd8 to 3dacf76 Compare January 15, 2024 16:23
Copy link

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 5e7a4e6 to d5d361b Compare July 1, 2024 09:21
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from d5d361b to 92cd94f Compare July 3, 2024 14:43
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 92cd94f to 175c882 Compare July 8, 2024 08:08
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 175c882 to c6453bc Compare July 22, 2024 11:51
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from c6453bc to 729b792 Compare July 22, 2024 15:47
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 729b792 to 7f73a49 Compare July 22, 2024 15:52
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 7f73a49 to 260d862 Compare July 29, 2024 09:54
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 260d862 to 377c533 Compare July 29, 2024 13:50
@renovate renovate bot force-pushed the renovate/npm-axios-vulnerability branch from 377c533 to 98592df Compare July 29, 2024 14:05
Copy link

Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@babel/[email protected] None 0 330 kB existentialism, hzoo, jlhwung, ...1 more
npm/@bcoe/[email protected] None 0 277 kB bcoe
npm/@eslint-community/[email protected] None 0 379 kB eslint-community-bot
npm/@eslint-community/[email protected] None 0 446 kB eslint-community-bot
npm/@eslint/[email protected] filesystem, unsafe 0 158 kB eslintbot
npm/@humanwhocodes/[email protected] None 0 34.9 kB nzakas
npm/@humanwhocodes/[email protected] None 0 49.4 kB nzakas
npm/@jest/[email protected] unsafe 0 145 kB simenb
npm/@jest/[email protected] None 0 28.3 kB simenb
npm/@jest/[email protected] None 0 5.23 kB simenb
npm/@jest/[email protected] None 0 5.26 kB simenb
npm/@jest/[email protected] environment, unsafe 0 115 kB simenb
npm/@jest/[email protected] None 0 5.07 kB simenb
npm/@jest/[email protected] None 0 13.6 kB simenb
npm/@pkgr/[email protected] None 0 8.54 kB jounqin
npm/@socialgouv/[email protected] None 0 16.3 kB socialgroovybot
npm/@svgr/[email protected] None 0 13.5 kB neoziro
npm/@svgr/[email protected] None 0 5.01 kB neoziro
npm/@svgr/[email protected] None 0 3.71 kB neoziro
npm/@svgr/[email protected] None 0 7.04 kB neoziro
npm/@svgr/[email protected] None 0 13.8 kB neoziro
npm/@svgr/[email protected] None 0 7.99 kB neoziro
npm/@svgr/[email protected] None 0 13.2 kB neoziro
npm/@svgr/[email protected] None 0 32.8 kB neoziro
npm/@svgr/[email protected] None 0 14.1 kB neoziro
npm/@svgr/[email protected] None 0 24.8 kB neoziro
npm/@svgr/[email protected] None 0 73 kB neoziro
npm/@svgr/[email protected] None 0 12.8 kB neoziro
npm/@svgr/[email protected] None 0 8.72 kB neoziro
npm/@testing-library/[email protected] environment 0 127 kB thymikee
npm/@trysound/[email protected] None 0 48.8 kB trysound
npm/@types/[email protected] None 0 71.7 kB types
npm/@types/[email protected] None 0 31.7 kB types
npm/@types/[email protected] None 0 3 kB types
npm/@types/[email protected] None 0 867 kB types
npm/@types/[email protected] None 0 7.33 kB types
npm/@types/[email protected] None 0 24.3 kB types
npm/@types/[email protected] None 0 5.72 kB types
npm/@types/[email protected] None 0 7.64 kB types
npm/@types/[email protected] None 0 19.4 kB types
npm/@types/[email protected] None 0 23.3 kB types
npm/@types/[email protected] None 0 6.67 kB types
npm/@types/[email protected] None 0 12.8 kB types
npm/@typescript-eslint/[email protected] None 0 2.82 MB jameshenry
npm/@typescript-eslint/[email protected] None 0 422 kB jameshenry
npm/@typescript-eslint/[email protected] None 0 18.2 kB jameshenry
npm/@typescript-eslint/[email protected] None 0 592 kB jameshenry
npm/@typescript-eslint/[email protected] None 0 109 kB jameshenry
npm/@typescript-eslint/[email protected] None 0 223 kB jameshenry
npm/@typescript-eslint/[email protected] environment, filesystem 0 553 kB jameshenry
npm/@typescript-eslint/[email protected] None 0 501 kB jameshenry
npm/@typescript-eslint/[email protected] None 0 18.4 kB jameshenry
npm/[email protected] None 0 24.4 kB rreverser
npm/[email protected] environment 0 26.1 kB jonschlinkert
npm/[email protected] None 0 172 kB jessebeach
npm/[email protected] None 0 26.3 kB ljharb
npm/[email protected] None 0 3.17 kB sindresorhus
npm/[email protected] None 0 18.7 kB ljharb
npm/[email protected] None 0 19.1 kB ljharb
npm/[email protected] None 0 20.9 kB ljharb
npm/[email protected] None 0 125 kB kyldvs
npm/[email protected] None 0 2.78 MB npmdeque
npm/[email protected] None 0 98.8 kB jessebeach
npm/[email protected] None 0 30.4 kB kaicataldo
npm/[email protected] environment, filesystem 0 25.1 kB tleunen
npm/[email protected] None 0 139 kB guybedford
npm/[email protected] None 0 16 kB jongleberry
npm/[email protected] environment, eval, filesystem 0 1.09 MB zloirock
npm/[email protected] None 0 15.9 kB simenb
npm/[email protected] unsafe 0 606 kB lahmatiy
npm/[email protected] None 0 11.8 kB lazurski
npm/[email protected] None 0 10 kB tootallnate
npm/[email protected] None 0 23.9 kB joshuakgoldberg
npm/[email protected] None 0 8.11 kB thlorenz
npm/[email protected] None 0 3.77 kB sindresorhus
npm/[email protected] None 0 52.7 kB simenb
npm/[email protected] None 0 5.42 kB sindresorhus
npm/[email protected] None 0 106 kB eslint
npm/[email protected] None 0 10.5 kB blakeembrey
npm/[email protected] unsafe 0 212 kB evilebottnawi
npm/[email protected] environment 0 189 kB jonschlinkert
npm/[email protected] None 0 11 kB ljharb
npm/[email protected] None 0 18.2 kB lydell
npm/[email protected] None 0 5.29 kB ljharb
npm/[email protected] None 0 46.8 kB jounqin
npm/[email protected] None 0 51.1 kB ljharb
npm/[email protected] filesystem, unsafe 0 1.06 MB ljharb
npm/[email protected] filesystem 0 317 kB simenb
npm/[email protected] None 0 674 kB ljharb
npm/[email protected] None 0 58.3 kB jounqin
npm/[email protected] environment 0 116 kB gaearon
npm/[email protected] filesystem 0 777 kB ljharb
npm/[email protected] None 0 36.7 kB lydell
npm/[email protected] None 0 86.4 kB leo-buneev
npm/[email protected] None 0 78.4 kB eslintbot
npm/[email protected] None 0 358 kB mysticatea
npm/[email protected] None 0 23.7 kB eslintbot
npm/[email protected] filesystem 0 3.19 MB eslintbot
npm/[email protected] None 0 68.8 kB eslintbot
npm/[email protected] None 0 1.04 MB michaelficarra
npm/[email protected] None 0 13.5 kB michaelficarra
npm/[email protected] None 0 59.8 kB cowboy
npm/[email protected] None 0 146 kB simenb
npm/[email protected] None 0 52.3 kB luin
npm/[email protected] None 0 9.44 kB hiddentao
npm/[email protected] None 0 21.8 kB endless
npm/[email protected] filesystem 0 25.6 kB royriojas
npm/[email protected] filesystem 0 20.6 kB tleunen
npm/[email protected] filesystem 0 29.4 kB jaredwray
npm/[email protected] None 0 40.3 kB webreflection
npm/[email protected] None 0 32.2 kB endless
npm/[email protected] None 0 43.5 kB mikolalysenko
npm/[email protected] filesystem, unsafe 0 103 kB hirokiosame
npm/[email protected] filesystem 0 21.8 kB sindresorhus
npm/[email protected] None 0 812 kB mattpauldavies
npm/[email protected] None 0 3.02 kB tarruda
npm/[email protected] None 0 13.1 kB webreflection
npm/[email protected] None 0 51.5 kB kael
npm/[email protected] None 0 4.73 kB sindresorhus
npm/[email protected] None 0 3.28 kB sindresorhus
npm/[email protected] filesystem 0 37.6 kB oss-bot
npm/[email protected] filesystem 0 34.1 kB oss-bot
npm/[email protected] None 0 294 kB oss-bot
npm/[email protected] environment 0 18.2 kB simenb
npm/[email protected] unsafe 0 72 kB simenb
npm/[email protected] None 0 33.8 kB simenb
npm/[email protected] None 0 114 kB simenb
npm/[email protected] None 0 85.5 kB simenb
npm/[email protected] None 0 8.99 kB simenb
npm/[email protected] None 0 33.7 kB simenb
npm/[email protected] unsafe 0 5.59 kB simenb
npm/[email protected] None 0 28.4 kB simenb
npm/[email protected] None 0 5.68 kB arcanis
npm/[email protected] None 0 8.92 kB simenb
npm/[email protected] environment, unsafe 0 65.7 kB simenb
npm/[email protected] environment 0 29.6 kB simenb
npm/[email protected] unsafe 0 89.2 kB simenb
npm/[email protected] eval 0 83.5 kB simenb
npm/[email protected] None 0 5.01 kB simenb
npm/[email protected] None 0 5.4 kB dominictarr
npm/[email protected] None 0 14.2 kB samn
npm/[email protected] None 0 236 kB ljharb
npm/[email protected] None 0 27.8 kB jaredwray
npm/[email protected] None 0 1.54 MB mcg
npm/[email protected] None 0 32 kB mcg
npm/[email protected] None 0 24.9 kB gkz
npm/[email protected] None 0 54.1 kB jdalton
npm/[email protected] None 0 19.8 kB jdalton
npm/[email protected] None 0 17.7 kB blakeembrey
npm/[email protected] None 0 5.65 kB megawac
npm/[email protected] None 0 25.1 kB blakeembrey
npm/[email protected] None 0 29.2 kB endless
npm/[email protected] None 0 32.6 kB ljharb
npm/[email protected] None 0 16.3 kB ljharb
npm/[email protected] None 0 16.4 kB ljharb
npm/[email protected] None 0 31.5 kB ljharb
npm/[email protected] None 0 50.2 kB gkz
npm/[email protected] None 0 6.26 kB es128
npm/[email protected] filesystem 0 5.41 kB sindresorhus
npm/[email protected] None 0 4.25 kB sindresorhus
npm/[email protected] None 0 36.7 kB gkz
npm/[email protected] None 0 9.58 kB bpscott
npm/[email protected] environment, filesystem, unsafe 0 11.2 MB prettier-bot
npm/[email protected] None 0 84 kB ndubien
npm/[email protected] None 0 15.3 kB kristerkari
npm/[email protected] None 0 302 kB mysticatea
npm/[email protected] filesystem 0 6.62 kB stephenhandley
npm/[email protected] None 0 175 kB acemarke

🚮 Removed packages: npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

@renovate renovate bot changed the title fix(deps): update dependency axios to ^0.28.0 [security] fix(deps): update dependency axios to ^0.28.0 [security] - autoclosed Aug 6, 2024
@renovate renovate bot closed this Aug 6, 2024
@renovate renovate bot deleted the renovate/npm-axios-vulnerability branch August 6, 2024 07:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants