Skip to content

chore(deps): update all non-major dependencies#2661

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#2661
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 26, 2026

This PR contains the following updates:

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

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

golang/go (go)

v1.25.7

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

v4.0.0-rc.4

Compare Source

netlify/cli (netlify-cli)

v23.15.1

Compare Source

Bug Fixes

v23.15.0

Compare Source

Features
  • use site caps for AIG gating, add support to dev-exec and serve (#​7904) (f33a839)
Bug Fixes

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 6 times, most recently from 9745d72 to 0769b7f Compare February 4, 2026 16:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0769b7f to a3b9ece Compare February 5, 2026 00:44
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