Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 2, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@nestjs/swagger 11.2.1 -> 11.2.3 age confidence dependencies patch
@tsconfig/node21 (source) 21.0.6 -> 21.0.7 age confidence devDependencies patch
@types/express (source) 5.0.5 -> 5.0.6 age confidence devDependencies patch
@types/lodash (source) 4.17.20 -> 4.17.21 age confidence devDependencies patch
Azure/cli v2.1.0 -> v2.2.0 age confidence action minor
class-validator 0.14.2 -> 0.14.3 age confidence dependencies patch
eslint-plugin-eslint-comments@eslint-community/eslint-plugin-eslint-comments ^3.2.0 -> ^3.2.0 devDependencies replacement
eslint-plugin-jest 29.1.0 -> 29.2.1 age confidence devDependencies minor
eslint-plugin-n 17.18.0 -> 17.23.1 age confidence devDependencies minor
eslint-plugin-nodeeslint-plugin-n ^11.1.0 -> ^14.0.0 devDependencies replacement
lint-staged 16.2.6 -> 16.2.7 age confidence devDependencies patch
markdownlint-cli ^0.45.0 -> ^0.46.0 age confidence devDependencies minor
nestjs-pino 4.4.1 -> 4.5.0 age confidence dependencies minor
pino-pretty 13.1.2 -> 13.1.3 age confidence dependencies patch
prettier (source) 3.6.2 -> 3.7.4 age confidence devDependencies minor
sort-package-json 3.4.0 -> 3.5.0 age confidence devDependencies minor
ts-jest (source) 29.4.5 -> 29.4.6 age confidence devDependencies patch
typeorm (source) 0.3.27 -> 0.3.28 age confidence dependencies patch
typeorm-extension 3.7.1 -> 3.7.2 age confidence dependencies patch

This is a special PR that replaces eslint-plugin-eslint-comments with the community suggested minimal stable replacement version.

This is a special PR that replaces eslint-plugin-node with the community suggested minimal stable replacement version.


Release Notes

nestjs/swagger (@​nestjs/swagger)

v11.2.3

Compare Source

What's Changed

Full Changelog: nestjs/swagger@11.2.2...11.2.3

v11.2.2

Compare Source

11.2.2 (2025-11-16)

Bug fixes
Dependencies
Committers: 1
tsconfig/bases (@​tsconfig/node21)

v21.0.7

Compare Source

Azure/cli (Azure/cli)

v2.2.0: GitHub Action for Azure CLI v2.2.0

Compare Source

What's Changed
New Contributors

Full Changelog: Azure/cli@v2.1.0...v2.2.0

typestack/class-validator (class-validator)

v0.14.3

Compare Source

jest-community/eslint-plugin-jest (eslint-plugin-jest)

v29.2.1

Compare Source

Bug Fixes
  • valid-mock-module-path: report on ERR_PACKAGE_PATH_NOT_EXPORTED errors (#​1860) (6cd4e89)

v29.2.0

Compare Source

Features
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.23.1

Compare Source

🩹 Fixes
  • node-builtins-modules/tls.js: Update minimal version (#​484) (fe94432)
📚 Documentation
  • improve clarity of no-missing-import and no-missing-require (#​455) (92ea876)

v17.23.0

Compare Source

🌟 Features

v17.22.0

Compare Source

🌟 Features
🩹 Fixes
  • ci: bump markdowncli-lint version (#​468) (91a56d0)
  • no-unsupported: URL.createObjectURL, URL.revokeObjectURL are supported (#​471) (844155c)

v17.21.3

Compare Source

🩹 Fixes

v17.21.2

Compare Source

🧹 Chores

v17.21.1

Compare Source

🩹 Fixes
  • ci: Ignore type test failures for types present in ESLint 8 that we removed in ESLint 9.31.0 (#​460) (76f8150)
  • no-restricted-require: Handle .. paths (#​458) (34719e8)

v17.21.0

Compare Source

🌟 Features
🩹 Fixes
  • correctly handle version ranges in prefer-node-protocol (#​454) (d60439d)
🧹 Chores

v17.20.0

Compare Source

🌟 Features

v17.19.0

Compare Source

🌟 Features
lint-staged/lint-staged (lint-staged)

v16.2.7

Compare Source

Patch Changes
  • #​1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.
igorshubovych/markdownlint-cli (markdownlint-cli)

v0.46.0

Compare Source

  • Replace glob dependency with tinyglobby (smaller and fewer dependencies)
  • Update markdownlint dependency to 0.39.0
    • Add MD060/table-column-style
    • Improve MD001/MD007/MD009/MD010/MD029/MD033/MD037/MD059
  • Update all dependencies via Dependabot
iamolegga/nestjs-pino (nestjs-pino)

v4.5.0: : support pino@10, pino-http@11

Compare Source

What's Changed

Full Changelog: iamolegga/nestjs-pino@4.4.1...4.5.0

pinojs/pino-pretty (pino-pretty)

v13.1.3

Compare Source

What's Changed

New Contributors

Full Changelog: pinojs/pino-pretty@v13.1.2...v13.1.3

prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

keithamus/sort-package-json (sort-package-json)

v3.5.0

Compare Source

Features
kulshekhar/ts-jest (ts-jest)

v29.4.6

Compare Source

Bug Fixes
typeorm/typeorm (typeorm)

v0.3.28

Compare Source

Bug Fixes
Features
tada5hi/typeorm-extension (typeorm-extension)

v3.7.2

Compare Source

Bug Fixes
  • deps: bump the minorandpatch group across 1 directory with 12 updates (#​1284) (f32f812)
Features

3.7.2 (2025-11-25)

Bug Fixes
  • deps: bump locter to v2.1.1 (b012542)
  • deps: bump yargs to v18.0.0 (6b8e689)
  • deps: define faker as peer-dependency (71408c0)

3.6.3 (2024-11-06)

Bug Fixes
  • deps: bump locter from 2.1.3 to 2.1.5 (#​1191) (ee4d5d0)
  • enhance skipRelation check in validate entity join columns fn (3120433)
  • validate entity join columns - respect nullable join columns (ab87659)

3.6.2 (2024-10-08)

Bug Fixes
  • consider runSchema- & synchronize-option in checkDatabase fn (b90a127)
  • deps: bump locter from 2.1.0 to 2.1.3 (#​1155) (48752e7)

3.6.1 (2024-08-11)

Bug Fixes
  • adjust data source cleanup behaviour to jsdoc description (e27f42e)
  • schema detection in check-database fn (39dcc92)

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 is behind base branch, 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
Copy link
Contributor Author

renovate bot commented Nov 3, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: eslint-config-airbnb-typescript@18.0.0
npm error Found: @typescript-eslint/eslint-plugin@8.46.4
npm error node_modules/@typescript-eslint/eslint-plugin
npm error   dev @typescript-eslint/eslint-plugin@"^8.46.4" from the root project
npm error   peerOptional @typescript-eslint/eslint-plugin@"^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0" from eslint-plugin-unused-imports@4.3.0
npm error   node_modules/eslint-plugin-unused-imports
npm error     dev eslint-plugin-unused-imports@"^4.3.0" from the root project
npm error   1 more (eslint-plugin-jest)
npm error
npm error Could not resolve dependency:
npm error peer @typescript-eslint/eslint-plugin@"^7.0.0" from eslint-config-airbnb-typescript@18.0.0
npm error node_modules/eslint-config-airbnb-typescript
npm error   dev eslint-config-airbnb-typescript@"^18.0.0" from the root project
npm error
npm error Conflicting peer dependency: @typescript-eslint/eslint-plugin@7.18.0
npm error node_modules/@typescript-eslint/eslint-plugin
npm error   peer @typescript-eslint/eslint-plugin@"^7.0.0" from eslint-config-airbnb-typescript@18.0.0
npm error   node_modules/eslint-config-airbnb-typescript
npm error     dev eslint-config-airbnb-typescript@"^18.0.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2025-12-05T13_55_09_882Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-12-05T13_55_09_882Z-debug-0.log

@sonarqubecloud
Copy link

sonarqubecloud bot commented Dec 5, 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.

1 participant