Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 10, 2025

This PR contains the following updates:

Package Change Age Confidence
@babel/core (source) 7.28.57.28.6 age confidence
@netlify/api (source) 14.0.914.0.12 age confidence
@octokit/graphql 9.0.29.0.3 age confidence
@octokit/request-error 7.0.17.1.0 age confidence
@octokit/rest 22.0.022.0.1 age confidence
@types/lodash (source) 4.17.204.17.23 age confidence
@types/node (source) 24.9.224.10.9 age confidence
@zendeskgarden/eslint-config (source) 47.0.047.1.0 age confidence
comment-parser (source) 1.4.11.4.3 age confidence
commit-and-tag-version 12.6.012.6.1 age confidence
eslint (source) 9.38.09.39.2 age confidence
execa 9.6.09.6.1 age confidence
figlet 1.9.31.9.4 age confidence
fs-extra 11.3.211.3.3 age confidence
markdownlint-cli 0.45.00.47.0 age confidence
prettier (source) 3.6.23.8.0 age confidence
react-docgen-typescript 2.2.22.4.0 age confidence

Release Notes

babel/babel (@​babel/core)

v7.28.6

Compare Source

netlify/build (@​netlify/api)

v14.0.12

Compare Source

Bug Fixes

v14.0.11

Compare Source

Bug Fixes

v14.0.10

Compare Source

Bug Fixes
octokit/graphql.js (@​octokit/graphql)

v9.0.3

Compare Source

Bug Fixes
octokit/request-error.js (@​octokit/request-error)

v7.1.0

Compare Source

Features
  • inherit options from base Error class to add support for the cause property (#​535/#​536) (2ea2780)

v7.0.2

Compare Source

Bug Fixes
octokit/rest.js (@​octokit/rest)

v22.0.1

Compare Source

Bug Fixes
zendeskgarden/eslint-config (@​zendeskgarden/eslint-config)

v47.1.0

Compare Source

Features
  • add automatic .gitignore pattern support via eslint-config-flat-gitignore (#​258) (8e3e196)
Bug Fixes
yavorskiy/comment-parser (comment-parser)

v1.4.3

Compare Source

v1.4.2

Compare Source

absolute-version/commit-and-tag-version (commit-and-tag-version)

v12.6.1

Compare Source

Bug Fixes
  • bump: auto-increment prerelease when tag already exists (#​258) (75d69a6)
  • use fast-xml-parser to parse and build XML. This substantially reduces the bundle size. (#​234) (6075f4b)
eslint/eslint (eslint)

v9.39.2

Compare Source

v9.39.1

Compare Source

v9.39.0

Compare Source

sindresorhus/execa (execa)

v9.6.1

Compare Source


patorjk/figlet.js (figlet)

v1.9.4

Compare Source

  • Added the ANSI-Compact font
  • Some adjustments for older versions of Node (#​146)
jprichardson/node-fs-extra (fs-extra)

v11.3.3

Compare Source

  • Fix copying symlink when destination is a symlink to the same target (#​1019, #​1060)
igorshubovych/markdownlint-cli (markdownlint-cli)

v0.47.0

Compare Source

  • Add output and exit code support for warnings
  • Update markdownlint dependency to 0.40.0
    • Improve MD011/MD013/MD051/MD060
  • Update all dependencies via Dependabot

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
prettier/prettier (prettier)

v3.8.0

Compare Source

diff

🔗 Release note

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

styleguidist/react-docgen-typescript (react-docgen-typescript)

v2.4.0: v.2.4.0

Compare Source

  • feat: Improve subcomponent and components with "parts" exports - thanks to @​cgatian PR #​514
  • feat: Set esModuleInterop as default config of parse - thanks to HUST-SE-LY PR #​511
  • feat: Support extracting defaults from renamed destructuring - thanks to @​mrginglymus PR #​507
  • perf improvements - thanks to @​adbutterfield PR #​504
  • feat: Add option for sorting union members - thanks to @​pwolfert PR #​503
  • Vulnerable dependencies updated

v2.3.0

Compare Source


Configuration

📅 Schedule: Branch creation - "on Monday every 9 weeks of the year starting on the 1st week" (UTC), 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 renovate bot requested a review from a team as a code owner November 10, 2025 01:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 24d86c9 to 64b0120 Compare November 15, 2025 05:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1f1dfbd to b3fe668 Compare November 25, 2025 11:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 6240741 to 7b45457 Compare December 3, 2025 05:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 85d3cf6 to 4784e8d Compare December 11, 2025 09:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from a7d8206 to d7cca9f Compare December 19, 2025 01:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 06ce810 to 3eee0d3 Compare December 22, 2025 18:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from fb5f3dc to c49d25b Compare December 31, 2025 20:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 0441f53 to 51e943f Compare January 15, 2026 22:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 51e943f to 32b067c Compare January 17, 2026 00:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant