Skip to content

chore(deps-dev): bump axios from 0.28.0 to 0.32.0#437

Merged
jimmyandrade merged 3 commits into
mainfrom
dependabot/npm_and_yarn/axios-0.32.0
Jul 16, 2026
Merged

chore(deps-dev): bump axios from 0.28.0 to 0.32.0#437
jimmyandrade merged 3 commits into
mainfrom
dependabot/npm_and_yarn/axios-0.32.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 16, 2026

Copy link
Copy Markdown
Contributor

Bumps axios from 0.28.0 to 0.32.0.

Release notes

Sourced from axios's releases.

v0.32.0 — May 4, 2026

This release backports a comprehensive set of security and hardening fixes from the v1.x branch into v0.x, covering prototype-pollution protections, default error redaction, stricter proxy/cookie/socket handling, and one breaking change to merged config and header object prototypes.

⚠️ Breaking Changes & Deprecations

  • Null-prototype merged objects: mergeConfig and header merging now return objects with a null prototype to block prototype-pollution gadgets. Consumers must use Object.prototype.hasOwnProperty.call(obj, key) and avoid implicit string coercion against merged config or header objects. (#10838)

🔒 Security Fixes

  • Default error redaction: AxiosError.toJSON() now redacts sensitive keys by default to prevent credential leaks in logs. The behavior is configurable via config.redact, with defaults exposed on defaults.redact. (#10838)
  • Cookie & XSRF handling: Cookie names are read literally rather than via regex, and only own properties are respected when evaluating withXSRFToken. (#10838)
  • Proxy bypass IPv6 parity: NO_PROXY matching now handles canonical IPv4-mapped IPv6 forms such as ::ffff:127.0.0.1 and ::ffff:7f00:1. (#10838)
  • Node http adapter hardening: Strips Proxy-Authorization when no proxy is in use and gates socketPath behind a new allowedSocketPaths allowlist (string or array, normalized) to reduce accidental Unix socket exposure. (#10838)
  • Browser xhr adapter: Stricter own-property checks when reading config and headers. (#10838)
  • URL parameters: AxiosURLSearchParams keeps %00 encoded and applies consistent encoding throughout. (#10838)
  • Public type surface: Adds formDataHeaderPolicy, redact, and allowedSocketPaths to the TypeScript declarations alongside their runtime defaults. (#10838)

🔧 Maintenance & Chores

  • Repo hygiene: Updates README.md and CHANGELOG.md, adds AGENTS.md, and refreshes the issue and PR templates. (#10838)

Full Changelog

v0.31.1

This release backports a broad set of security hardenings from the v1 line — covering prototype-pollution defences, stream size enforcement, XSRF handling, URL null-byte encoding, and bounded FormData recursion — and drops committed dist/ artefacts along with Bower support.

⚠️ Breaking Changes & Deprecations

  • Bower & Committed dist/ Removed: dist/ bundles are no longer committed to the repo, and bower.json plus the Grunt package2bower task have been removed. CI still builds bundles before publish, so npm/yarn/pnpm consumers are unaffected; installs via Bower or directly from the git tree must migrate to npm or a CDN. (#10747)

🔒 Security Fixes

  • Prototype Pollution in Header Merge (GHSA-6chq-wfr3-2hj9): Tightened isFormData to reject plain/null-prototype objects and require append, and guarded the Node HTTP adapter so data.getHeaders() is only merged when it is not inherited from Object.prototype. Blocks injected headers via polluted getHeaders. (#10750)
  • Prototype Pollution in Config Merging (GHSA-pf86-5x62-jrwf): mergeConfig, defaults resolution, and the HTTP adapter now uses own-property checks for transport, env, Blob, formSerializer, and transforms arrays, and merged configs are returned as null-prototype objects. Prevents hijacking of the request flow through polluted prototypes. (#10752)
  • FormData / Params Recursion DoS: Added a configurable maxDepth (default 100, Infinity disables) to toFormData and params serialisation, throwing AxiosError with code ERR_FORM_DATA_DEPTH_EXCEEDED when exceeded. Circular-reference detection is preserved. (#10728)
  • Null-Byte Injection in Query Strings: Removed the unsafe %00 → null-byte substitution from AxiosURLSearchParams.encode so %00 is preserved as-is. Other encoding behaviour (including %20+) unchanged. (#10737)
  • Consolidated v1 Security Backport: Rolls up remaining v1 hardenings into v0.x: maxContentLength enforcement for responseType: 'stream' via a guarded transform with deferred piping, maxBodyLength enforcement for streamed uploads on native http/https with maxRedirects: 0, and stricter withXSRFToken handling so only own boolean true enables cross-origin XSRF headers. (#10764)

🔧 Maintenance & Chores

  • CODEOWNERS: Added .github/CODEOWNERS with * @jasonsaayman to set a default reviewer for all paths. (#10740)

Full Changelog

v0.31.0

This release backports security fixes from v1.x, hardens the CI/CD supply chain with OIDC publishing and zizmor scanning, resolves TypeScript typing issues in AxiosInstance, and fixes a performance regression in isEmptyObject().

🔒 Security Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for axios since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [axios](https://github.com/axios/axios) from 0.28.0 to 0.32.0.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v0.28.0...v0.32.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 0.32.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies javascript Pull requests that update javascript code labels Jul 16, 2026
@jimmyandrade jimmyandrade self-assigned this Jul 16, 2026
@jimmyandrade
jimmyandrade requested a review from Copilot July 16, 2026 16:10
Sync with main, apply the dev dependency bump, and regenerate the lockfile.

Co-authored-by: Cursor <cursoragent@cursor.com>
@jimmyandrade

Copy link
Copy Markdown
Member

Triaged (continuous drain): synced with , updated to , and

@multei/web@0.1.0 test
jest

console.error
Warning: Failed prop type: Invalid prop className of type boolean supplied to Styled(MuiBox), expected string.
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at Iframe (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:724:20)
at EmbedGoogleMap (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:745:21)
at EmbedGoogleMap (/Users/jimmyandrade/GitHub/multei/web/src/containers/EmbedGoogleMap/index.js:4:27)
at div
at form
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at PureForm (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:873:22)
at LocationStep (/Users/jimmyandrade/GitHub/multei/web/src/components/LocationStep/index.js:17:5)

  at printWarning (node_modules/react/cjs/react.development.js:220:30)
  at error (node_modules/react/cjs/react.development.js:196:5)
  at checkPropTypes (node_modules/react/cjs/react.development.js:1935:11)
  at validatePropTypes (node_modules/react/cjs/react.development.js:2136:7)
  at Object.createElementWithValidation [as createElement] (node_modules/react/cjs/react.development.js:2240:5)
  at Iframe (node_modules/muy/dist/index.cjs.js:729:30)
  at renderWithHooks (node_modules/react-dom/cjs/react-dom.development.js:14985:18)

console.error
Warning: Failed prop type: Invalid prop component supplied to ForwardRef(Link). Expected an element type that can hold a ref. Did you accidentally provide a plain function component instead? For more information see https://material-ui.com/r/caveat-with-refs-guide
at Link (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Link/Link.js:92:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at li
at ListItem (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/ListItem/ListItem.js:129:33)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at ul
at List (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/List/List.js:51:24)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at HorizontalList (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:1072:17)
at div
at Container (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Container/Container.js:92:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at footer
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at Footer (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:861:27)
at PageFooter
at _default (/Users/jimmyandrade/GitHub/multei/web/src/components/Footer/index.js:10:19)

  at printWarning (node_modules/react/cjs/react.development.js:220:30)
  at error (node_modules/react/cjs/react.development.js:196:5)
  at checkPropTypes (node_modules/react/cjs/react.development.js:1935:11)
  at validatePropTypes (node_modules/react/cjs/react.development.js:2136:7)
  at Object.createElementWithValidation [as createElement] (node_modules/react/cjs/react.development.js:2240:5)
  at WithStyles (node_modules/@material-ui/styles/withStyles/withStyles.js:97:42)
  at renderWithHooks (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:6016:18)

console.error
Warning: mockConstructor: ref is not a prop. Trying to access it will result in undefined being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)
at mockConstructor (/Users/jimmyandrade/GitHub/multei/web/node_modules/jest-mock/build/index.js:166:19)
at Typography (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Typography/Typography.js:173:28)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at Link (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Link/Link.js:92:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at li
at ListItem (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/ListItem/ListItem.js:129:33)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at ul
at List (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/List/List.js:51:24)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at HorizontalList (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:1072:17)
at div
at Container (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Container/Container.js:92:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at footer
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at Footer (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:861:27)
at PageFooter
at _default (/Users/jimmyandrade/GitHub/multei/web/src/components/Footer/index.js:10:19)

  12 |       innerRef,
  13 |       partiallyActive,
> 14 |       ref,
     |       ^
  15 |       replace,
  16 |       to,
  17 |       ...rest

  at printWarning (node_modules/react/cjs/react.development.js:220:30)
  at error (node_modules/react/cjs/react.development.js:196:5)
  at Object.ref (node_modules/react/cjs/react.development.js:602:9)
  at __mocks__/gatsby.js:14:7

console.error
Warning: Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?

Check the render method of `ForwardRef(Typography)`.
    at mockConstructor (/Users/jimmyandrade/GitHub/multei/web/node_modules/jest-mock/build/index.js:166:19)
    at Typography (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Typography/Typography.js:173:28)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at Link (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Link/Link.js:92:23)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at li
    at ListItem (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/ListItem/ListItem.js:129:33)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at ul
    at List (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/List/List.js:51:24)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
    at HorizontalList (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:1072:17)
    at div
    at Container (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Container/Container.js:92:23)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at footer
    at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
    at Footer (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:861:27)
    at PageFooter
    at _default (/Users/jimmyandrade/GitHub/multei/web/src/components/Footer/index.js:10:19)

  at printWarning (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:68:30)
  at error (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:44:5)
  at validateFunctionComponentInDev (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:8846:9)
  at mountIndeterminateComponent (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:8813:7)
  at beginWork (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:9966:16)
  at performUnitOfWork (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:13800:12)
  at workLoopSync (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:13728:5)

console.error
Warning: Failed prop type: Invalid prop component supplied to ForwardRef(Link). Expected an element type that can hold a ref. Did you accidentally provide a plain function component instead? For more information see https://material-ui.com/r/caveat-with-refs-guide
at Link (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Link/Link.js:92:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at li
at ListItem (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/ListItem/ListItem.js:129:33)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at ul
at List (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/List/List.js:51:24)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at HorizontalList (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:1072:17)
at div
at Container (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Container/Container.js:92:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at footer
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at Footer (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:861:27)
at PageFooter
at _default (/Users/jimmyandrade/GitHub/multei/web/src/components/Footer/index.js:10:19)
at div
at Paper (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Paper/Paper.js:55:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at ThemeProvider (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/ThemeProvider/ThemeProvider.js:48:24)
at Layout (/Users/jimmyandrade/GitHub/multei/web/src/components/Layout/index.js:14:3)

  at printWarning (node_modules/react/cjs/react.development.js:220:30)
  at error (node_modules/react/cjs/react.development.js:196:5)
  at checkPropTypes (node_modules/react/cjs/react.development.js:1935:11)
  at validatePropTypes (node_modules/react/cjs/react.development.js:2136:7)
  at Object.createElementWithValidation [as createElement] (node_modules/react/cjs/react.development.js:2240:5)
  at WithStyles (node_modules/@material-ui/styles/withStyles/withStyles.js:97:42)
  at renderWithHooks (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:6016:18)

console.error
Warning: mockConstructor: ref is not a prop. Trying to access it will result in undefined being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)
at mockConstructor (/Users/jimmyandrade/GitHub/multei/web/node_modules/jest-mock/build/index.js:166:19)
at Typography (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Typography/Typography.js:173:28)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at Link (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Link/Link.js:92:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at li
at ListItem (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/ListItem/ListItem.js:129:33)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at ul
at List (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/List/List.js:51:24)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at HorizontalList (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:1072:17)
at div
at Container (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Container/Container.js:92:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at footer
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at Footer (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:861:27)
at PageFooter
at _default (/Users/jimmyandrade/GitHub/multei/web/src/components/Footer/index.js:10:19)
at div
at Paper (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Paper/Paper.js:55:23)
at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
at ThemeProvider (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/ThemeProvider/ThemeProvider.js:48:24)
at Layout (/Users/jimmyandrade/GitHub/multei/web/src/components/Layout/index.js:14:3)

  12 |       innerRef,
  13 |       partiallyActive,
> 14 |       ref,
     |       ^
  15 |       replace,
  16 |       to,
  17 |       ...rest

  at printWarning (node_modules/react/cjs/react.development.js:220:30)
  at error (node_modules/react/cjs/react.development.js:196:5)
  at Object.ref (node_modules/react/cjs/react.development.js:602:9)
  at __mocks__/gatsby.js:14:7

console.error
Warning: Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?

Check the render method of `ForwardRef(Typography)`.
    at mockConstructor (/Users/jimmyandrade/GitHub/multei/web/node_modules/jest-mock/build/index.js:166:19)
    at Typography (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Typography/Typography.js:173:28)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at Link (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Link/Link.js:92:23)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at li
    at ListItem (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/ListItem/ListItem.js:129:33)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at ul
    at List (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/List/List.js:51:24)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
    at HorizontalList (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:1072:17)
    at div
    at Container (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Container/Container.js:92:23)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at footer
    at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
    at Footer (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:861:27)
    at PageFooter
    at _default (/Users/jimmyandrade/GitHub/multei/web/src/components/Footer/index.js:10:19)
    at div
    at Paper (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/core/Paper/Paper.js:55:23)
    at WithStyles (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/withStyles/withStyles.js:67:31)
    at ThemeProvider (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/ThemeProvider/ThemeProvider.js:48:24)
    at Layout (/Users/jimmyandrade/GitHub/multei/web/src/components/Layout/index.js:14:3)

  at printWarning (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:68:30)
  at error (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:44:5)
  at validateFunctionComponentInDev (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:8846:9)
  at mountIndeterminateComponent (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:8813:7)
  at beginWork (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:9966:16)
  at performUnitOfWork (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:13800:12)
  at workLoopSync (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:13728:5)

console.error
Warning: Failed prop type: Invalid prop className of type boolean supplied to Styled(MuiBox), expected string.
at StyledComponent (/Users/jimmyandrade/GitHub/multei/web/node_modules/@material-ui/styles/styled/styled.js:95:28)
at Iframe (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:724:20)
at EmbedGoogleMap (/Users/jimmyandrade/GitHub/multei/web/node_modules/muy/dist/index.cjs.js:745:21)
at EmbedGoogleMap (/Users/jimmyandrade/GitHub/multei/web/src/containers/EmbedGoogleMap/index.js:4:27)

  at printWarning (node_modules/react/cjs/react.development.js:220:30)
  at error (node_modules/react/cjs/react.development.js:196:5)
  at checkPropTypes (node_modules/react/cjs/react.development.js:1935:11)
  at validatePropTypes (node_modules/react/cjs/react.development.js:2136:7)
  at Object.createElementWithValidation [as createElement] (node_modules/react/cjs/react.development.js:2240:5)
  at Iframe (node_modules/muy/dist/index.cjs.js:729:30)
  at renderWithHooks (node_modules/react-test-renderer/cjs/react-test-renderer.development.js:6016:18)

-----------------------------------------|---------|----------|---------|---------|------------------------------------------

File % Stmts % Branch % Funcs % Lines Uncovered Line #s
All files 59.87 53.75 48.06 60.91
config/plugins 100 100 100 100
index.js 100 100 100 100
config/siteMetadata 100 100 100 100
index.js 100 100 100 100
src/api 0 0 0 0
index.js 0 0 0 0 4-12
src/components/BackButton 50 100 0 50
index.js 50 100 0 50 6
src/components/CarFrontPhotoStep 100 100 100 100
index.js 100 100 100 100
src/components/CarPhotoInstructionsStep 100 100 100 100
CarPhotoInstructionsStep.js 100 100 100 100
index.js 0 0 0 0
src/components/CarPlateConfirmStep 50 100 0 50
index.js 50 100 0 50 7
src/components/CarReportingWizard 100 87.5 100 100
index.js 100 87.5 100 100 46
src/components/CheckParkingForm 100 100 100 100
index.js 100 100 100 100
src/components/CopyrightText 100 100 100 100
index.js 100 100 100 100
src/components/Footer 100 100 100 100
index.js 100 100 100 100
src/components/GoogleMaps 7.69 100 0 8.33
index.js 7.69 100 0 8.33 8,23-55
src/components/Header 100 50 100 100
index.js 100 50 100 100 31-36
src/components/Layout 100 50 100 100
index.js 100 50 100 100 23-26
src/components/LocationStep 100 88.46 100 100
index.js 100 88.46 100 100 67,104
src/components/NavigationDrawer 66.67 100 0 66.67
index.js 66.67 100 0 66.67 15
src/components/NextButton 100 100 100 100
index.js 100 100 100 100
src/components/ParkingExpansionPanel 100 100 100 100
index.js 100 100 100 100
src/components/SuccessStep 100 100 100 100
index.js 100 100 100 100
src/components/TakeCarFrontPhotoStep 52.63 33.33 20 52.63
index.js 52.63 33.33 20 52.63 39-40,52-53,60-63,71
src/containers/CarFrontPhotoStep 44.44 25 25 47.06
index.js 44.44 25 25 47.06 14-26,29-32
src/containers/CarPlateConfirmStep 0 100 0 0
index.js 0 100 0 0 6-17
src/containers/CarReportingWizard 100 50 100 100
CarReportingWizard.js 100 50 100 100 46-52
renderStepContent.js 100 100 100 100
src/containers/CheckParkingForm 33.33 7.69 10 33.33
index.js 33.33 7.69 10 33.33 23-44,53-54,63,67-72,77-84,88-97,102-108
src/containers/CopyrightText 33.33 100 0 33.33
index.js 33.33 100 0 33.33 6-7
src/containers/EmbedGoogleMap 100 100 100 100
index.js 100 100 100 100
src/containers/Header 100 100 100 100
index.js 100 100 100 100
src/containers/LocationStep 0 0 0 0
index.js 0 0 0 0 16-48
src/containers/NavigationDrawer 33.33 100 0 33.33
index.js 33.33 100 0 33.33 6-7
src/containers/RecoilProviderWrapper 100 100 100 100
index.js 100 100 100 100
src/containers/SuccessStep 100 100 100 100
index.js 100 100 100 100
src/hooks 46.72 27.91 44.12 45.69
useCanvasRef.js 66.67 0 50 66.67 13-14
useFeatureToggle.js 59.38 38.1 75 59.38 12-23,31,49-50,58-59,65-67
useLoadingState.js 85.71 100 66.67 100
useParkingReportState.js 85.71 100 66.67 80 19
usePosition.js 3.57 0 0 3.57 4-47
useReportedParkingsState.js 71.43 100 33.33 71.43 9,11
useSiteMetadata.js 33.33 100 0 33.33 4-20
useStandalone.js 66.67 66.67 100 66.67 5,11
useUserMedia.js 33.33 0 20 35.71 10-19,29-30
useVideoRef.js 54.55 0 33.33 54.55 21-22,30-32
src/hooks/useMenuToggle 85.71 100 66.67 83.33
index.js 85.71 100 66.67 83.33 12
src/hooks/useReportingWizardSteps 92.59 100 75 92.59
handleNext.js 90 100 66.67 90 26,56
index.js 0 0 0 0
useReportingWizardSteps.js 100 100 100 100
src/hooks/useStepsNavigation 87.5 80 54.55 100
index.js 0 0 0 0
useActiveStepState.js 71.43 100 33.33 100
useStepsNavigation.js 90.91 80 62.5 100 37-42
src/services 92.31 0 80 100
healthcheck.js 50 100 0 100
parkings.js 100 0 100 100 3-19
src/themes 100 100 100 100
index.js 100 100 100 100
src/validators 93.75 78.57 75 93.75
activeStepHasValidData.js 100 100 100 100
isCarFrontPhotoValid.js 100 100 100 100
isCarPlateValid.js 50 0 0 50 2
isCurrentPositionValid.js 100 90 100 100 10
----------------------------------------- --------- ---------- --------- --------- ------------------------------------------ passes locally. Squash-merging after CI.

@jimmyandrade
jimmyandrade merged commit 5600fc0 into main Jul 16, 2026
3 checks passed
@jimmyandrade
jimmyandrade deleted the dependabot/npm_and_yarn/axios-0.32.0 branch July 16, 2026 16:12

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the project’s Axios version from 0.28.0 to 0.32.0 (security/hardening backports in the 0.x line) and refreshes the npm lockfile to reflect the new resolution.

Changes:

  • Bump axios to 0.32.0 in package.json.
  • Update package-lock.json for the new Axios version and associated dependency graph changes.

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.

File Description
package.json Updates the declared Axios version (currently under devDependencies).
package-lock.json Updates resolved Axios + transitive dependency versions and metadata.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread package.json
Comment on lines 95 to 97
"axe-core": "4.12.1",
"axios": "0.28.0",
"axios": "0.32.0",
"babel-jest": "26.6.3",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants