Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 1, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
github.com/go-git/go-billy/v5 v5.6.2 -> v5.7.0 age confidence require minor
github.com/puzpuzpuz/xsync/v4 v4.1.0 -> v4.2.0 age confidence require minor
golangci/golangci-lint v2.7.1 -> v2.7.2 age confidence patch
netlify-cli 23.12.1 -> 23.12.3 age confidence devDependencies patch
prettier (source) 3.7.1 -> 3.7.4 age confidence devDependencies patch

Release Notes

go-git/go-billy (github.com/go-git/go-billy/v5)

v5.7.0

Compare Source

What's Changed

Full Changelog: go-git/go-billy@v5.6.2...v5.7.0

puzpuzpuz/xsync (github.com/puzpuzpuz/xsync/v4)

v4.2.0

Compare Source

  • Cooperative parallel rehashing in Map #​178
  • Use runtime.cheaprand instead of fastrand #​177

Introduces cooperative rehashing for xsync.Map this means that goroutines that execute write operations, such as Compute or Store, may participate in table rehashing when the hash table grows or shrinks. From now on, table rehashing never spawns additional goroutines.

This behavior is always enabled, so the WithSerialResize function is now marked as deprecated and acts as a no-op.

golangci/golangci-lint (golangci/golangci-lint)

v2.7.2

Compare Source

Released on 2025-12-07

  1. Linter bug fixes
netlify/cli (netlify-cli)

v23.12.3

Compare Source

Bug Fixes

v23.12.2

Compare Source

Bug Fixes
  • deps: upgrade deps to resolve 2 high-sev vulnerabilities (#​7804) (1c41700)
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
};

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added area: dependencies Changes related to dependency files. lang: javascript Pull requests that update Javascript code. labels Dec 1, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 36e6f18 to 42836f6 Compare December 6, 2025 13:53
@renovate renovate bot added the lang: go Pull requests that update Go code. label Dec 6, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 42836f6 to 7eee4d2 Compare December 7, 2025 11:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7eee4d2 to 5e892df Compare December 7, 2025 18:03
@vmaerten vmaerten merged commit 8cd51af into main Dec 7, 2025
13 checks passed
@vmaerten vmaerten deleted the renovate/all-minor-patch branch December 7, 2025 20:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area: dependencies Changes related to dependency files. lang: go Pull requests that update Go code. lang: javascript Pull requests that update Javascript code.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants