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 nest monorepo (major) #871

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 16, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nestjs/cli 10.4.9 -> 11.0.5 age adoption passing confidence
@nestjs/common (source) 10.4.15 -> 11.0.11 age adoption passing confidence
@nestjs/config 3.3.0 -> 4.0.1 age adoption passing confidence
@nestjs/core (source) 10.4.15 -> 11.0.11 age adoption passing confidence
@nestjs/microservices (source) 10.4.15 -> 11.0.11 age adoption passing confidence
@nestjs/platform-express (source) 10.4.15 -> 11.0.11 age adoption passing confidence
@nestjs/schematics 10.2.3 -> 11.0.2 age adoption passing confidence
@nestjs/testing (source) 10.4.15 -> 11.0.11 age adoption passing confidence

Release Notes

nestjs/nest-cli (@​nestjs/cli)

v11.0.5

Compare Source

  • feat(swc): add reload application when compiling to mjs (d866d77)

v11.0.4

Compare Source

  • chore(deps): allow any schematics package newer or eq to v11 (5d79adf)
  • chore(deps): update dependency @​swc/core to v1.10.17 (887fa7d)

v11.0.3

Compare Source

  • fix(deps): update angular-cli monorepo to v19.1.7 (c8c8904)
  • fix(deps): update dependency ansis to v3.15.0 (72d59e1)
  • fix(deps): update dependency @​inquirer/prompts to v7.3.2 (ea34a79)
  • fix(deps): update dependency webpack to v5.98.0 (24014fc)

v11.0.2

Compare Source

  • fix: swc compiler does not watch files (8aaa9df)

v11.0.1

Compare Source

v11.0.0

Compare Source

Migration guide: https://docs.nestjs.com/migration-guide

Features and improvements
  • feat(schematics): list schematics from extended collections #​2096
  • feat: nest build --all flag #​2312
  • feat: add flag to disable shell mode for nest start --watch #​2522
  • feat!: drop uncommon variants of nest cli config file name #​2769
  • feat: add support for --env-file flag #​2818
Dependencies
  • fix(deps): update dependency glob to v11 #​2788
  • chore/upgrade inquirer package #​2718
  • fix(deps): update dependency chokidar to v4 #​2734
  • fix(deps): update angular-cli monorepo to v19 #​2811
nestjs/nest (@​nestjs/common)

v11.0.11

Compare Source

v11.0.10

Compare Source

v11.0.10 (2025-02-17)

Bug fixes

v11.0.9

Compare Source

v11.0.9 (2025-02-10)
Bug fixes
Committers: 2

v11.0.8

Compare Source

v11.0.8 (2025-02-06)
Bug fixes
Committers: 4

v11.0.7

Compare Source

v11.0.7 (2025-01-31)
Bug fixes
Committers: 1

v11.0.6

Compare Source

v11.0.6 (2025-01-27)
Bug fixes
Committers: 1

v11.0.5

Compare Source

v11.0.5 (2025-01-23)
Bug fixes
Committers: 1

v11.0.4

Compare Source

v11.0.3

Compare Source

v11.0.2

Compare Source

v11.0.1

Compare Source

v11.0.0

Compare Source

v11.0.0 (2025-01-16)

Article: https://trilon.io/blog/announcing-nestjs-11-whats-new
Migration guide: https://docs.nestjs.com/migration-guide 👈 👈 👈

⚠️ Node v16 and v18 are no longer supported (>= v20 is required).

Features
  • common, core, microservices
  • common, core
  • common, core, microservices, platform-express, platform-fastify, platform-socket.io, platform-ws, testing, websockets
    • #​14238 chore(deps): upgrade to express v5, fastify v5, add legacy route path converter to minimize breaking changes (@​kamilmysliwiec)
Enhancements
Bug fixes
Other packages in the ecosystem
Dependencies
Committers: 22
nestjs/config (@​nestjs/config)

v4.0.1

Compare Source

v4.0.0

Compare Source

Breaking changes

The order in which configuration variables are read by the ConfigService#get method 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.env object

Previously, validated environment variables and the process.env object 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 ignoreEnvVars configuration option, which previously allowed disabling validation of the process.env object, has been deprecated. Instead, use the validatePredefined option (set to false to disable validation of predefined environment variables). Predefined environment variables refer to process.env variables that were set before the module was imported. For example, if you start your application with PORT=3000 node main.js, the PORT variable is considered predefined. However, variables loaded by the ConfigModule from a .env file are not classified as predefined.

A new skipProcessEnv option has also been introduced. This option allows you to prevent the ConfigService#get method from accessing the process.env object 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)
nestjs/nest (@​nestjs/core)

v11.0.11

Compare Source

v11.0.10

Compare Source

v11.0.10 (2025-02-17)
Bug fixes

v11.0.9

Compare Source

v11.0.9 (2025-02-10)
Bug fixes
Committers: 2

v11.0.8

Compare Source

v11.0.8 (2025-02-06)

Bug fixes
Committers: 4

v11.0.7

Compare Source

v11.0.7 (2025-01-31)
Bug fixes
Committers: 1

v11.0.6

Compare Source

v11.0.6 (2025-01-27)

Bug fixes
Committers: 1

v11.0.5

Compare Source

v11.0.5 (2025-01-23)
Bug fixes
Committers: 1

v11.0.4

Compare Source

v11.0.3

Compare Source

v11.0.2

Compare Source

v11.0.1

Compare Source

v11.0.0

Compare Source

v11.0.0 (2025-01-16)

Article: https://trilon.io/blog/announcing-nestjs-11-whats-new
Migration guide: https://docs.nestjs.com/migration-guide 👈 👈 👈

⚠️ Node v16 and v18 are no longer supported (>= v20 is required).

Features
  • common, core, microservices
  • common, core
  • common, core, microservices, platform-express, platform-fastify, platform-socket.io, platform-ws, testing, websockets
    • #​14238 chore(deps): upgrade to express v5, fastify v5, add legacy route path converter to minimize breaking changes (@​kamilmysliwiec)
Enhancements
Bug fixes
Other packages in the ecosystem
Dependencies
Committers: 22
nestjs/nest (@​nestjs/microservices)

v11.0.11

Compare Source

v11.0.11 (2025-02-28)

Enhancements
  • platform-fastify
Dependencies
Committers: 1

v11.0.10

Compare Source

v11.0.10 (2025-02-17)

Bug fixes

v11.0.9

Compare Source

v11.0.9 (2025-02-10)

Bug fixes
Committers: 2

v11.0.8

Compare Source

v11.0.8 (2025-02-06)
Bug fixes
Committers: 4

v11.0.7

Compare Source

v11.0.7 (2025-01-31)

Bug fixes
Committers: 1

v11.0.6

[Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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/major-nest-monorepo branch 8 times, most recently from e17b2ac to 7e7193b Compare January 23, 2025 21:58
@renovate renovate bot changed the title fix(deps): update nest monorepo to v11 (major) fix(deps): update nest monorepo (major) Jan 23, 2025
@renovate renovate bot force-pushed the renovate/major-nest-monorepo branch 3 times, most recently from 45c8657 to 6712a82 Compare January 30, 2025 19:02
@renovate renovate bot force-pushed the renovate/major-nest-monorepo branch 2 times, most recently from 0e99bec to 0523a81 Compare February 6, 2025 10:54
@renovate renovate bot force-pushed the renovate/major-nest-monorepo branch 3 times, most recently from 26c9eba to fac395a Compare February 17, 2025 12:39
@renovate renovate bot force-pushed the renovate/major-nest-monorepo branch from fac395a to 3441f41 Compare February 18, 2025 14:13
@renovate renovate bot force-pushed the renovate/major-nest-monorepo branch 7 times, most recently from fd20d97 to 84c2216 Compare March 5, 2025 10:40
@renovate renovate bot force-pushed the renovate/major-nest-monorepo branch from 84c2216 to f856bf1 Compare March 6, 2025 18:30
@renovate renovate bot force-pushed the renovate/major-nest-monorepo branch from f856bf1 to 1b54b33 Compare March 7, 2025 14:19
Copy link

sonarqubecloud bot commented Mar 7, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants