build(deps): Bump the nestjs group in /backend with 13 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 2
(2 months ago)
(2 months ago)
Bumps the nestjs group in /backend with 13 updates:
| Package | From | To |
|---|---|---|
| @nestjs/common | 10.4.22 |
11.1.18 |
| @nestjs/config | 3.3.0 |
4.0.3 |
| @nestjs/core | 10.4.22 |
11.1.18 |
| @nestjs/jwt | 10.2.0 |
11.0.2 |
| @nestjs/passport | 10.0.3 |
11.0.5 |
| @nestjs/platform-express | 10.4.22 |
11.1.18 |
| @nestjs/platform-socket.io | 10.4.22 |
11.1.18 |
| @nestjs/swagger | 7.4.2 |
11.2.6 |
| @nestjs/throttler | 5.2.0 |
6.5.0 |
| @nestjs/websockets | 10.4.22 |
11.1.18 |
| @nestjs/cli | 10.4.9 |
11.0.18 |
| @nestjs/schematics | 10.2.3 |
11.0.10 |
| @nestjs/testing | 10.4.22 |
11.1.18 |
Updates @nestjs/common from 10.4.22 to 11.1.18
Release notes
Sourced from @nestjs/common's releases.
v11.1.18 (2026-04-03)
Bug fixes
microservicescore
- #16683 fix(core): prevent injector hang when design:paramtypes is missing (
@Youmoo)- #16637 fix(core): dependency injection edge case with moduleref.create (
@JakobStaudinger)- nestjs/nest#16686 fix(core): sanitize sse message
Dependencies
core,platform-express,platform-fastify
- #16679 fix(deps): update dependency path-to-regexp to v8.4.2 (
@renovate[bot])platform-fastify
- #16623 fix(deps): update dependency fastify to v5.8.4 (
@renovate[bot])platform-ws
- #16618 chore(deps): bump ws from 8.19.0 to 8.20.0 (
@dependabot[bot])common
- #16619 chore(deps): bump file-type from 21.3.3 to 21.3.4 (
@dependabot[bot])Committers: 6
- Ankit San (
@ankitbelal)- Jakob Staudinger (
@JakobStaudinger)- Kamil Mysliwiec (
@kamilmysliwiec)- Krishna Chaitanya (
@Krishnachaitanyakc)- MK (
@wwenrr)- youmoo (
@Youmoo)v11.1.17 (2026-03-16)
Enhancements
microservices
- #16218 feat(microservices): add redis driver identification (
@vchomakov)Bugs
platform-fastify
- auto-run middleware for HEAD requests as fastify redirects them to GET handlers (effectively skipping middleware execution) https://github.com/nestjs/nest/commit/cbdf737cd6e7cefa52d05ecea2ae4af95c464614 (
@kamilmysliwiec)Dependencies
common
- #16567 fix(deps): update dependency file-type to v21.3.2 (
@renovate[bot])platform-fastify
- #16533 fix(deps): update dependency fastify to v5.8.2 (
@renovate[bot])Committers: 3
- Rohan Santhosh Kumar (
@Rohan5commit)- Vasil Chomakov (
@vchomakov)- Kamil Mysliwiec (
@kamilmysliwiec)
... (truncated)
Commits
3c1cc5fchore(release): publish v11.1.18 releasea39e345refactor(common): change console logger helpers to protected34f0f28chore(deps): bump file-type from 21.3.3 to 21.3.40e96b0achore(deps): bump file-type from 21.3.2 to 21.3.35a05f52chore: update readme447a373chore(release): publish v11.1.17 release99ed6e6fix(deps): update dependency file-type to v21.3.2268a283fix(deps): update dependency file-type to v21.3.1315e698chore(release): publish v11.1.16 release6add3d6chore(release): publish v11.1.15 release- Additional commits viewable in compare view
Updates @nestjs/config from 3.3.0 to 4.0.3
Release notes
Sourced from @nestjs/config's releases.
Release 4.0.3
What's Changed
- fix(deps): update dependency lodash to v4.17.23 [security] by
@renovate[bot] in nestjs/config#2250- fix(deps): update dependency dotenv-expand to v12.0.3 by
@renovate[bot] in nestjs/config#2146- fix(deps): update dependency dotenv to v17 by
@renovate[bot] in nestjs/config#2100Full Changelog: https://github.com/nestjs/config/compare/4.0.2...4.0.3
Release 4.0.2
- fix(common): update KeyOf type to support symbol keys (f53f14e)
Release 4.0.1
- fix: validate predefined condition #1970 (79d82d6)
- feat: allow to use symbol as a token (99d8bca)
Release 4.0.0
Breaking changes
The order in which configuration variables are read by the
ConfigService#getmethod has been updated. The new order is:
- Internal configuration (config namespaces and custom config files)
- Validated environment variables (if validation is enabled and a schema is provided)
- The
process.envobjectPreviously, validated environment variables and the
process.envobject were read first, preventing them from being overridden by internal configuration. With this update, internal configuration will now always take precedence over environment variables.Additionally, the
ignoreEnvVarsconfiguration option, which previously allowed disabling validation of theprocess.envobject, has been deprecated. Instead, use thevalidatePredefinedoption (set tofalseto disable validation of predefined environment variables). Predefined environment variables refer toprocess.envvariables that were set before the module was imported. For example, if you start your application withPORT=3000 node main.js, thePORTvariable is considered predefined. However, variables loaded by theConfigModulefrom a.envfile are not classified as predefined.A new
skipProcessEnvoption has also been introduced. This option allows you to prevent theConfigService#getmethod from accessing theprocess.envobject entirely, which can be helpful when you want to restrict the service from reading environment variables directly.Changelog
- chore: update config attributes to more self descriptive names (c2eaf04)
- chore(deps): update nest monorepo to v11 (1c20713)
- feat: order of reading variables, add skip predefined (c53c63c)
Commits
fc0db0achore(): release v4.0.33c57f35Merge pull request #2100 from nestjs/renovate/dotenv-17.x560f095fix(deps): update dependency dotenv to v172585fd9Merge pull request #2189 from nestjs/renovate/cimg-node-24.x23735a1Merge pull request #2146 from nestjs/renovate/dotenv-expand-12.x55ba08bfix(deps): update dependency dotenv-expand to v12.0.37fb8984Merge pull request #2250 from nestjs/renovate/npm-lodash-vulnerability2248d7bchore(deps): update nest monorepo to v11.1.13 (#2260)c77a8f6chore(deps): update dependency@types/nodeto v24.10.10 (#2259)48212e0chore(deps): update commitlint monorepo to v20.4.1 (#2258)- Additional commits viewable in compare view
Updates @nestjs/core from 10.4.22 to 11.1.18
Release notes
Sourced from @nestjs/core's releases.
v11.1.18 (2026-04-03)
Bug fixes
microservicescore
- #16683 fix(core): prevent injector hang when design:paramtypes is missing (
@Youmoo)- #16637 fix(core): dependency injection edge case with moduleref.create (
@JakobStaudinger)- nestjs/nest#16686 fix(core): sanitize sse message
Dependencies
core,platform-express,platform-fastify
- #16679 fix(deps): update dependency path-to-regexp to v8.4.2 (
@renovate[bot])platform-fastify
- #16623 fix(deps): update dependency fastify to v5.8.4 (
@renovate[bot])platform-ws
- #16618 chore(deps): bump ws from 8.19.0 to 8.20.0 (
@dependabot[bot])common
- #16619 chore(deps): bump file-type from 21.3.3 to 21.3.4 (
@dependabot[bot])Committers: 6
- Ankit San (
@ankitbelal)- Jakob Staudinger (
@JakobStaudinger)- Kamil Mysliwiec (
@kamilmysliwiec)- Krishna Chaitanya (
@Krishnachaitanyakc)- MK (
@wwenrr)- youmoo (
@Youmoo)v11.1.17 (2026-03-16)
Enhancements
microservices
- #16218 feat(microservices): add redis driver identification (
@vchomakov)Bugs
platform-fastify
- auto-run middleware for HEAD requests as fastify redirects them to GET handlers (effectively skipping middleware execution) https://github.com/nestjs/nest/commit/cbdf737cd6e7cefa52d05ecea2ae4af95c464614 (
@kamilmysliwiec)Dependencies
common
- #16567 fix(deps): update dependency file-type to v21.3.2 (
@renovate[bot])platform-fastify
- #16533 fix(deps): update dependency fastify to v5.8.2 (
@renovate[bot])Committers: 3
- Rohan Santhosh Kumar (
@Rohan5commit)- Vasil Chomakov (
@vchomakov)- Kamil Mysliwiec (
@kamilmysliwiec)
... (truncated)
Commits
3c1cc5fchore(release): publish v11.1.18 release0f962c7fix(core): sanitize sse message94aa424Merge pull request #16679 from nestjs/renovate/path-to-regexp-8.x368691cfix(core): prevent injector hang when design:paramtypes is missing25d4fdefix(deps): update dependency path-to-regexp to v8.4.25c0b11efix(deps): update dependency path-to-regexp to v8.4.1f7d4460Merge pull request #16637 from JakobStaudinger/moduleref-create-transient-sco...d0a9dc9fix(deps): update dependency path-to-regexp to v8.4.04677434feat(core): exportIEntryNestModuletype7493b94fix(core): dependency injection edge case with moduleref.create- Additional commits viewable in compare view
Updates @nestjs/jwt from 10.2.0 to 11.0.2
Release notes
Sourced from @nestjs/jwt's releases.
Release 11.0.2
What's Changed
- fix(deps): update dependency jsonwebtoken to v9.0.3 by
@renovate[bot] in nestjs/jwt#2088Full Changelog: https://github.com/nestjs/jwt/compare/11.0.1...11.0.2
Release 11.0.1
What's Changed
- chore: mark api public in jwt module by
@Tony133in nestjs/jwt#1890- perf: Allow
secretandpublicKeyoptions to becrypto.KeyObject(2x to 50x faster calls) by@dbatyin nestjs/jwt#1971- feat(sign): add generics to sign and sign async methods by
@ahmedwael216in nestjs/jwt#1946New Contributors
@dbatymade their first contribution in nestjs/jwt#1971@ahmedwael216made their first contribution in nestjs/jwt#1946Full Changelog: https://github.com/nestjs/jwt/compare/11.0.0...11.0.1
Release 11.0.0
- chore(deps): update nest monorepo to v11 (e90fe7a)
Commits
78c481echore(): release v11.0.21456a2aMerge pull request #2066 from nestjs/renovate/cimg-node-24.x1fe1428Merge pull request #2088 from nestjs/renovate/jsonwebtoken-9.xde91936chore(deps): update commitlint monorepo to v20.2.0 (#2090)21baa55fix(deps): update dependency jsonwebtoken to v9.0.30fd450cchore(deps): update dependency prettier to v3.7.4 (#2087)a7e53f8chore(deps): update dependency typescript-eslint to v8.48.1 (#2086)aaae1fechore(deps): update dependency ts-jest to v29.4.6 (#2085)17bd57dchore(deps): update dependency prettier to v3.7.3 (#2084)8d29810chore(deps): update dependency prettier to v3.7.2 (#2083)- Additional commits viewable in compare view
Install script changes
This version modifies prepare script that runs during installation. Review the package contents before updating.
Updates @nestjs/passport from 10.0.3 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
Commits
1432808chore(): release v11.0.5d3775acMerge pull request #1866 from nestjs/fix/without-callback-fix28a0835Merge pull request #1867 from nestjs/renovate/lint-staged-15.x53ba5d6chore(deps): update dependency lint-staged to v15.4.2223c1cbMerge pull request #1863 from nestjs/renovate/node-22.xbda4914Merge pull request #1864 from nestjs/renovate/nest-monorepo1a7123afix: exclude last argument only if its of type function (cb)6fa6d91chore(deps): update nest monorepo to v11.0.58b3f7e3chore(deps): update dependency@types/nodeto v22.10.93c877f8chore(deps): update nest monorepo to v11.0.4 (#1862)- Additional commits viewable in compare view
Install script changes
This version modifies prepare script that runs during installation. Review the package contents before updating.
Updates @nestjs/platform-express from 10.4.22 to 11.1.18
Release notes
Sourced from @nestjs/platform-express's releases.
v11.1.18 (2026-04-03)
Bug fixes
microservicescore
- #16683 fix(core): prevent injector hang when design:paramtypes is missing (
@Youmoo)- #16637 fix(core): dependency injection edge case with moduleref.create (
@JakobStaudinger)- nestjs/nest#16686 fix(core): sanitize sse message
Dependencies
core,platform-express,platform-fastify
- #16679 fix(deps): update dependency path-to-regexp to v8.4.2 (
@renovate[bot])platform-fastify
- #16623 fix(deps): update dependency fastify to v5.8.4 (
@renovate[bot])platform-ws
- #16618 chore(deps): bump ws from 8.19.0 to 8.20.0 (
@dependabot[bot])common
- #16619 chore(deps): bump file-type from 21.3.3 to 21.3.4 (
@dependabot[bot])Committers: 6
- Ankit San (
@ankitbelal)- Jakob Staudinger (
@JakobStaudinger)- Kamil Mysliwiec (
@kamilmysliwiec)- Krishna Chaitanya (
@Krishnachaitanyakc)- MK (
@wwenrr)- youmoo (
@Youmoo)v11.1.17 (2026-03-16)
Enhancements
microservices
- #16218 feat(microservices): add redis driver identification (
@vchomakov)Bugs
platform-fastify
- auto-run middleware for HEAD requests as fastify redirects them to GET handlers (effectively skipping middleware execution) https://github.com/nestjs/nest/commit/cbdf737cd6e7cefa52d05ecea2ae4af95c464614 (
@kamilmysliwiec)Dependencies
common
- #16567 fix(deps): update dependency file-type to v21.3.2 (
@renovate[bot])platform-fastify
- #16533 fix(deps): update dependency fastify to v5.8.2 (
@renovate[bot])Committers: 3
- Rohan Santhosh Kumar (
@Rohan5commit)- Vasil Chomakov (
@vchomakov)- Kamil Mysliwiec (
@kamilmysliwiec)
... (truncated)
Commits
3c1cc5fchore(release): publish v11.1.18 release0ca5440Merge pull request #16627 from ankitbelal/refactor/centralize-headers-and-par...25d4fdefix(deps): update dependency path-to-regexp to v8.4.25c0b11efix(deps): update dependency path-to-regexp to v8.4.1d0a9dc9fix(deps): update dependency path-to-regexp to v8.4.01a14884refactor(core): centralize headers for streamable file responses5a05f52chore: update readme447a373chore(release): publish v11.1.17 release315e698chore(release): publish v11.1.16 release24956b5fix(deps): update dependency multer to v2.1.1- Additional commits viewable in compare view
Updates @nestjs/platform-socket.io from 10.4.22 to 11.1.18
Release notes
Sourced from @nestjs/platform-socket.io's releases.
v11.1.18 (2026-04-03)
Bug fixes
microservicescore
- #16683 fix(core): prevent injector hang when design:paramtypes is missing (
@Youmoo)- #16637 fix(core): dependency injection edge case with moduleref.create (
@JakobStaudinger)- nestjs/nest#16686 fix(core): sanitize sse message
Dependencies
core,platform-express,platform-fastify
- #16679 fix(deps): update dependency path-to-regexp to v8.4.2 (
@renovate[bot])platform-fastify
- #16623 fix(deps): update dependency fastify to v5.8.4 (
@renovate[bot])platform-ws
- #16618 chore(deps): bump ws from 8.19.0 to 8.20.0 (
@dependabot[bot])common
- #16619 chore(deps): bump file-type from 21.3.3 to 21.3.4 (
@dependabot[bot])Committers: 6
- Ankit San (
@ankitbelal)- Jakob Staudinger (
@JakobStaudinger)- Kamil Mysliwiec (
@kamilmysliwiec)- Krishna Chaitanya (
@Krishnachaitanyakc)- MK (
@wwenrr)- youmoo (
@Youmoo)v11.1.17 (2026-03-16)
Enhancements
microservices
- #16218 feat(microservices): add redis driver identification (
@vchomakov)Bugs
platform-fastify
- auto-run middleware for HEAD requests as fastify redirects them to GET handlers (effectively skipping middleware execution) https://github.com/nestjs/nest/commit/cbdf737cd6e7cefa52d05ecea2ae4af95c464614 (
@kamilmysliwiec)Dependencies
common
- #16567 fix(deps): update dependency file-type to v21.3.2 (
@renovate[bot])platform-fastify
- #16533 fix(deps): update dependency fastify to v5.8.2 (
@renovate[bot])Committers: 3
- Rohan Santhosh Kumar (
@Rohan5commit)- Vasil Chomakov (
@vchomakov)- Kamil Mysliwiec (
@kamilmysliwiec)
... (truncated)
Commits
3c1cc5fchore(release): publish v11.1.18 release5a05f52chore: update readme447a373chore(release): publish v11.1.17 release315e698chore(release): publish v11.1.16 release6add3d6chore(release): publish v11.1.15 release5d31df7chore(release): publish v11.1.14 release8d1c16cchore: update readmee3a958achore(release): publish v11.1.13 release96932adchore(release): publish v11.1.12 release585f55fchore: revert lerna version- Additional commits viewable in compare view
Updates @nestjs/swagger from 7.4.2 to 11.2.6
Release notes
Sourced from @nestjs/swagger's releases.
11.2.6
What's Changed
- feat: support adding custom fields on the
servers[*]entry by@micaleviskin nestjs/swagger#3715- fix(decorator) add string literal types to ApiQueryOptions for autoco… by
@wanderer-sin nestjs/swagger#3707- feat: add type definition for format option in
@ApiPropertydecorator by@ismaildasciin nestjs/swagger#3697- fix(deps): update dependency lodash to v4.17.23 [security] by
@renovate[bot] in nestjs/swagger#3705New Contributors
@wanderer-smade their first contribution in nestjs/swagger#3707@ismaildascimade their first contribution in nestjs/swagger#3697Full Changelog: https://github.com/nestjs/swagger/compare/11.2.5...11.2.6
Release 11.2.5
11.2.5 (2026-01-14)
Bug fixes
- #3618 fix: resolve static asset loading with trailing slash (
@spandios)Enhancements
- #3684 fix(plugin): respect debug option for all debug log messages (
@jtomaszewski)Committers: 2
- Jacek Tomaszewski (
@jtomaszewski)- dev_heo (
@spandios)11.2.4
What's Changed
- chore(deps): update dependency
@fastify/staticto v9 by@renovate[bot] in nestjs/swagger#3667- Add 'file' type to schema object metadata interface by
@karianpourin nestjs/swagger#3671- chore(deps): update node.js to v24.12.0 by
@renovate[bot] in nestjs/swagger#3657- fix(deps): update dependency swagger-ui-dist to v5.31.0 by
@renovate[bot] in nestjs/swagger#3639- fix(schema): preserve items schema when metadata.items is already defined by
@bas0Nin nestjs/swagger#3635New Contributors
@karianpourmade their first contribution in nestjs/swagger#3671@bas0Nmade their first contribution in nestjs/swagger#3635Full Changelog: https://github.com/nestjs/swagger/compare/11.2.3...11.2.4
Release 11.2.3
What's Changed
- Revert "fix(plugin): add async modifier when a reference is await import statement" by
@kamilmysliwiecin nestjs/swagger#3633Full Changelog: https://github.com/nestjs/swagger/compare/11.2.2...11.2.3
Release 11.2.2
11.2.2 (2025-11-16)
... (truncated)
Commits
3281744chore(): release v11.2.6bca62d9Merge pull request #3705 from nestjs/renovate/npm-lodash-vulnerabilityb06e08aMerge pull request #3697 from ismaildasci/feat/add-format-type-definition0eeb8afMerge pull request #3707 from wanderer-s/fix/api_query_type4869d1bMerge pull request #3715 from micalevisk/feat/add-server-custom-fields8c64c72chore(deps): update nest monorepo to v11.1.13 (#3722)128aac4chore(deps): update dependency@types/nodeto v24.10.10 (#3721)61fec42chore(deps): update dependency fastify to v5.7.4 (#3720)d453a02chore(deps): update commitlint monorepo to v20.4.1 (#3718)1447671fix(deps): update dependency lodash to v4.17.23 [security]- 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/throttler from 5.2.0 to 6.5.0
Release notes
Sourced from @nestjs/throttler's releases.
v6.5.0
Minor Changes
- 58964d6: Add a setHeaders option to control whether to add headers to the response or not
Minor Changes
- 5cb4254: Update to allow for support for Nest version 11
v6.4.0
Minor Changes
- 5cb4254: Update to allow for support for Nest version 11
v6.3.0
Minor Changes
- fc93f3a: pass context to getTraker as a second arg
v6.2.1
Patch Changes
- fbf27c6: Add the guard interfaces for export for public use
v6.2.0
Minor Changes
- 3d1a9a5: Swap MD5 hash for SHA256 to better support OpenSSL 3.0 and future iterations
v6.1.1
Patch Changes
- ef69348: Update the readme for websockets
v6.1.0
Minor Changes
- e058d50: Use ceil instead of floor while calculating expire and block expire at to properly account for rounding up instead of down and accidentally allowing for early continued requests. Related to #2074
v6.0.0
Major Changes
- 93b62d2: A time will be provided to block the request separately from the ttl. There is a breaking change at the library level. Storage library owners will be affected by this breaking change
- 9b3f9cd: - e17a5dc: The storage has been updated to utilize Map instead of a simple object for key-value storage. This enhancement offers improved performance, especially for scenarios involving frequent additions and deletions of keys. There is a breaking change at the library level. Storage library owners will be affected by this breaking change
Changelog
Sourced from @nestjs/throttler's changelog.
6.5.0
Minor Changes
- 58964d6: Add a setHeaders option to control whether to add headers to the response or not
Minor Changes
- 5cb4254: Update to allow for support for Nest version 11
6.3.0
Minor Changes
- fc93f3a: pass context to getTraker as a second arg
6.2.1
Patch Changes
- fbf27c6: Add the guard interfaces for export for public use
6.2.0
Minor Changes
- 3d1a9a5: Swap MD5 hash for SHA256 to better support OpenSSL 3.0 and future iterations
6.1.1
Patch Changes
- ef69348: Update the readme for websockets
6.1.0
Minor Changes
- e058d50: Use ceil instead of floor while calculating expire and block expire at to properly account for rounding up instead of down and accidentally allowing for early continued requests. Related to #2074
6.0.0
Major Changes
- 93b62d2: A time will be provided to block the request separately from the ttl. There is a breaking change at the library level. Storage library owners will be affected by this breaking change
- 9b3f9cd: - e17a5dc: The storage has been updated to utilize Map instead of a simple object for key-value storage. This enhancement offers improved performance, especially for scenarios involving frequent additions and deletions of keys. There is a breaking change at the library level. Storage library owners will be affected by this breaking change
Commits
7b11a2echore: version packages58964d6feat: Add setHeader option4e970b2fix: Remove interface change02fdf5bfeat: Add setHeader optionf618a89chore(deps): update dependency ts-jest to v29.4.6a988bc4chore(deps): update dependency@types/expressto v5.0.6521fbeachore(deps): update dependency prettier to v3.7.3473de77chore(deps): update dependency prettier to v3.7.2c7d69a7chore(deps): update dependency graphql-tools to v9.0.25a11466dchore(deps): update dependency@nestjs/clito v11.0.14- Additional commits viewable in compare view
Updates @nestjs/websockets from 10.4.22 to 11.1.18
Release notes
Sourced from @nestjs/websockets's releases.
v11.1.18 (2026-04-03)
Bug fixes
microservicescore
- #16683 fix(core): prevent injector hang when design:paramtypes is missing (
@Youmoo)- #16637 fix(core): dependency injection edge case with moduleref.create (
@JakobStaudinger)- nestjs/nest#16686 fix(core): sanitize sse message
Dependencies
core,platform-express,platform-fastify
- #16679 fix(deps): update dependency path-to-regexp to v8.4.2 (
@renovate[bot])platform-fastify
- #16623 fix(deps): update dependency fastify to v5.8.4 (
@renovate[bot])platform-ws
- #16618 chore(deps): bump ws from 8.19.0 to 8.20.0 (
@dependabot[bot])common
- #16619 chore(deps): bump file-type from 21.3.3 to 21.3.4 (
@dependabot[bot])Committers: 6
- Ankit San (
@ankitbelal)- Jakob Staudinger (
@JakobStaudinger)- Kamil Mysliwiec (
@kamilmysliwiec)- Krishna Chaitanya (
@Krishnachaitanyakc)- MK (
@wwenrr)- youmoo (
@Youmoo)v11.1.17 (2026-03-16)
Enhancements
microservices
- #16218 feat(microservices): add redis driver identification (
@vchomakov)Bugs
platform-fastify
- auto-run middleware for HEAD requests as fastify redirects them to GET handlers (effectively skipping middleware execution) https://github.com/nestjs/nest/commit/cbdf737cd6e7cefa52d05ecea2ae4af95c464614 (
@kamilmysliwiec)Dependencies
common
- #16567 fix(deps): update dependency file-type to v21.3.2 (
@renovate[bot])platform-fastify
- #16533 fix(deps): update dependency fastify to v5.8.2 (
@renovate[bot])Committers: 3
- Rohan Santhosh Kumar (
@Rohan5commit)- Vasil Chomakov (
@vchomakov)- Kamil Mysliwiec (
@kamilmysliwiec)
... (truncated)
Commits
3c1cc5fchore(release): publish v11.1.18 release5a05f52chore: update readme447a373chore(release): publish v11.1.17 release315e698chore(release): publish v11.1.16 release6add3d6chore(release): publish v11.1.15 release5d31df7chore(release): publish v11.1.14 release8d1c16cchore: update readmee3a958achore(release): publish v11.1.13 release96932adchore(release): publish v11.1.12 release585f55fchore: revert lerna version- Additional commits viewable in compare view
Updates @nestjs/cli from 10.4.9 to 11.0.18
Release notes
Sourced from @nestjs/cli's releases.
11.0.18
What's Changed
- fix(build): delete tsbuildinfo file with out dir (#3312) by
@maruthangin nestjs/nest-cli#3317- fix(swc): prevent double initialization in watch mode by
@maruthangin nestjs/nest-cli#3316- fix(swc): respect root dir option for strip leading paths by
@maruthangin nestjs/nest-cli#3318- fix(cli): error on unexpected extra positional arguments by
@maruthangin nestjs/nest-cli#3314- fix(start): wait for async shutdown hooks before exiting by
@maruthangin nestjs/nest-cli#3313- fix(assets): use ready event for watcher closing by
@maruthangin nestjs/nest-cli#3315- fix: expand
@swc/clipeer range to include ^0.8.0 by@wwenrrin nestjs/nest-cli#3309- chore(deps): update dependency
@nestjs/schematicsto v11.0.10 by@renovate[bot] in nestjs/nest-cli#3300- refactor(compiler): potential undefined access in getWebpackConfigPath by
@zendy199xin nestjs/nest-cli#3296- fix(deps): update angular-cli monorepo to v19.2.23 by
@renovate[bot] in nestjs/nest-cli#3299New Contributors
@maruthangmade their first contribution in nestjs/nest-cli#3317@wwenrrmade their first contribution in nestjs/nest-cli#3309@zendy199xmade their first contribution in nestjs/nest-cli#3296Full Changelog: https://github.com/nestjs/nest-cli/compare...
Description has been truncated
Package Dependencies
@nestjs/cli
npm
10.4.9 → 11.0.18
Major
/backend
@nestjs/common
npm
10.4.22 → 11.1.18
Major
/backend
@nestjs/jwt
npm
10.2.0 → 11.0.2
Major
/backend
@nestjs/passport
npm
10.0.3 → 11.0.5
Major
/backend
@nestjs/platform-express
npm
10.4.22 → 11.1.18
Major
/backend
@nestjs/testing
npm
10.4.22 → 11.1.18
Major
/backend
@nestjs/core
npm
10.4.22 → 11.1.18
Major
/backend
@nestjs/swagger
npm
7.4.2 → 11.2.6
Major
/backend
@nestjs/config
npm
3.3.0 → 4.0.3
Major
/backend
@nestjs/schematics
npm
10.2.3 → 11.0.10
Major
/backend
@nestjs/platform-socket.io
npm
10.4.22 → 11.1.18
Major
/backend
@nestjs/websockets
npm
10.4.22 → 11.1.18
Major
/backend
@nestjs/throttler
npm
5.2.0 → 6.5.0
Major
/backend
Technical Details
| ID: | 15120968 |
| UUID: | 4221875169 |
| Node ID: | PR_kwDOR8rJEs7QrnpV |
| Host: | GitHub |
| Repository: | studyield/studyield |