Skip to content

Update dependencies#172

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dependencies
Open

Update dependencies#172
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 4, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update
@docusaurus/core (source) 3.10.03.10.1 age confidence devDependencies patch
@docusaurus/module-type-aliases (source) 3.10.03.10.1 age confidence devDependencies patch
@docusaurus/preset-classic (source) 3.10.03.10.1 age confidence devDependencies patch
@docusaurus/tsconfig (source) 3.10.03.10.1 age confidence devDependencies patch
@docusaurus/types (source) 3.10.03.10.1 age confidence devDependencies patch
@types/bun (source) 1.3.131.3.14 age confidence devDependencies patch
bun (source) 1.3.131.3.14 age confidence patch
eslint (source) 10.2.110.4.0 age confidence devDependencies minor
gradle (source) 9.4.19.5.1 age confidence minor
react (source) 19.2.519.2.6 age confidence devDependencies patch
react-dom (source) 19.2.519.2.6 age confidence devDependencies patch
tsdown (source) 0.21.100.22.0 age confidence devDependencies minor
typescript-eslint (source) 8.59.08.59.4 age confidence devDependencies patch
valibot (source) 1.3.11.4.0 age confidence dependencies minor

Release Notes

facebook/docusaurus (@​docusaurus/core)

v3.10.1

Compare Source

🐛 Bug Fix
  • docusaurus-bundler
🔧 Maintenance
Committers: 1
oven-sh/bun (bun)

v1.3.14: Bun v1.3.14

Compare Source

To install Bun v1.3.14

curl -fsSL https://bun.sh/install | bash

# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.3.14:

bun upgrade
Read Bun v1.3.14's release notes on Bun's blog
Thanks to 11 contributors!
eslint/eslint (eslint)

v10.4.0

Compare Source

v10.3.0

Compare Source

gradle/gradle (gradle)

v9.5.1

Compare Source

v9.5.0

Compare Source

facebook/react (react)

v19.2.6: 19.2.6 (May 6th, 2026)

Compare Source

React Server Components

rolldown/tsdown (tsdown)

v0.22.0

Compare Source

   🚨 Breaking Changes
  • Drop Node.js < 22.18.0 support, make unrun optional, add tsx config loader  -  by @​sxzz (a1042)
  • dts: Auto-enable dts when tsconfig declaration is true  -  by @​sxzz in #​872 (085f0)
  • publint: Use pkg from publint results, require publint v0.3.8+  -  by @​sxzz (413bb)
   🚀 Features
   🐞 Bug Fixes

🔄 Migration Guide

Node.js version

Upgrade to Node.js 22.18.0 or later. Bun and Deno remain supported (experimental).

unrun is no longer bundled

If your environment relies on the unrun config loader (i.e. you're on a Node version without native TypeScript support and use the default auto loader), install it manually:

npm i -D unrun

# or, alternatively, the new tsx loader:
npm i -D tsx

If you use Node.js 22.18.0+ with native TypeScript support, no change is needed — the auto loader will pick native.

dts auto-enabled from tsconfig

If your tsconfig.json has compilerOptions.declaration: true but you do not want tsdown to emit .d.ts files, opt out explicitly:

// tsdown.config.ts
export default defineConfig({
  dts: false,
})
exports.bin auto-detection

Any entry chunk containing a shebang (e.g. #!/usr/bin/env node) now causes tsdown to write a bin field in package.json automatically. The semantics differ slightly from explicit bin: true:

Value Single shebang Multiple shebangs No shebangs
(unset) Auto-set bin Warn, skip Silent
true Auto-set bin Throw Warn
false No bin No bin No bin

To opt out entirely:

export default defineConfig({
  exports: { bin: false },
})
Links
typescript-eslint/typescript-eslint (typescript-eslint)

v8.59.4

Compare Source

🩹 Fixes
  • typescript-eslint: export Compatible* types from typescript-eslint to resolve pnpm TS error (#​12340)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.3

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.2

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.59.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

open-circle/valibot (valibot)

v1.4.0

Compare Source

Many thanks to @​ksaurav24, @​heiwen, @​compulim, @​ysknsid25, @​alaycock-stripe, @​IlyaSemenov, @​wszgrcy, @​LMGO, @​yslpn, @​EltonLobo07 and @​Eronmmer for contributing to this release.

Read the release notes on our website for a quick overview of the most exciting new features in this release.

  • Add isoDateTimeSecond validation action to validate ISO date times with seconds (pull request #​1418)
  • Add toCamelCase, toKebabCase, toPascalCase and toSnakeCase transformation actions to convert strings between common naming conventions (pull request #​1457)
  • Change internal ReadonlyOutputKeys and OutputWithReadonly types of object schemas and WithReadonly type of record schemas to improve TypeScript type performance (pull request #​1442)
  • Change hot paths to reduce object allocations and improve runtime performance (pull request #​1437)
  • Change build target to ES2020 so distributed output stays compatible with environments that lack support for newer syntax (pull request #​1455)
  • Change internal _LruCache to use a TypeScript private method instead of a #private class field to avoid runtime helpers in the transpiled output (pull request #​1455)
  • Change internal _isValidObjectKey to use Object.prototype.hasOwnProperty.call instead of Object.hasOwn so the distributed output stays compatible with runtimes that lack the ES2022 Object.hasOwn builtin (pull request #​1421)
  • Change flatten method to accept readonly issue arrays (pull request #​1269)
  • Fix potential RangeError caused by spreading large issue arrays (pull request #​1437)
  • Fix creditCard validation action to reject Mastercard numbers with invalid lengths (pull request #​1462)
  • Fix intersect schema to no longer mutate input values, allowing frozen objects and arrays to be merged (pull request #​1463)

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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

@renovate renovate Bot requested a review from a team as a code owner May 4, 2026 01:49
@renovate renovate Bot force-pushed the renovate/dependencies branch 4 times, most recently from b087c4c to 30ccae6 Compare May 7, 2026 14:05
@renovate renovate Bot force-pushed the renovate/dependencies branch 7 times, most recently from 3ef004f to 918df64 Compare May 18, 2026 11:55
@renovate renovate Bot force-pushed the renovate/dependencies branch from 918df64 to abebf29 Compare May 18, 2026 18:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants