An open index of dependabot pull requests across open source projects.

build(dependencies): bump the prod-dependencies-minor-and-patch group with 6 updates

Merged
Number: #108
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 1
Created: June 01, 2025 at 01:58 AM UTC
(3 months ago)
Updated: June 01, 2025 at 02:00 AM UTC
(3 months ago)
Merged: June 01, 2025 at 02:00 AM UTC
(3 months ago)
by github-actions[bot]
Time to Close: 1 minute
Labels:
dependencies javascript
Description:

Bumps the prod-dependencies-minor-and-patch group with 6 updates:

Package From To
@nestjs/common 11.1.0 11.1.2
@nestjs/core 11.1.0 11.1.2
@nestjs/platform-express 11.1.0 11.1.2
@nestjs/swagger 11.1.6 11.2.0
class-validator 0.14.1 0.14.2
typeorm 0.3.22 0.3.24

Updates @nestjs/common from 11.1.0 to 11.1.2

Release notes

Sourced from @​nestjs/common's releases.

v11.1.2 (2025-05-26)

Bug fixes

  • microservices
    • #15172 fix(microservices): support custom strategy in async usefactory config (@​mag123c)
    • #15166 fix(microservice): prevent error logs during redis client shutdown (@​janroker)

Dependencies

Committers: 2

v11.1.1 (2025-05-14)

Bug fixes

Enhancements

Dependencies

Committers: 7

... (truncated)

Commits

Updates @nestjs/core from 11.1.0 to 11.1.2

Release notes

Sourced from @​nestjs/core's releases.

v11.1.2 (2025-05-26)

Bug fixes

  • microservices
    • #15172 fix(microservices): support custom strategy in async usefactory config (@​mag123c)
    • #15166 fix(microservice): prevent error logs during redis client shutdown (@​janroker)

Dependencies

Committers: 2

v11.1.1 (2025-05-14)

Bug fixes

Enhancements

Dependencies

Committers: 7

... (truncated)

Commits
  • 32b5feb chore(@​nestjs) publish v11.1.2 release
  • f262812 chore: update package.json
  • 2cccff1 chore(@​nestjs) publish v11.1.1 release
  • 7338c03 Merge pull request #15056 from maxbronnikov10/fix/http-adapter-error
  • fb3b12d fix(core): HTTP adapter error mapping
  • cb6080e refactor(core,platform-fastify): drop useless optional signature
  • 10f4a9d fix(core): bring back getHeader and appendHeader methods on `AbstractHttp...
  • See full diff in compare view

Updates @nestjs/platform-express from 11.1.0 to 11.1.2

Release notes

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

v11.1.2 (2025-05-26)

Bug fixes

  • microservices
    • #15172 fix(microservices): support custom strategy in async usefactory config (@​mag123c)
    • #15166 fix(microservice): prevent error logs during redis client shutdown (@​janroker)

Dependencies

Committers: 2

v11.1.1 (2025-05-14)

Bug fixes

Enhancements

Dependencies

Committers: 7

... (truncated)

Commits

Updates @nestjs/swagger from 11.1.6 to 11.2.0

Release notes

Sourced from @​nestjs/swagger's releases.

Release 11.2.0

11.2.0 (2025-05-05)

Enhancements

  • #3424 feat(document-builder): add support for setting extensions inside the info object (@​daniseijo)
  • #3248 feat(swagger): add extension in SecuritySchemeObject (@​mag123c)

Committers: 2

Commits
  • e3f44bd chore(): release v11.2.0
  • 2a4de7a Merge pull request #3424 from daniseijo/extensions-info-section
  • 5943508 Merge pull request #3248 from mag123c/3179-security-scheme-extension
  • d4acd13 chore(deps): update dependency eslint-plugin-prettier to v5.3.1 (#3428)
  • 592d617 chore(deps): update dependency release-it to v19.0.2 (#3427)
  • fb0ef34 chore(deps): update eslint monorepo to v9.26.0 (#3426)
  • a0c3ee2 chore(deps): update dependency class-validator to v0.14.2 (#3425)
  • 9a0745e feat(document-builder): add support for setting extensions inside the info ob...
  • See full diff in compare view

Updates class-validator from 0.14.1 to 0.14.2

Release notes

Sourced from class-validator's releases.

v0.14.2

What's Changed

New Contributors

Full Changelog: https://github.com/typestack/class-validator/compare/v0.14.1...v0.14.2

Changelog

Sourced from class-validator's changelog.

0.14.2 (2025-05-02)

Fixed

  • Fixed an issue where forbidUnknownValues did not default to true when validatorOptions was undefined. (#2196 by @​cduff)
  • Fixed the ValidationMetadata.name property to work correctly with the @IsOptional decorator. (#2044 by @​Clashsoft)
  • Updated the Codecov configuration for continuous integration. (#2556 by @​haiweilian)
  • Fixed an issue where options were not passed correctly to the @IsBase64 decorator. (#2549 by @​aseyfpour)
  • Fixed argument handling for the isBase64 function. (#2574 by @​braaar)
Commits

Updates typeorm from 0.3.22 to 0.3.24

Release notes

Sourced from typeorm's releases.

0.3.24

What's Changed

New Contributors

Full Changelog: https://github.com/typeorm/typeorm/compare/0.3.23...0.3.24

0.3.23

:warning: Note on a breaking change

This release includes a technically breaking change (from this PR) in the behaviour of the delete and update methods of the EntityManager and Repository APIs, when an empty object is supplied as the criteria:

await repository.delete({})
await repository.update({}, { foo: 'bar' })
  • Old behaviour was to delete or update all rows in the table
  • New behaviour is to throw an error: Empty criteria(s) are not allowed for the delete/update method.

Why?

This behaviour was not documented and is considered dangerous as it can allow a badly-formed object (e.g. with an undefined id) to inadvertently delete or update the whole table.

When the intention actually was to delete or update all rows, such queries can be rewritten using the QueryBuilder API:

await repository.createQueryBuilder().delete().execute()
// executes: DELETE FROM table_name
await repository.createQueryBuilder().update().set({ foo: 'bar' }).execute()
// executes: UPDATE table_name SET foo = 'bar'

... (truncated)

Changelog

Sourced from typeorm's changelog.

0.3.24 (2025-05-14)

Bug Fixes

  • capacitor use query to run PRAGMA statements (#11467) (d325d9e)
  • ci: resolve pkg.pr.new publish failure (2168441)
  • mssql: avoid mutating input parameter array values (#11476) (b8dbca5)

Features

  • add tagged template for executing raw SQL queries (#11432) (c464ff8)
  • add updateAll and deleteAll methods to EntityManager and Repository APIs (#11459) (23bb1ee)
  • spanner: support insert returning (#11460) (144634d), closes #11453

Performance Improvements

  • improve save performance during entities update (15de733)

0.3.23 (2025-05-05)

:warning: Note on a breaking change

This release includes a technically breaking change (from this PR) in the behaviour of the delete and update methods of the EntityManager and Repository APIs, when an empty object is supplied as the criteria:

await repository.delete({})
await repository.update({}, { foo: 'bar' })
  • Old behaviour was to delete or update all rows in the table
  • New behaviour is to throw an error: Empty criteria(s) are not allowed for the delete/update method.

Why?

This behaviour was not documented and is considered dangerous as it can allow a badly-formed object (e.g. with an undefined id) to inadvertently delete or update the whole table.

When the intention actually was to delete or update all rows, such queries can be rewritten using the QueryBuilder API:

await repository.createQueryBuilder().delete().execute()
// executes: DELETE FROM table_name
await repository.createQueryBuilder().update().set({ foo: 'bar' }).execute()
// executes: UPDATE table_name SET foo = 'bar'

... (truncated)

Commits
  • 12a71e4 chore: version 0.3.24 (#11478)
  • d325d9e fix: capacitor driver PRAGMA bug (#11467)
  • b8dbca5 fix(mssql): avoid mutating input parameter array values (#11476)
  • 9f889b3 chore: clarify commit practices (#11472)
  • 144634d feat(spanner): support insert returning (#11460)
  • e9eaf79 Fix/11466 mssql find operator (#11468)
  • 23bb1ee feat: add updateAll and deleteAll methods to EntityManager and Repository API...
  • a6b61f7 chore: include warning about update({}) in changelog (#11471)
  • 6d1c4f0 build: ensure coveralls flag-name is unique by db, node and client versions (...
  • 1198dc2 chore: add note about breaking change in 0.3.23 (#11469)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+54
Deletions:
-53
Package Dependencies
Ecosystem:
npm
Version Change:
11.1.0 → 11.1.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
11.1.0 → 11.1.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.14.1 → 0.14.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
11.1.0 → 11.1.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
11.1.6 → 11.2.0
Update Type:
Minor
Package:
typeorm
Ecosystem:
npm
Version Change:
0.3.22 → 0.3.24
Update Type:
Patch
Technical Details
ID: 777224
UUID: 2557486914
Node ID: PR_kwDOLtyvls6YcCdC
Host: GitHub
Repository: adax10/nestjs-template-with-sql-and-i18n
Merge State: Unknown