Skip to content

Bump axios, @nestjs/common, @nestjs/core, @nestjs/mongoose, @nestjs/passport, @nestjs/platform-express, @nestjs/testing and wait-on in /nest-auth#461

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/nest-auth/multi-49b634cc54
Open

Bump axios, @nestjs/common, @nestjs/core, @nestjs/mongoose, @nestjs/passport, @nestjs/platform-express, @nestjs/testing and wait-on in /nest-auth#461
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/nest-auth/multi-49b634cc54

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 5, 2026

Bumps axios to 1.16.0 and updates ancestor dependencies axios, @nestjs/common, @nestjs/core, @nestjs/mongoose, @nestjs/passport, @nestjs/platform-express, @nestjs/testing and wait-on. These dependencies need to be updated together.

Updates axios from 0.24.0 to 1.16.0

Release notes

Sourced from axios's releases.

v1.16.0 — May 2, 2026

This release adds support for the QUERY HTTP method and a new ECONNREFUSED error constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.

⚠️ Notable Changes

A handful of fixes in this release are either security-adjacent or change observable behaviour. Please review before upgrading:

  • Fetch adapter now enforces maxBodyLength and maxContentLength. These limits were silently ignored on the fetch adapter prior to 1.16.0 — anyone relying on them as a safety net (DoS protection, accidental large uploads) had no protection. (#10795)
  • Proxy requests now preserve user-supplied Host headers. Previously, the proxy path could overwrite a custom Host. Virtual-host-style routing through a proxy will now behave correctly. (#10822)
  • Basic auth credentials embedded in URLs are now URL-decoded. If you have percent-encoded credentials in a URL (e.g. https://user:p%40ss@host), the decoded value is what now goes on the wire. (#10825)
  • parseProtocol now strictly requires a colon in the protocol separator. Strings that loosely parsed as protocols before may no longer match. (#10729)
  • Deprecated unescape() replaced with modern UTF-8 encoding. Non-ASCII URL handling is now spec-correct; consumers depending on legacy unescape() quirks may see different output bytes. (#7378)
  • transformRequest input typing change was reverted. The typing change introduced in #10745 was reverted in #10810 after follow-up review — net behavior is unchanged from 1.15.2. (#10745, #10810)

🚀 New Features

  • QUERY HTTP Method: Added support for the QUERY HTTP method across adapters and type definitions. (#10802)
  • ECONNREFUSED Error Constant: Exposed ECONNREFUSED as a constant on AxiosError so callers can match connection-refused failures without comparing string literals (closes #6485). (#10680)
  • Encode Helper Export: Exported the internal encode helper from buildURL so userland param serializers can reuse the same encoding logic that axios uses internally. (#6897)

🐛 Bug Fixes

  • HTTP Adapter — Redirects & Headers: Cleared stale headers when a redirect targets a no-proxy host, fixed the redirect listener chain so listeners no longer stack across hops, restored the missing requestDetails argument on beforeRedirect, preserved user-supplied Host headers when forwarding through a proxy, and properly URL-decoded basic auth credentials. (#10794, #10800, #6241, #10822, #10825)
  • HTTP Adapter — Streams & Timeouts: Preserved the partial response object on AxiosError when a stream is aborted after headers arrive, honoured the timeout option during the connect phase when redirects are disabled, and resolved an unsettled-promise hang when an aborted request was combined with compression and maxRedirects: 0. (#10708, #10819, #7149)
  • Fetch Adapter: Enforced maxBodyLength / maxContentLength in the fetch adapter, set the User-Agent header to match the HTTP adapter, preserved the original abort reason instead of replacing it with a generic error, and deferred global access so importing the module no longer throws a TypeError in restricted environments. (#10795, #10772, #10806, #7260)
  • XHR Adapter: Unsubscribed the cancelToken and AbortSignal listeners on the error, timeout, and abort code paths to prevent leaked subscriptions. (#10787)
  • Error Handling: Attached the parsed response to AxiosError when JSON.parse fails inside dispatchRequest, prevented settle from emitting undefined error codes, and tightened the parseProtocol regex to require a colon in the protocol separator. (#10724, #7276, #10729)
  • Types & Exports: Aligned the CommonJS CancelToken typings with the ESM build, fixed a compiler error caused by RawAxiosHeaders, and re-exported create from the package index. (#7414, #6389, #6460)
  • UTF-8 Encoding: Replaced the deprecated unescape() call with a modern UTF-8 encoding implementation. (#7378)
  • Misc Cleanup: Resolved a batch of small inconsistencies and gadget-level issues across the codebase. (#10833)

🔧 Maintenance & Chores

  • Refactor — ES6 Modernisation: Modernised the utils module and XHR adapter to use ES6 features, and tidied the multipart boundary error message. (#10588, #7419)
  • Tests: Hardened the HTTP test server lifecycle to fix flaky FormData EPIPE failures, fixed Win32 platform support for the pipe tests, and corrected an incorrect test assumption. (#10820, #10791, #10796)
  • Docs: Documented paramsSerializer.encode for strict RFC 3986 query encoding, updated the parseReviver TypeScript definitions and configuration docs for ES2023, added timeout guidance to the README's first async example, and expanded notes around the recent type changes. (#10821, #10782, #10759, #10804)
  • Reverted: Reverted the transformRequest input typing change from #10745 after follow-up review. (#10745, #10810)
  • Dependencies: Bumped actions/setup-node, the github-actions group, and postcss (in /docs) to their latest versions. (#10785, #10813, #10814)
  • Release: Updated changelog and packages, and prepared the 1.16.0 release. (#10790, #10834)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

... (truncated)

Changelog

Sourced from axios's changelog.

v1.16.0 — May 2, 2026

This release adds support for the QUERY HTTP method and a new ECONNREFUSED error constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.

⚠️ Notable Changes

A handful of fixes in this release are either security-adjacent or change observable behaviour. Please review before upgrading:

  • Fetch adapter now enforces maxBodyLength and maxContentLength. These limits were silently ignored on the fetch adapter prior to 1.16.0 — anyone relying on them as a safety net (DoS protection, accidental large uploads) had no protection. (#10795)
  • Proxy requests now preserve user-supplied Host headers. Previously, the proxy path could overwrite a custom Host. Virtual-host-style routing through a proxy will now behave correctly. (#10822)
  • Basic auth credentials embedded in URLs are now URL-decoded. If you have percent-encoded credentials in a URL (e.g. https://user:p%40ss@host), the decoded value is what now goes on the wire. (#10825)
  • parseProtocol now strictly requires a colon in the protocol separator. Strings that loosely parsed as protocols before may no longer match. (#10729)
  • Deprecated unescape() replaced with modern UTF-8 encoding. Non-ASCII URL handling is now spec-correct; consumers depending on legacy unescape() quirks may see different output bytes. (#7378)
  • transformRequest input typing change was reverted. The typing change introduced in #10745 was reverted in #10810 after follow-up review — net behavior is unchanged from 1.15.2. (#10745, #10810)

🚀 New Features

  • QUERY HTTP Method: Added support for the QUERY HTTP method across adapters and type definitions. (#10802)
  • ECONNREFUSED Error Constant: Exposed ECONNREFUSED as a constant on AxiosError so callers can match connection-refused failures without comparing string literals (closes #6485). (#10680)
  • Encode Helper Export: Exported the internal encode helper from buildURL so userland param serializers can reuse the same encoding logic that axios uses internally. (#6897)

🐛 Bug Fixes

  • HTTP Adapter — Redirects & Headers: Cleared stale headers when a redirect targets a no-proxy host, fixed the redirect listener chain so listeners no longer stack across hops, restored the missing requestDetails argument on beforeRedirect, preserved user-supplied Host headers when forwarding through a proxy, and properly URL-decoded basic auth credentials. (#10794, #10800, #6241, #10822, #10825)
  • HTTP Adapter — Streams & Timeouts: Preserved the partial response object on AxiosError when a stream is aborted after headers arrive, honoured the timeout option during the connect phase when redirects are disabled, and resolved an unsettled-promise hang when an aborted request was combined with compression and maxRedirects: 0. (#10708, #10819, #7149)
  • Fetch Adapter: Enforced maxBodyLength / maxContentLength in the fetch adapter, set the User-Agent header to match the HTTP adapter, preserved the original abort reason instead of replacing it with a generic error, and deferred global access so importing the module no longer throws a TypeError in restricted environments. (#10795, #10772, #10806, #7260)
  • XHR Adapter: Unsubscribed the cancelToken and AbortSignal listeners on the error, timeout, and abort code paths to prevent leaked subscriptions. (#10787)
  • Error Handling: Attached the parsed response to AxiosError when JSON.parse fails inside dispatchRequest, prevented settle from emitting undefined error codes, and tightened the parseProtocol regex to require a colon in the protocol separator. (#10724, #7276, #10729)
  • Types & Exports: Aligned the CommonJS CancelToken typings with the ESM build, fixed a compiler error caused by RawAxiosHeaders, and re-exported create from the package index. (#7414, #6389, #6460)
  • UTF-8 Encoding: Replaced the deprecated unescape() call with a modern UTF-8 encoding implementation. (#7378)
  • Misc Cleanup: Resolved a batch of small inconsistencies and gadget-level issues across the codebase. (#10833)

🔧 Maintenance & Chores

  • Refactor — ES6 Modernisation: Modernised the utils module and XHR adapter to use ES6 features, and tidied the multipart boundary error message. (#10588, #7419)
  • Tests: Hardened the HTTP test server lifecycle to fix flaky FormData EPIPE failures, fixed Win32 platform support for the pipe tests, and corrected an incorrect test assumption. (#10820, #10791, #10796)
  • Docs: Documented paramsSerializer.encode for strict RFC 3986 query encoding, updated the parseReviver TypeScript definitions and configuration docs for ES2023, added timeout guidance to the README's first async example, and expanded notes around the recent type changes. (#10821, #10782, #10759, #10804)
  • Reverted: Reverted the transformRequest input typing change from #10745 after follow-up review. (#10745, #10810)
  • Dependencies: Bumped actions/setup-node, the github-actions group, and postcss (in /docs) to their latest versions. (#10785, #10813, #10814)
  • Release: Updated changelog and packages, and prepared the 1.16.0 release. (#10790, #10834)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

... (truncated)

Commits
  • df53d7d chore(release): prepare release 1.16.0 (#10834)
  • 9d92bcd fix: gadgets and smaller issues (#10833)
  • 5107ee6 fix: prevent undefined error codes in settle (#7276)
  • e573499 fix(fetch): defer global access in fetch adapter (#7260)
  • ad68e1a fix(http): honor timeout during connect without redirects (#10819)
  • 2a51828 fix(http): decode URL basic auth credentials (#10825)
  • 0e8b6bb fix(http): preserve user-supplied Host header when forwarding through a proxy...
  • 79f39e1 docs: document paramsSerializer.encode for strict RFC 3986 query encoding (#1...
  • 0fe3a5f [Docs/Types] Update parseReviver TypeScript definitions for ES2023 and add ...
  • cd6737f chore: matches the sibling responseStream.on(aborted) handler and added tests...
  • Additional commits viewable in compare view
Maintainer changes

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

Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates @nestjs/common from 8.2.6 to 11.1.19

Release notes

Sourced from @​nestjs/common's releases.

v11.1.19 (2026-04-13)

Bug fixes

Committers: 2

v11.1.18 (2026-04-03)

Bug fixes

Dependencies

Committers: 6

v11.1.17 (2026-03-16)

Enhancements

Bugs

... (truncated)

Commits
  • 6730995 chore(release): publish v11.1.19 release
  • 3c1cc5f chore(release): publish v11.1.18 release
  • a39e345 refactor(common): change console logger helpers to protected
  • 34f0f28 chore(deps): bump file-type from 21.3.3 to 21.3.4
  • 0e96b0a chore(deps): bump file-type from 21.3.2 to 21.3.3
  • 5a05f52 chore: update readme
  • 447a373 chore(release): publish v11.1.17 release
  • 99ed6e6 fix(deps): update dependency file-type to v21.3.2
  • 268a283 fix(deps): update dependency file-type to v21.3.1
  • 315e698 chore(release): publish v11.1.16 release
  • Additional commits viewable in compare view

Updates @nestjs/core from 8.2.6 to 11.1.19

Release notes

Sourced from @​nestjs/core's releases.

v11.1.19 (2026-04-13)

Bug fixes

Committers: 2

v11.1.18 (2026-04-03)

Bug fixes

Dependencies

Committers: 6

v11.1.17 (2026-03-16)

Enhancements

Bugs

... (truncated)

Commits
  • 6730995 chore(release): publish v11.1.19 release
  • 3c1cc5f chore(release): publish v11.1.18 release
  • 0f962c7 fix(core): sanitize sse message
  • 94aa424 Merge pull request #16679 from nestjs/renovate/path-to-regexp-8.x
  • 368691c fix(core): prevent injector hang when design:paramtypes is missing
  • 25d4fde fix(deps): update dependency path-to-regexp to v8.4.2
  • 5c0b11e fix(deps): update dependency path-to-regexp to v8.4.1
  • f7d4460 Merge pull request #16637 from JakobStaudinger/moduleref-create-transient-sco...
  • d0a9dc9 fix(deps): update dependency path-to-regexp to v8.4.0
  • 4677434 feat(core): export IEntryNestModule type
  • Additional commits viewable in compare view

Updates @nestjs/mongoose from 9.0.2 to 9.2.2

Release notes

Sourced from @​nestjs/mongoose's releases.

Release 9.2.2

  • chore: support the latest version of mongoose (4ab97f8)
  • chore: fix hooks (b0697da)
  • Merge pull request #1680 from nestjs/renovate/cimg-node-19.x (87c22b3)
  • chore(deps): update dependency typescript to v5 (37e051a)
  • chore(deps): update dependency @​types/jest to v29.5.0 (6fd8659)
  • chore(deps): update dependency release-it to v15.9.0 (f72cad5)
  • chore(deps): update dependency @​types/jest to v29.4.4 (121ccbb)
  • chore(deps): update nest monorepo to v9.3.10 (ede0caa)
  • chore(deps): update node.js to v19.7 (bf1653b)
  • chore(deps): update dependency @​types/jest to v29.4.2 (04a9eef)
  • chore(deps): update dependency @​types/node to v18.15.3 (5d74bcb)
  • chore(deps): update typescript-eslint monorepo to v5.55.0 (05d883c)
  • chore(deps): update dependency mongoose to v6.10.3 (ca8253f)
  • chore(deps): update dependency @​types/node to v18.15.2 (786bc46)
  • chore(deps): update dependency @​types/jest to v29.4.1 (0935859)
  • chore(deps): update dependency @​types/node to v18.15.1 (85a1877)
  • chore(deps): update dependency eslint to v8.36.0 (b08db82)
  • chore(deps): update dependency lint-staged to v13.2.0 (21784d7)
  • chore(deps): update dependency @​types/node to v18.15.0 (fc2e9dd)
  • chore(deps): update dependency release-it to v15.8.0 (3f47cfa)
  • chore(deps): update dependency mongoose to v6.10.2 (566b691)
  • chore(deps): update dependency jest to v29.5.0 (62eafb8)
  • chore(deps): update typescript-eslint monorepo to v5.54.1 (a836357)
  • chore(deps): update dependency eslint-config-prettier to v8.7.0 (19ea358)
  • chore(deps): update dependency mongoose to v6.10.1 (ca1c8e9)
  • chore(deps): update dependency @​types/node to v18.14.6 (f8ae548)
  • chore(deps): update dependency @​types/node to v18.14.5 (d50d091)
  • chore(deps): update dependency @​types/node to v18.14.4 (3c5e069)
  • chore(deps): update dependency release-it to v15.7.0 (525d0e7)
  • chore(deps): update dependency release-it to v15.6.1 (95fdcc6)
  • chore(deps): update typescript-eslint monorepo to v5.54.0 (1aee303)
  • chore(deps): update dependency @​types/node to v18.14.2 (e7e255d)
  • chore(deps): update dependency eslint to v8.35.0 (7572697)
  • chore(deps): update dependency @​types/node to v18.14.1 (4efa1bb)
  • chore(deps): update dependency mongoose to v6.10.0 (46a76a6)
  • chore(deps): update dependency mongoose to v6.9.3 (f28558e)
  • chore(deps): update typescript-eslint monorepo to v5.53.0 (e854da6)
  • chore(deps): update dependency @​types/node to v18.14.0 (500b516)
  • chore(deps): update commitlint monorepo to v17.4.4 (c929764)
  • chore(deps): update dependency mongoose to v6.9.2 (917d6ee)
  • chore(deps): update dependency jest to v29.4.3 (d198334)
  • chore(deps): update nest monorepo to v9.3.9 (60b7354)
  • chore(deps): update typescript-eslint monorepo to v5.52.0 (75f6f0d)
  • chore(deps): update dependency lint-staged to v13.1.2 (794bbed)
  • chore(deps): update commitlint monorepo to v17.4.3 (8e6275a)
  • chore(deps): update dependency eslint to v8.34.0 (7e528d7)
  • chore(deps): update nest monorepo to v9.3.8 (439a6ab)
  • Merge pull request #1640 from nestjs/dependabot/npm_and_yarn/cookiejar-2.1.4 (61cf5d5)
  • Merge pull request #1632 from nestjs/renovate/cimg-node-19.x (44ddbe2)

... (truncated)

Commits
  • b97dcae chore(): release v9.2.2
  • 4ab97f8 chore: support the latest version of mongoose
  • b0697da chore: fix hooks
  • 87c22b3 Merge pull request #1680 from nestjs/renovate/cimg-node-19.x
  • 37e051a chore(deps): update dependency typescript to v5
  • 6fd8659 chore(deps): update dependency @​types/jest to v29.5.0
  • f72cad5 chore(deps): update dependency release-it to v15.9.0
  • 121ccbb chore(deps): update dependency @​types/jest to v29.4.4
  • ede0caa chore(deps): update nest monorepo to v9.3.10
  • bf1653b chore(deps): update node.js to v19.7
  • Additional commits viewable in compare view
Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates @nestjs/passport from 8.1.0 to 11.0.5

Release notes

Sourced from @​nestjs/passport's releases.

Release 11.0.5

  • fix: exclude last argument only if its of type function (cb) (1a7123a)

Release 11.0.4

  • fix: remove redundant exclude unknown type (7a7ea87)
  • fix: strategy ctor overload type extractor generic. Solves #1857 (99a3245)

Release 11.0.3

  • fix: use all ctor params type to include overloads #1857 (84c8838)

11.0.0

v11.0.0

Release 10.0.3

  • Merge pull request #1455 from nestjs/renovate/cimg-node-21.x (fe6ad2e)
  • Merge pull request #1502 from nestjs/renovate/passport-0.x (f46ffb9)
  • chore(deps): update dependency lint-staged to v15.2.0 (46b4f69)
  • chore(deps): update dependency @​types/node to v20.10.3 (d213a85)
  • chore(deps): update dependency eslint-config-prettier to v9.1.0 (69bb1f6)
  • chore(deps): update dependency eslint to v8.55.0 (f5fa401)
  • chore(deps): update dependency @​types/node to v20.10.2 (1e9cad1)
  • chore(deps): update dependency @​types/node to v20.10.1 (145ecda)
  • chore(deps): update typescript-eslint monorepo to v6.13.1 (70a908f)
  • chore(deps): update typescript-eslint monorepo to v6.13.0 (c73d48e)
  • chore(deps): update dependency passport to v0.7.0 (d0b9a60)
  • chore(deps): update dependency @​types/node to v20.10.0 (4f3245d)
  • chore(deps): update dependency @​types/node to v20.9.5 (114a3b6)
  • chore(deps): update dependency @​types/node to v20.9.4 (4002acc)
  • chore(deps): update dependency @​types/jest to v29.5.10 (6dc6c09)
  • chore(deps): update dependency @​types/passport to v1.0.16 (502554c)
  • chore(deps): update dependency @​types/node to v20.9.3 (82c77c4)
  • chore(deps): update commitlint monorepo to v18.4.3 (1dae894)
  • chore(deps): update dependency @​types/jest to v29.5.9 (b1e0fa8)
  • chore(deps): update typescript-eslint monorepo to v6.12.0 (7d4dc10)
  • chore(deps): update dependency typescript to v5.3.2 (96cb3ea)
  • chore(deps): update nest monorepo to v10.2.10 (d8313ed)
  • chore(deps): update dependency @​types/node to v20.9.2 (dd750ce)
  • chore(deps): update dependency eslint to v8.54.0 (b7c9666)
  • chore(deps): update nest monorepo to v10.2.9 (3b9472f)
  • chore(deps): update dependency @​types/node to v20.9.1 (b80e559)
  • chore(deps): update commitlint monorepo to v18.4.2 (6678d6a)
  • chore(deps): update node.js to v21 (68cebed)
  • chore(deps): update typescript-eslint monorepo to v6.11.0 (c98e1e4)
  • chore(deps): update dependency prettier to v3.1.0 (6fbd769)
  • chore(deps): update dependency @​commitlint/cli to v18.4.1 (d13e432)
  • chore(deps): update dependency lint-staged to v15.1.0 (156f7fc)
  • chore(deps): update dependency release-it to v17 (7ae90f1)

... (truncated)

Commits
  • 1432808 chore(): release v11.0.5
  • d3775ac Merge pull request #1866 from nestjs/fix/without-callback-fix
  • 28a0835 Merge pull request #1867 from nestjs/renovate/lint-staged-15.x
  • 53ba5d6 chore(deps): update dependency lint-staged to v15.4.2
  • 223c1cb Merge pull request #1863 from nestjs/renovate/node-22.x
  • bda4914 Merge pull request #1864 from nestjs/renovate/nest-monorepo
  • 1a7123a fix: exclude last argument only if its of type function (cb)
  • 6fa6d91 chore(deps): update nest monorepo to v11.0.5
  • 8b3f7e3 chore(deps): update dependency @​types/node to v22.10.9
  • 3c877f8 chore(deps): update nest monorepo to v11.0.4 (#1862)
  • Additional commits viewable in compare view
Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates @nestjs/platform-express from 8.2.6 to 11.1.19

Release notes

Sourced from @​nestjs/platform-express's releases.

v11.1.19 (2026-04-13)

Bug fixes

Committers: 2

v11.1.18 (2026-04-03)

Bug fixes

Dependencies

Committers: 6

v11.1.17 (2026-03-16)

Enhancements

Bugs

... (truncated)

Commits
  • 6730995 chore(release): publish v11.1.19 release
  • 3c1cc5f chore(release): publish v11.1.18 release
  • 0ca5440 Merge pull request #16627 from ankitbelal/refactor/centralize-headers-and-par...
  • 25d4fde fix(deps): update dependency path-to-regexp to v8.4.2
  • 5c0b11e fix(deps): update dependency path-to-regexp to v8.4.1
  • d0a9dc9 fix(deps): update dependency path-to-regexp to v8.4.0
  • 1a14884 refactor(core): centralize headers for streamable file responses
  • 5a05f52 chore: update readme
  • 447a373 chore(release): publish v11.1.17 release
  • 315e698 chore(release): publish v11.1.16 release
  • Additional commits viewable in compare view

Updates @nestjs/testing from 8.2.6 to 11.1.19

Release notes

Sourced from @​nestjs/testing's releases.

v11.1.19 (2026-04-13)

Bug fixes

Committers: 2

v11.1.18 (2026-04-03)

Bug fixes

Dependencies

Committers: 6

v11.1.17 (2026-03-16)

Enhancements

Bugs

... (truncated)

Commits
  • 6730995 chore(release): publish v11.1.19 release
  • 3c1cc5f chore(release): publish v11.1.18 release
  • 5a05f52 chore: update readme
  • 447a373 chore(release): publish v11.1.17 release
  • 315e698 chore(release): publish v11.1.16 release
  • 6add3d6 chore(release): publish v11.1.15 release
  • 5d31df7 chore(release): publish...

    Description has been truncated

…assport, @nestjs/platform-express, @nestjs/testing and wait-on

Bumps [axios](https://github.com/axios/axios) to 1.16.0 and updates ancestor dependencies [axios](https://github.com/axios/axios), [@nestjs/common](https://github.com/nestjs/nest/tree/HEAD/packages/common), [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core), [@nestjs/mongoose](https://github.com/nestjs/mongoose), [@nestjs/passport](https://github.com/nestjs/passport), [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express), [@nestjs/testing](https://github.com/nestjs/nest/tree/HEAD/packages/testing) and [wait-on](https://github.com/jeffbski/wait-on). These dependencies need to be updated together.


Updates `axios` from 0.24.0 to 1.16.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v0.24.0...v1.16.0)

Updates `@nestjs/common` from 8.2.6 to 11.1.19
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.19/packages/common)

Updates `@nestjs/core` from 8.2.6 to 11.1.19
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.19/packages/core)

Updates `@nestjs/mongoose` from 9.0.2 to 9.2.2
- [Release notes](https://github.com/nestjs/mongoose/releases)
- [Commits](nestjs/mongoose@9.0.2...9.2.2)

Updates `@nestjs/passport` from 8.1.0 to 11.0.5
- [Release notes](https://github.com/nestjs/passport/releases)
- [Commits](nestjs/passport@8.1.0...11.0.5)

Updates `@nestjs/platform-express` from 8.2.6 to 11.1.19
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.19/packages/platform-express)

Updates `@nestjs/testing` from 8.2.6 to 11.1.19
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.19/packages/testing)

Updates `wait-on` from 6.0.0 to 9.0.5
- [Release notes](https://github.com/jeffbski/wait-on/releases)
- [Commits](jeffbski/wait-on@v6.0.0...v9.0.5)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.16.0
  dependency-type: indirect
- dependency-name: "@nestjs/common"
  dependency-version: 11.1.19
  dependency-type: direct:production
- dependency-name: "@nestjs/core"
  dependency-version: 11.1.19
  dependency-type: direct:production
- dependency-name: "@nestjs/mongoose"
  dependency-version: 9.2.2
  dependency-type: direct:production
- dependency-name: "@nestjs/passport"
  dependency-version: 11.0.5
  dependency-type: direct:production
- dependency-name: "@nestjs/platform-express"
  dependency-version: 11.1.19
  dependency-type: direct:production
- dependency-name: "@nestjs/testing"
  dependency-version: 11.1.19
  dependency-type: direct:development
- dependency-name: wait-on
  dependency-version: 9.0.5
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants