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) #75

Open
wants to merge 1 commit into
base: develop
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.3.1 -> ^11.0.0 age adoption passing confidence
@nestjs/common (source) ^10.3.2 -> ^11.0.0 age adoption passing confidence
@nestjs/config ^3.2.0 -> ^4.0.0 age adoption passing confidence
@nestjs/core (source) ^10.3.8 -> ^11.0.0 age adoption passing confidence
@nestjs/platform-express (source) ^10.3.2 -> ^11.0.0 age adoption passing confidence
@nestjs/schematics ^10.1.0 -> ^11.0.0 age adoption passing confidence
@nestjs/terminus ^10.2.3 -> ^11.0.0 age adoption passing confidence
@nestjs/testing (source) ^10.3.8 -> ^11.0.0 age adoption passing confidence

Release Notes

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

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

v10.4.9

Compare Source

  • Merge pull request #​2838 from yifanwww/fix/webpack-ignore-lazy-imports (3d0fe0b)
  • fix: add missing class-transformer/storage in lazy import list (a1cc6cf)
  • Merge pull request #​2815 from nestjs/renovate/typescript-5.x (4af113e)

v10.4.8

Compare Source

  • Merge pull request #​2792 from nestjs/fix/type-check-error-2791 (5be20eb)
  • Merge pull request #​2797 from nestjs/renovate/tsconfig-paths-webpack-plugin-4.x (6d77fd3)
  • Merge pull request #​2800 from caucik/webpack-fix-branch (9ec2d5e)
  • fix: webpack default config - IgnorePlugin (83c5cfc)
  • fix(deps): update dependency tsconfig-paths-webpack-plugin to v4.2.0 (ebdfb32)
  • chore(deps): update dependency @​swc/core to v1.9.2 (#​2794) (ed9d8b8)
  • fix: show type check warning only when builder is not swc #​2791 (2e23003)
  • fix(deps): update dependency glob to v10.4.5 (7aba481)

v10.4.7

Compare Source

  • Merge pull request #​2786 from nestjs/revert-2642-renovate/glob-11.x (0ff0a01)
  • Revert "fix(deps): update dependency glob to v11" (7af719e)

v10.4.6

Compare Source

  • build: allow js, clean artificats in ci (7bc0b3f)
  • chore(deps): update dependency ts-jest to v29.2.5 (41ce50b)
  • fix(deps): update dependency typescript to v5.6.3 (067a119)
  • Merge pull request #​2784 from nestjs/renovate/node-22.x (f3bd8b0)
  • Merge pull request #​2778 from nestjs/renovate/swc-monorepo (008ab68)
  • Merge pull request #​2780 from nestjs/renovate/webpack-5.x (d708ea9)
  • Merge pull request #​2764 from nestjs/renovate/angular-cli-monorepo (d8ae02b)
  • fix: add missing type argument (df91c49)
  • Merge branch 'addun-fix-issue-2653' (041a184)
  • chore: resolve conflicts (486ac60)
  • Merge pull request #​2415 from yigitkurtcu/feat/generate-options-base-url (537dfa7)
  • Merge pull request #​2716 from nestjs/renovate/angular-cli-monorepo (ef0ff51)
  • Merge pull request #​2642 from nestjs/renovate/glob-11.x (c7e2e01)
  • fix(deps): update angular-cli monorepo to v17.3.10 (960e65f)
  • Merge pull request #​2743 from nestjs/renovate/webpack-5.x (b750ead)
  • Merge pull request #​2754 from nestjs/renovate/nest-monorepo (603721e)
  • fix(deps): update dependency @​nestjs/schematics to v10.2.2 (f062e99)
  • fix: unification copy behavior between watched and not watched assets (3664ed0)
  • fix(deps): update dependency glob to v11 (fc6e7a1)
  • feat: basedir option added to configuration for generate command (877b6bd)
nestjs/nest (@​nestjs/common)

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

v10.4.15

Compare Source

v10.4.15 (2024-12-09)
Dependencies

v10.4.14

Compare Source

v10.4.13

Compare Source

v10.4.12

Compare Source

v10.4.12 (2024-11-29)
Bug fixes
Dependencies
Committers: 1

v10.4.11

Compare Source

v10.4.10

Compare Source

v10.4.10 (2024-11-27)
Bug fixes
  • platform-socket.io, websockets
Dependencies
Committers: 1

v10.4.9

Compare Source

v10.4.9 (2024-11-25)
Bug fixes
Enhancements
Dependencies
Committers: 7

v10.4.8

Compare Source

v10.4.8 (2024-11-15)
Bug fixes
Enhancements
Committers: 3

v10.4.7

Compare Source

nestjs/config (@​nestjs/config)

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/schematics (@​nestjs/schematics)

v11.0.0

Compare Source

Release 11.0.0 (2025-01-17)
Changelog
  • feat: sort library and sub-app names to reduce git merge conflicts (797a384)
  • feat: enable strict null checks and consistent casing (a4cb235)
  • chore: upgrade to eslint v9 (7b205f5)
nestjs/terminus (@​nestjs/terminus)

v11.0.0

Compare Source

v10.3.0

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.

Copy link

socket-security bot commented Jan 16, 2025

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

Package New capabilities Transitives Size Publisher
npm/@angular-devkit/[email protected] 🔁 npm/@angular-devkit/[email protected], npm/@angular-devkit/[email protected] None 0 263 kB google-wombot
npm/@angular-devkit/[email protected] 🔁 npm/@angular-devkit/[email protected] None +11 252 kB google-wombot
npm/@angular-devkit/[email protected] 🔁 npm/@angular-devkit/[email protected] None 0 258 kB google-wombot
npm/@inquirer/[email protected] None +1 177 kB danielchatfield, mischah, sboudrias
npm/@inquirer/[email protected] None 0 49.8 kB danielchatfield, mischah, sboudrias
npm/@inquirer/[email protected] None 0 23.8 kB danielchatfield, mischah, sboudrias
npm/@inquirer/[email protected] None 0 9.27 kB danielchatfield, mischah, sboudrias
npm/@nestjs/[email protected] 🔁 npm/@nestjs/[email protected] None 0 250 kB kamilmysliwiec, nestjscore
npm/@nestjs/[email protected] 🔁 npm/@nestjs/[email protected] None 0 453 kB nestjscore
npm/@nestjs/[email protected] 🔁 npm/@nestjs/[email protected] None 0 52.9 kB nestjscore
npm/@nestjs/[email protected] 🔁 npm/@nestjs/[email protected] None 0 542 kB nestjscore
npm/@nestjs/[email protected] 🔁 npm/@nestjs/[email protected] None 0 64.6 kB nestjscore
npm/@nestjs/[email protected] 🔁 npm/@nestjs/[email protected] Transitive: eval, network +1 453 kB nestjscore
npm/@nestjs/[email protected] 🔁 npm/@nestjs/[email protected] None 0 296 kB brunnerlivio
npm/@nestjs/[email protected] 🔁 npm/@nestjs/[email protected] None 0 35.7 kB nestjscore
npm/@nuxt/[email protected] environment, filesystem, shell 0 18.5 kB danielroe
npm/@types/[email protected] None +1 32.1 kB types
npm/@types/[email protected] None 0 196 kB types
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 207 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 6.37 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 11.3 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 10.8 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 10.5 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 34.2 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 19.7 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 5.34 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 48.5 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 12.3 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None +1 172 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 28.1 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 14.4 kB xtuc
npm/@webassemblyjs/[email protected] 🔁 npm/@webassemblyjs/[email protected] None 0 39.6 kB xtuc
npm/[email protected] None +1 45.6 kB wesleytodd
npm/[email protected] 🔁 npm/[email protected] None 0 56.8 kB jason-green
npm/[email protected] None 0 6.77 kB webdiscus
npm/[email protected] 🔁 npm/[email protected] None 0 20.1 kB blakeembrey
npm/[email protected] 🔁 npm/[email protected] None +1 73.3 kB ulisesgascon
npm/[email protected] environment, filesystem 0 149 kB paulmillr
npm/[email protected] 🔁 npm/[email protected] None 0 4.77 kB knownasilya
npm/[email protected] 🔁 npm/[email protected] None 0 314 kB atinux, pi0
npm/[email protected] None 0 19.1 kB wesleytodd
npm/[email protected] 🔁 npm/[email protected] None 0 4.99 kB natevw
npm/[email protected] 🔁 npm/[email protected] None 0 19.4 kB motdotla
npm/[email protected] 🔁 npm/[email protected] None 0 75.8 kB motdotla
npm/[email protected] 🔁 npm/[email protected] None +2 247 kB ulisesgascon
npm/[email protected] 🔁 npm/[email protected] Transitive: filesystem, network +1 70.2 kB wesleytodd
npm/[email protected] None 0 10.3 kB jonchurch
npm/[email protected] 🔁 npm/[email protected] Transitive: environment +1 913 kB isaacs
npm/[email protected] 🔁 npm/[email protected] None 0 2.96 kB then-bot
npm/[email protected] 🔁 npm/[email protected] None 0 280 kB isaacs
npm/[email protected] 🔁 npm/[email protected] None 0 213 kB vscode-bot
npm/[email protected] 🔁 npm/[email protected] None 0 808 kB isaacs
npm/[email protected] 🔁 npm/[email protected] None 0 467 kB antfu
npm/[email protected] None 0 9.26 kB dougwilson
npm/[email protected] 🔁 npm/[email protected] None 0 4.37 kB sindresorhus
npm/[email protected] 🔁 npm/[email protected] None +2 40.8 kB linusu
npm/[email protected] 🔁 npm/[email protected] None 0 6.5 kB npm-cli-ops
npm/[email protected] 🔁 npm/[email protected] None 0 535 kB isaacs
npm/[email protected] 🔁 npm/[email protected] None 0 85.2 kB jonschlinkert
npm/[email protected] 🔁 npm/[email protected] None 0 36.3 kB paulmillr
npm/[email protected] None 0 46.8 kB wesleytodd
npm/[email protected] 🔁 npm/[email protected] None +3 87.9 kB ulisesgascon
npm/[email protected] 🔁 npm/[email protected] None 0 25.8 kB ulisesgascon
npm/[email protected] 🔁 npm/[email protected] None 0 322 kB sebmaster
npm/[email protected] 🔁 npm/[email protected] None 0 275 kB jonaskello
npm/[email protected] 🔁 npm/[email protected] None 0 21.3 kB wesleytodd
npm/[email protected] 🔁 npm/[email protected] None 0 22.7 MB typescript-bot
npm/[email protected] 🔁 npm/[email protected] None 0 19.3 kB domenic
npm/[email protected] 🔁 npm/[email protected] None +1 5.26 MB evilebottnawi
npm/[email protected] 🔁 npm/[email protected] None 0 78.4 kB domenic
npm/[email protected] None 0 10.7 kB sindresorhus

🚮 Removed packages: npm/@ljharb/[email protected], npm/@nuxtjs/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

@renovate renovate bot force-pushed the renovate/major-nest-monorepo branch 3 times, most recently from ec83e97 to adc074b Compare January 23, 2025 19:40
@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 from adc074b to 6e583ff Compare January 25, 2025 22:07
@renovate renovate bot force-pushed the renovate/major-nest-monorepo branch from 6e583ff to d249b8c Compare January 31, 2025 10:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants