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(renovate): Update major (major) #80

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

Conversation

darraghoriordan
Copy link
Owner

@darraghoriordan darraghoriordan commented May 6, 2024

This PR contains the following updates:

Package Type Update Change Pending
@nestjs/axios dependencies major 3.1.3 -> 4.0.0
@nestjs/bull dependencies major 10.2.3 -> 11.0.1
@nestjs/cache-manager dependencies major 2.3.0 -> 3.0.0
@nestjs/cli devDependencies major 10.4.9 -> 11.0.2
@nestjs/common (source) dependencies major 10.4.15 -> 11.0.5 11.0.6
@nestjs/config dependencies major 3.3.0 -> 4.0.0
@nestjs/core (source) dependencies major 10.4.15 -> 11.0.5 11.0.6
@nestjs/microservices (source) dependencies major 10.4.15 -> 11.0.5 11.0.6
@nestjs/passport dependencies major 10.0.3 -> 11.0.5
@nestjs/platform-express (source) dependencies major 10.4.15 -> 11.0.5 11.0.6
@nestjs/schematics devDependencies major ^10.2.3 -> ^11.0.0
@nestjs/swagger dependencies major 8.1.0 -> 11.0.3
@nestjs/terminus dependencies major 10.2.3 -> 11.0.0
@nestjs/typeorm dependencies major 10.0.2 -> 11.0.0
cache-manager (source) dependencies major 5.7.6 -> 6.4.0
eslint-config-prettier devDependencies major 9.1.0 -> 10.0.1

Release Notes

nestjs/axios (@​nestjs/axios)

v4.0.0

Compare Source

What's Changed

Full Changelog: nestjs/axios@3.1.3...4.0.0

nestjs/bull (@​nestjs/bull)

v11.0.1

Compare Source

v11.0.0

Compare Source

Changelog
nestjs/cache-manager (@​nestjs/cache-manager)

v3.0.0

Compare Source

Breaking changes

@nestjs/cache-manager v3 does no longer support cache-manager < v6. Migration to Keyv is necessary.

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

Changelog

  • chore(deps): support cache-manager v6 (94c9373)
  • chore(deps): update dependency cache-manager to v6 (df48080)
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
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

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

v11.0.5

Compare Source

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

v11.0.4

Compare Source

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

v11.0.3

Compare Source

v11.0.2

Compare Source

v11.0.1

Compare Source

v11.0.0

Compare Source

v11.0.0

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

v11.0.3

Compare Source

11.0.3 (2025-01-23)

Bug fixes
Committers: 1

v11.0.2

Compare Source

Changelog

v11.0.1

Compare Source

11.0.1 (2025-01-17)

Dependencies

v11.0.0

Compare Source

11.0.0 (2025-01-16)

Breaking changes

This version is only compatible with @nestjs/{core,common,platform-express,platform-fastify,...} >= v11

Enhancements
Dependencies
Committers: 2

v8.1.1

Compare Source

Unreleased (2025-01-10)

Bug fixes
  • #​3232 fix: missing ApiProperty enum undefined handling (@​nxht)
  • #​3223 fix: swagger crashed while using any Param/Query/Body decorator in a monorepo with pnpm (@​winuxx)
Dependencies
Committers: 3
nestjs/terminus (@​nestjs/terminus)

v11.0.0

Compare Source

v10.3.0

Compare Source

nestjs/typeorm (@​nestjs/typeorm)

v11.0.0

Compare Source

  • chore: remove deprecated keepConnectionAlive (d25d11a)
  • chore(deps): update nest monorepo to v11 (31d765b)
  • chore(deps): Use crypto.randomUUID() instead of uuid module (1f7e661)
prettier/eslint-config-prettier (eslint-config-prettier)

v10.0.1

Compare Source

eslint-config-prettier

10.0.1

What's Changed

New Contributors

Full Changelog: prettier/eslint-config-prettier@v9.1.0...v10.0.1

v10.0.0

Compare Source

Major Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "* 0-3 * * *" in timezone Australia/Melbourne.

🚦 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 has been generated by Renovate Bot.

@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch from c9e8556 to ff154f3 Compare May 9, 2024 21:24
@darraghoriordan darraghoriordan changed the title fix(renovate): Update dependency eslint-plugin-sonarjs to v1 fix(renovate): Update major (major) May 9, 2024
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 2 times, most recently from 6a2eb7f to d5eab54 Compare May 13, 2024 21:24
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 2 times, most recently from 9086c5e to 7bb69de Compare July 1, 2024 02:34
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 4 times, most recently from f3efb0f to e40d621 Compare July 13, 2024 21:24
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 3 times, most recently from 9a1abbd to 527eaac Compare July 27, 2024 05:25
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 3 times, most recently from 1ceab5c to 2242c1a Compare August 5, 2024 02:32
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 6 times, most recently from 80909a8 to 1cbf0da Compare August 14, 2024 05:26
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 3 times, most recently from 9c1e32c to c0eecbf Compare August 17, 2024 21:24
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 4 times, most recently from 0c0441a to 2017394 Compare December 14, 2024 02:45
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 2 times, most recently from 7767f49 to 43cbe1d Compare December 19, 2024 21:25
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 2 times, most recently from 526d53d to 10ed6b0 Compare December 26, 2024 21:25
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 2 times, most recently from b957da5 to 679b0b8 Compare December 31, 2024 13:11
@darraghoriordan darraghoriordan changed the title fix(renovate): Update major (major) fix(renovate): Update Node.js to v22 Dec 31, 2024
@darraghoriordan darraghoriordan changed the title fix(renovate): Update Node.js to v22 fix(renovate): Update Node.js to v22 - autoclosed Dec 31, 2024
@darraghoriordan darraghoriordan deleted the renovate/major-major branch December 31, 2024 21:24
@darraghoriordan darraghoriordan changed the title fix(renovate): Update Node.js to v22 - autoclosed fix(renovate): Update Node.js to v22 Jan 1, 2025
@darraghoriordan darraghoriordan changed the title fix(renovate): Update Node.js to v22 fix(renovate): Update dependency cache-manager to v6 Jan 1, 2025
@darraghoriordan darraghoriordan changed the title fix(renovate): Update dependency cache-manager to v6 fix(renovate): Update major (major) Jan 16, 2025
@darraghoriordan darraghoriordan force-pushed the renovate/major-major branch 6 times, most recently from ad0961f to 896a421 Compare January 25, 2025 21:24
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.

1 participant