Skip to content

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

Merged
chenjiahan merged 2 commits into
mainfrom
renovate/all-non-major
Jul 3, 2026
Merged

chore(deps): update all non-major dependencies#1499
chenjiahan merged 2 commits into
mainfrom
renovate/all-non-major

Conversation

@renovate

@renovate renovate Bot commented Jul 3, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@rsbuild/core (source) ~2.1.1~2.1.3 age confidence devDependencies patch
@rsbuild/core (source) ~2.1.1~2.1.3 age confidence dependencies patch
@rsbuild/plugin-babel (source) ^2.0.0^2.0.1 age confidence devDependencies patch
@rsbuild/plugin-less (source) ^2.0.0^2.0.1 age confidence devDependencies patch
@rsbuild/plugin-sass (source) ^2.0.0^2.0.1 age confidence devDependencies patch
@rsbuild/plugin-svelte (source) ^2.0.0^2.0.1 age confidence devDependencies patch
@rsbuild/plugin-svgr (source) ^2.0.4^2.0.5 age confidence devDependencies patch
@rsbuild/plugin-vue (source) ^2.0.0^2.0.1 age confidence devDependencies patch
@rsdoctor/rspack-plugin (source) ^1.5.16^1.5.17 age confidence devDependencies patch
@rslint/core ^0.6.3^0.6.4 age confidence devDependencies patch
@rspack/cli (source) ~2.1.1~2.1.2 age confidence devDependencies patch
@rspack/core (source) ~2.1.1~2.1.2 age confidence devDependencies patch
@tailwindcss/postcss (source) ^4.3.1^4.3.2 age confidence devDependencies patch
CodSpeedHQ/action v4.17.6v4.18.1 age confidence action minor
fs-extra ^11.3.5^11.3.6 age confidence devDependencies patch
knip (source) ^6.22.0^6.23.0 age confidence devDependencies minor 6.24.0
lucide-react (source) ^1.21.0^1.23.0 age confidence dependencies minor
package-manager-detector ^1.6.0^1.7.0 age confidence devDependencies minor
prettier (source) ^3.9.1^3.9.4 age confidence devDependencies patch
tailwindcss (source) ^4.3.1^4.3.2 age confidence devDependencies patch
three (source) ^0.185.0^0.185.1 age confidence dependencies patch
valibot (source) ^1.4.1^1.4.2 age confidence devDependencies patch
webpack ^5.108.1^5.108.3 age confidence devDependencies patch

Release Notes

web-infra-dev/rsbuild (@​rsbuild/core)

v2.1.3

Compare Source

Highlights
Import Attributes type: 'text'

Rsbuild now supports the import attributes syntax with { type: 'text' } for importing file contents as source text:

import rawCSS from './example.css' with { type: 'text' };

This aligns with the TC39 Import Text proposal.

What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v2.1.2...v2.1.3

v2.1.2

Compare Source

What's Changed

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v2.1.1...v2.1.2

web-infra-dev/rsbuild (@​rsbuild/plugin-babel)

v2.0.1

Compare Source

Bug fixes
Document
web-infra-dev/rsbuild (@​rsbuild/plugin-less)

v2.0.1

Compare Source

New features
Document
web-infra-dev/rsbuild (@​rsbuild/plugin-sass)

v2.0.1

Compare Source

New features
Document
web-infra-dev/rsbuild (@​rsbuild/plugin-svelte)

v2.0.1

Compare Source

New features
web-infra-dev/rsbuild (@​rsbuild/plugin-svgr)

v2.0.5

Compare Source

New features
Document
Other changes
web-infra-dev/rsbuild (@​rsbuild/plugin-vue)

v2.0.1

Compare Source

New features
web-infra-dev/rsdoctor (@​rsdoctor/rspack-plugin)

v1.5.17

Compare Source

What's Changed

Bug Fixes 🐞
Document 📖

Full Changelog: web-infra-dev/rsdoctor@v1.5.16...v1.5.17

web-infra-dev/rslint (@​rslint/core)

v0.6.4

Compare Source

Highlights

Rslint Node API for In-Memory Linting

Rslint now ships a programmatic Node.js API (@rslint/core) aligned with ESLint v10's interface. Use Rslint#lintFiles / lintText to lint from scripts, dev servers, or editor integrations — results are ESLint-shaped (LintResult[] with messages, errorCount, warningCount, output, etc.). Auto-fix is supported via fix: true plus Rslint.outputFixes. Config resolution (overrideConfig, file discovery, normalization) all stays in JS; the Go --api server receives only the final resolved config and never reads disk.

import { Rslint } from '@​rslint/core';

// Lint files by glob (auto-discovers the nearest config from cwd).
const rslint = new Rslint({ cwd: process.cwd() });
const results = await rslint.lintFiles(['src/**/*.ts']);

Fully in-memory linting is also supported through the new virtualFiles overlay — source, config, and tsconfig.json can all live in memory with zero disk access, which makes the API a natural fit for playgrounds, web workers, and editor integrations:

const rslint = new Rslint({
  cwd: '/', // virtual root: doesn't touch process.cwd() or disk
  overrideConfigFile: true, // use only overrideConfig — skip config discovery
  overrideConfig: [
    {
      files: ['**/*.ts'],
      // The tsconfig + parserOptions.project below are needed ONLY for type-aware rules (like no-for-in-array). Syntax-only rules need neither.
      languageOptions: { parserOptions: { project: ['./tsconfig.json'] } },
      plugins: ['@​typescript-eslint'],
      rules: { '@​typescript-eslint/no-for-in-array': 'error' },
    },
  ],
  virtualFiles: {
    'tsconfig.json': JSON.stringify({
      compilerOptions: { strict: true },
      files: ['./a.ts'],
    }),
  },
});
const [result] = await rslint.lintText(
  'const a = [1];\nfor (const k in a) {}\n',
  { filePath: 'a.ts' },
);

See the new Node.js API guide for details.

What's Changed

New Features 🎉
Other Changes

Full Changelog: web-infra-dev/rslint@v0.6.3...v0.6.4

web-infra-dev/rspack (@​rspack/cli)

v2.1.2

Compare Source

What's Changed
Highlights 💡
Support import.meta style module variables

Rspack now exposes more module variables through import.meta, which aligns better with the ESM specification than CommonJS-style injected globals. When authoring ESM modules, import.meta is now the recommended way to access these runtime values.

The newly supported import.meta properties are:

New import.meta API Existing runtime variable
import.meta.rspackPublicPath __webpack_public_path__
import.meta.rspackBaseUri __webpack_base_uri__
import.meta.rspackShareScopes __webpack_share_scopes__
import.meta.rspackInitSharing __webpack_init_sharing__
import.meta.rspackNonce __webpack_nonce__
import.meta.rspackUniqueId __rspack_unique_id__
import.meta.rspackVersion __rspack_version__
import.meta.rspackHash __webpack_hash__
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v2.1.1...v2.1.2

tailwindlabs/tailwindcss (@​tailwindcss/postcss)

v4.3.2

Compare Source

Fixed
  • Support bare spacing values for auto-rows-* and auto-cols-* utilities (e.g. auto-rows-12 and auto-cols-16) (#​20229)
  • Prevent @tailwindcss/cli in --watch mode from crashing on Windows when @source points to a directory that doesn't exist (#​20242)
  • Prevent @tailwindcss/vite from crashing in Deno v2.8.x when context.parentURL is not a valid URL (#​20245)
  • Ensure @tailwindcss/cli in --watch mode rebuilds when the input CSS file changes in an ignored directory (#​20246)
  • Allow @variant rules used in addBase(…) to use custom variants defined later (#​20247)
  • Prevent @tailwindcss/vite from crashing during HMR when scanned files or directories are deleted (#​20259)
  • Generate font-size instead of color declarations for text-[--spacing(…)] (#​20260)
  • Prevent @source patterns from scanning unrelated sibling files and folders (#​20263)
  • Extract class candidates adjacent to Template Toolkit delimiters like %]…[% in .tt, .tt2, and .tx files (#​20269)
  • Extract class candidates from conditional Maud syntax like p.text-black[condition] (#​20269)
  • Prevent @position-try rules from triggering unknown at-rule warnings when optimizing CSS (#​20277)
  • Support class suggestions for named opacity modifiers from --opacity theme values (#​20287)
  • Prevent type errors in @tailwindcss/postcss when used with newer PostCSS patch releases (#​20289)
CodSpeedHQ/action (CodSpeedHQ/action)

v4.18.1

Compare Source

Release Notes

🚀 Features

Install codspeed-runner 4.18.1

Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/codspeed/releases/download/v4.18.1/codspeed-runner-installer.sh | sh

Download codspeed-runner 4.18.1

File Platform Checksum
codspeed-runner-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
codspeed-runner-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
codspeed-runner-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

Full Runner Changelog: https://github.com/CodSpeedHQ/codspeed/blob/main/CHANGELOG.md

v4.18.0

Compare Source

Release Notes

🚀 Features
🐛 Bug Fixes

Install codspeed-runner 4.18.0

Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/codspeed/releases/download/v4.18.0/codspeed-runner-installer.sh | sh

Download codspeed-runner 4.18.0

File Platform Checksum
codspeed-runner-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
codspeed-runner-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
codspeed-runner-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

Full Runner Changelog: https://github.com/CodSpeedHQ/codspeed/blob/main/CHANGELOG.md

jprichardson/node-fs-extra (fs-extra)

v11.3.6

Compare Source

webpro-nl/knip (knip)

v6.23.0: Release 6.23.0

Compare Source

lucide-icons/lucide (lucide-react)

v1.23.0: Version 1.23.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.22.0...1.23.0

v1.22.0

Compare Source

antfu-collective/package-manager-detector (package-manager-detector)

v1.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
prettier/prettier (prettier)

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

mrdoob/three.js (three)

v0.185.1

Compare Source

open-circle/valibot (valibot)

v1.4.2

Compare Source

Many thanks to @​Faze-up and @​chatman-media for contributing to this release.

  • Fix word count actions to cache the Intl.Segmenter for non-primitive locales, preventing it from being recreated on every words, minWords, maxWords and notWords validation (pull request #​1521)
  • Fix flatten method to handle issue path keys that collide with Object.prototype members like toString instead of throwing a TypeError (pull request #​1522)
  • Fix intersect schema to merge object keys that collide with Object.prototype members like toString instead of failing to merge them (pull request #​1522)
webpack/webpack (webpack)

v5.108.3

Compare Source

Patch Changes

v5.108.2

Compare Source

Patch Changes

Configuration

📅 Schedule: (UTC)

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

@chenjiahan chenjiahan enabled auto-merge (squash) July 3, 2026 02:33
@cloudflare-workers-and-pages

Copy link
Copy Markdown

Deploying rstest with  Cloudflare Pages  Cloudflare Pages

Latest commit: 41ce36c
Status: ✅  Deploy successful!
Preview URL: https://c227e7cc.rstest.pages.dev
Branch Preview URL: https://renovate-all-non-major.rstest.pages.dev

View logs

@chenjiahan chenjiahan merged commit 3d51880 into main Jul 3, 2026
12 checks passed
@chenjiahan chenjiahan deleted the renovate/all-non-major branch July 3, 2026 02:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant