Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 26, 2026

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 24.10.924.10.10 age confidence
github.com/alecthomas/chroma/v2 v2.23.0v2.23.1 age confidence
github.com/puzpuzpuz/xsync/v4 v4.3.0v4.4.0 age confidence
github.com/zeebo/xxh3 v1.0.2v1.1.0 age confidence
go.yaml.in/yaml/v4 v4.0.0-rc.3v4.0.0-rc.4 age confidence
netlify-cli 23.13.423.14.0 age confidence
pnpm (source) 10.28.1+sha512.7d7dbbca9e99447b7c3bf7a73286afaaf6be99251eb9498baefa7d406892f67b879adb3a1d7e687fc4ccc1a388c7175fbaae567a26ab44d1067b54fcb0d6a31610.28.2 age confidence
prettier (source) 3.8.03.8.1 age confidence
vitepress-plugin-llms 1.10.01.11.0 age confidence

Release Notes

alecthomas/chroma (github.com/alecthomas/chroma/v2)

v2.23.1

Compare Source

Changelog

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

v4.4.0

Compare Source

  • Micro-optimize Map for integer keys #​185
  • Add Map.RangeRelaxed method for faster map iteration #​187
  • Add Map.DeleteMatching method for batch entry deletion #​186

Read-heavy operations on Map with integer keys are now 24-29% faster due to a more efficient hash function, as well as a number of micro-optimizations.

RangeRelaxed is a much faster (~11x), lock-free alternative to Range. The downside is that the same key may be visited by RangeRelaxed more than once if it is concurrently deleted and re-inserted during the iteration. RangeRelaxed should be preferred over Range in all cases when weaker consistency is acceptable.

m := xsync.NewMap[string, int]()
m.Store("alice", 10)
m.Store("bob", 20)
m.Store("carol", 30)
m.Store("dave", 40)

// Iterate map entries and calculate sum of all values.
sum := 0
m.RangeRelaxed(func(key string, value int) bool {
	sum += value
	return true // continue iteration
})

DeleteMatching deletes all entries for which the delete return value of the input function is true. If the cancel return value is true, the iteration stops immediately. The function returns the number of deleted entries. The call locks a hash table bucket for the duration of evaluating the function for all entries in the bucket and performing deletions. It performs up to 20% faster than Range + Delete, yet if the percentage of the entries to-be-deleted is low, RangeRelaxed + Delete combination should be more efficient.

// Delete entries with value greater than 25.
deleted := m.DeleteMatching(func(key string, value int) (delete, cancel bool) {
	return value > 25, false
})
zeebo/xxh3 (github.com/zeebo/xxh3)

v1.1.0

Compare Source

yaml/go-yaml (go.yaml.in/yaml/v4)

v4.0.0-rc.4

Compare Source

netlify/cli (netlify-cli)

v23.14.0

Compare Source

Features
Bug Fixes

v23.13.5

Compare Source

Bug Fixes
pnpm/pnpm (pnpm)

v10.28.2: pnpm 10.28.2

Compare Source

Patch Changes

  • Security fix: prevent path traversal in directories.bin field.

  • When pnpm installs a file: or git: dependency, it now validates that symlinks point within the package directory. Symlinks to paths outside the package root are skipped to prevent local data from being leaked into node_modules.

    This fixes a security issue where a malicious package could create symlinks to sensitive files (e.g., /etc/passwd, ~/.ssh/id_rsa) and have their contents copied when the package is installed.

    Note: This only affects file: and git: dependencies. Registry packages (npm) have symlinks stripped during publish and are not affected.

  • Fixed optional dependencies to request full metadata from the registry to get the libc field, which is required for proper platform compatibility checks #​9950.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite
prettier/prettier (prettier)

v3.8.1

Compare Source

okineadev/vitepress-plugin-llms (vitepress-plugin-llms)

v1.11.0

Compare Source

    🩹 Fixes
   💖 Contributors
     View changes on GitHub

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: go Pull requests that update Go code. lang: javascript Pull requests that update Javascript code. labels Jan 26, 2026
@renovate
Copy link
Contributor Author

renovate bot commented Jan 26, 2026

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
github.com/klauspost/cpuid/v2 v2.2.7 -> v2.2.10

@renovate renovate bot added area: dependencies Changes related to dependency files. lang: go Pull requests that update Go code. lang: javascript Pull requests that update Javascript code. labels Jan 26, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d26684c to a49a9fa Compare January 26, 2026 16:38
@andreynering
Copy link
Member

go.yaml.in/yaml/v4 has breaking changes. We need to figure it out how to adjust or if this is a bug on the package.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from c7710a5 to 46619bb Compare February 3, 2026 09:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 46619bb to 0c98bf6 Compare February 3, 2026 21:02
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.

1 participant