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(dependabot): bump the major group across 1 directory with 10 updates #51

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 20, 2025

Bumps the major group with 10 updates in the / directory:

Package From To
@nestjs/common 10.4.4 11.0.1
@nestjs/config 3.2.3 4.0.0
@nestjs/core 10.4.4 11.0.1
@nestjs/platform-fastify 10.4.4 11.0.1
fastify 4.28.1 5.2.1
@nestjs/schematics 10.1.4 11.0.0
@nestjs/testing 10.4.4 11.0.1
@vitest/coverage-v8 2.1.1 3.0.2
eslint-config-prettier 9.1.0 10.0.1
vitest 2.1.1 3.0.2

Updates @nestjs/common from 10.4.4 to 11.0.1

Release notes

Sourced from @​nestjs/common's releases.

v10.4.15 (2024-12-09)

Dependencies

v10.4.13 (2024-12-03)

Bug fixes

  • common
    • #14256 chore(common): Add type declaration for RawBody decorator with pipes (@​sapenlei)

Dependencies

Committers: 3

v10.4.12 (2024-11-29)

Bug fixes

Dependencies

... (truncated)

Commits

Updates @nestjs/config from 3.2.3 to 4.0.0

Release notes

Sourced from @​nestjs/config's releases.

Release 4.0.0

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)

Release 3.3.0

  • Merge branch 'lovesharma95-lovesharma95-feature/loadAsync' (fdff9c1)
  • chore: minor formatting changes (7ab5a27)
  • Merge branch 'lovesharma95-feature/loadAsync' of https://github.com/lovesharma95/nestjs-config into lovesharma95-lovesharma95-feature/loadAsync (16ff146)
  • Update lib/config.module.ts (77515e1)
  • chore(deps): update dependency @​types/lodash to v4.17.12 (ebdb8c2)
  • chore(deps): update dependency @​types/node to v20.16.13 (93ed4c3)
  • chore(deps): update dependency eslint to v9.13.0 (29fabda)
  • chore(deps): update dependency @​types/lodash to v4.17.11 (ec09f9d)
  • chore(deps): update typescript-eslint monorepo to v8.10.0 (6aad852)
  • chore(deps): update dependency @​types/node to v20.16.12 (0375223)
  • chore(deps): update nest monorepo to v10.4.5 (ba884de)
  • chore(deps): update dependency release-it to v17.10.0 (1f12524)
  • chore(deps): update typescript-eslint monorepo to v8.9.0 (2329c84)
  • chore(deps): update dependency release-it to v17.9.0 (c44bc35)
  • chore(deps): update dependency release-it to v17.8.2 (ca6bff9)
  • chore(deps): update dependency typescript to v5.6.3 (3bb4ad6)
  • chore(deps): update dependency @​types/node to v20.16.11 (8570424)
  • chore(deps): update typescript-eslint monorepo to v8.8.1 (b9e1757)
  • chore(deps): update dependency eslint to v9.12.0 (dd71c7e)
  • chore(deps): update dependency release-it to v17.7.0 (5faf74a)
  • chore(deps): update dependency eslint to v9 (d692263)
  • chore(deps): update dependency eslint-plugin-import to v2.31.0 (2c14992)
  • chore(deps): update dependency @​types/lodash to v4.17.10 (031e5ab)
  • chore(deps): update typescript-eslint monorepo to v8.8.0 (bc01b6c)
  • chore(deps): update dependency @​types/node to v20.16.10 (b2bb9b2)
  • chore(deps): update dependency @​types/node to v20.16.9 (b404072)
  • chore(deps): update dependency @​types/node to v20.16.8 (89da7a5)
  • chore(deps): update dependency @​types/node to v20.16.7 (5ac872b)

... (truncated)

Commits
  • 163a4a8 chore(): release v4.0.0
  • c2eaf04 chore: update config attributes to more self descriptive names
  • ce18cb8 Merge branch 'master' into next
  • 49c13fc test: update integration test to use new dotenv-expand opts
  • a1225db chore: upgrade eslint, update deps, ci setup
  • 1c54dde Merge pull request #1919 from foxadb/refactor-missing-return-types
  • 6411b7d Merge pull request #1925 from nestjs/renovate/major-nest-monorepo
  • e9c8727 Merge pull request #1883 from nestjs/feat/skip-predefined-change-order
  • 94852a5 chore(deps): update dependency lint-staged to v15.4.1 (#1926)
  • 49eec57 chore(deps): update dependency lint-staged to v15.4.0 (#1924)
  • Additional commits viewable in compare view

Updates @nestjs/core from 10.4.4 to 11.0.1

Release notes

Sourced from @​nestjs/core's releases.

v10.4.15 (2024-12-09)

Dependencies

v10.4.13 (2024-12-03)

Bug fixes

  • common
    • #14256 chore(common): Add type declaration for RawBody decorator with pipes (@​sapenlei)

Dependencies

Committers: 3

v10.4.12 (2024-11-29)

Bug fixes

Dependencies

... (truncated)

Commits

Updates @nestjs/platform-fastify from 10.4.4 to 11.0.1

Release notes

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

v10.4.15 (2024-12-09)

Dependencies

v10.4.13 (2024-12-03)

Bug fixes

  • common
    • #14256 chore(common): Add type declaration for RawBody decorator with pipes (@​sapenlei)

Dependencies

Committers: 3

v10.4.12 (2024-11-29)

Bug fixes

Dependencies

... (truncated)

Commits

Updates fastify from 4.28.1 to 5.2.1

Release notes

Sourced from fastify's releases.

v5.2.1

What's Changed

New Contributors

Full Changelog: fastify/fastify@v5.2.0...v5.2.1

v5.2.0

What's Changed

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by climba03003, a new releaser for fastify since your current version.


Updates @nestjs/schematics from 10.1.4 to 11.0.0

Release notes

Sourced from @​nestjs/schematics's releases.

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)

Release 10.2.3

  • Merge pull request #1919 from micalevisk/patch-1 (590ad1f)
  • Merge pull request #1915 from nestjs/renovate/angular-cli-monorepo (c2a0085)
  • Merge pull request #1918 from micalevisk/refactor-remove-deprecated-node-apis (2546cdb)
  • fix: downgrade eslint to v8 on application files (c716ed9)
  • refactor: drop deprecate nodejs utility api (e323a5a)
  • chore(deps): update babel monorepo to v7.26.0 (5eddd5a)
  • chore(deps): update dependency @​types/node to v20.17.1 (66013b1)
  • fix(deps): update angular-cli monorepo to v17.3.11 (5d47e13)
  • chore(deps): update dependency @​types/node to v20.17.0 (f614f17)
  • chore(deps): update dependency @​types/jest to v29.5.14 (ea8edec)
  • chore(deps): update babel monorepo to v7.25.9 (f50afcb)
  • chore(deps): update dependency @​types/node to v20.16.14 (39a550e)
  • chore(deps): update typescript-eslint monorepo to v8.11.0 (9271009)
  • Merge pull request #1904 from nestjs/renovate/release-it-17.x (fb410a8)
  • chore(deps): update dependency @​types/node to v20.16.13 (353afd8)
  • chore(deps): update dependency eslint to v9.13.0 (ba3b0d5)
  • chore(deps): update typescript-eslint monorepo to v8.10.0 (9d90c4d)
  • chore(deps): update dependency release-it to v17.10.0 (a880ab3)

Release 10.2.2

  • Merge pull request #1905 from nestjs/revert-1899-patch-1 (5fee5b0)
  • Revert "feat: enable forceConsistentCasingInFileNames for 'application' template" (8b4e2ec)

Release 10.2.1

  • chore: temporarily use web release (fcda2d4)
  • chore: regenerate package-lock (a97af97)
  • chore: regenerate package-lock (68ad379)
  • Merge branch 'master' of https://github.com/nestjs/schematics (14d1bba)
  • chore: update application schematic readme (ac76463)
  • chore(deps): update dependency @​types/node to v20.16.12 (427e447)

Release 10.2.0

  • Merge branch 'BrunnerLivio-feature/use-env-port' (8cb708c)
  • chore: resolve conflicts, update to nullish coalescing (1572899)
  • Merge branch 'master' of https://github.com/nestjs/schematics (7acea9b)
  • chore: update readme (e4b101c)
  • Merge pull request #1813 from nestjs/renovate/comment-json-4.x (cb3e503)

... (truncated)

Commits
  • 67a5356 chore: resolve conflicts
  • 94a3ba8 chore: update schematics package.json files
  • 641f8ce chore(deps): update dependency @​commitlint/cli to v19.6.1 (#1962)
  • 2aad221 chore(deps): update dependency eslint to v9.17.0 (#1961)
  • 9c9d318 chore(deps): update dependency nodemon to v3.1.9 (#1960)
  • 1cce577 chore(deps): update dependency @​types/node to v22.10.2 (#1959)
  • 000626c chore(deps): update typescript-eslint monorepo to v8.18.0 (#1958)
  • a0efb93 chore(deps): update dependency prettier to v3.4.2 (#1955)
  • 190ff42 chore(deps): update typescript-eslint monorepo to v8.17.0 (#1954)
  • 4809572 chore(deps): update dependency eslint to v9.16.0 (#1953)
  • Additional commits viewable in compare view

Updates @nestjs/testing from 10.4.4 to 11.0.1

Release notes

Sourced from @​nestjs/testing's releases.

v10.4.15 (2024-12-09)

Dependencies

v10.4.13 (2024-12-03)

Bug fixes

  • common
    • #14256 chore(common): Add type declaration for RawBody decorator with pipes (@​sapenlei)

Dependencies

Committers: 3

v10.4.12 (2024-11-29)

Bug fixes

Dependencies

... (truncated)

Commits

Updates @vitest/coverage-v8 from 2.1.1 to 3.0.2

Release notes

Sourced from @​vitest/coverage-v8's releases.

v3.0.2

   🐞 Bug Fixes

    View changes on GitHub

v3.0.1

   🐞 Bug Fixes

    View changes on GitHub

v3.0.0

Vitest 3 is here! There are a few breaking changes, but we expect the migration to be smooth. This release page lists all changes made to the project during the beta. For the migration guide, please refer to the documentation.

   🚨 Breaking Changes

Bumps the major group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@nestjs/common](https://github.com/nestjs/nest/tree/HEAD/packages/common) | `10.4.4` | `11.0.1` |
| [@nestjs/config](https://github.com/nestjs/config) | `3.2.3` | `4.0.0` |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `10.4.4` | `11.0.1` |
| [@nestjs/platform-fastify](https://github.com/nestjs/nest/tree/HEAD/packages/platform-fastify) | `10.4.4` | `11.0.1` |
| [fastify](https://github.com/fastify/fastify) | `4.28.1` | `5.2.1` |
| [@nestjs/schematics](https://github.com/nestjs/schematics) | `10.1.4` | `11.0.0` |
| [@nestjs/testing](https://github.com/nestjs/nest/tree/HEAD/packages/testing) | `10.4.4` | `11.0.1` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `2.1.1` | `3.0.2` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.1.0` | `10.0.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.1` | `3.0.2` |



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

Updates `@nestjs/config` from 3.2.3 to 4.0.0
- [Release notes](https://github.com/nestjs/config/releases)
- [Changelog](https://github.com/nestjs/config/blob/master/.release-it.json)
- [Commits](nestjs/config@3.2.3...4.0.0)

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

Updates `@nestjs/platform-fastify` from 10.4.4 to 11.0.1
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.0.1/packages/platform-fastify)

Updates `fastify` from 4.28.1 to 5.2.1
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v4.28.1...v5.2.1)

Updates `@nestjs/schematics` from 10.1.4 to 11.0.0
- [Release notes](https://github.com/nestjs/schematics/releases)
- [Changelog](https://github.com/nestjs/schematics/blob/master/.release-it.json)
- [Commits](nestjs/schematics@10.1.4...11.0.0)

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

Updates `@vitest/coverage-v8` from 2.1.1 to 3.0.2
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.2/packages/coverage-v8)

Updates `eslint-config-prettier` from 9.1.0 to 10.0.1
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.1.0...v10.0.1)

Updates `vitest` from 2.1.1 to 3.0.2
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.2/packages/vitest)

---
updated-dependencies:
- dependency-name: "@nestjs/common"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@nestjs/config"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@nestjs/core"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@nestjs/platform-fastify"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: fastify
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@nestjs/schematics"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@nestjs/testing"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 20, 2025
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