Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 16, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) 1.52.0 -> 1.53.0 age adoption passing confidence
@rspress/plugin-algolia (source) 2.0.0-beta.11 -> 2.0.0-beta.14 age adoption passing confidence
@rspress/plugin-llms (source) 2.0.0-beta.11 -> 2.0.0-beta.14 age adoption passing confidence
@rspress/plugin-rss (source) 2.0.0-beta.11 -> 2.0.0-beta.14 age adoption passing confidence
@storybook/addon-docs (source) ^9.0.6 -> ^9.0.10 age adoption passing confidence
@storybook/addon-links (source) ^9.0.6 -> ^9.0.10 age adoption passing confidence
@storybook/addon-onboarding (source) ^9.0.6 -> ^9.0.10 age adoption passing confidence
@storybook/react (source) ^9.0.6 -> ^9.0.10 age adoption passing confidence
@storybook/vue3 (source) ^9.0.6 -> ^9.0.10 age adoption passing confidence
@types/node (source) ^22.15.30 -> ^22.15.31 age adoption passing confidence
@types/react (source) ^19.1.6 -> ^19.1.8 age adoption passing confidence
core-js-pure (source) ^3.42.0 -> ^3.43.0 age adoption passing confidence
nx (source) ^21.1.3 -> ^21.2.0 age adoption passing confidence
path-serializer 0.4.1 -> 0.5.0 age adoption passing confidence
preact (source) ^10.26.8 -> ^10.26.9 age adoption passing confidence
rspress (source) 2.0.0-beta.11 -> 2.0.0-beta.14 age adoption passing confidence
storybook (source) ^9.0.6 -> ^9.0.10 age adoption passing confidence
tsx (source) ^4.19.4 -> ^4.20.3 age adoption passing confidence
vitest (source) ^3.2.2 -> ^3.2.3 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.53.0

Compare Source

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter: New Trace Viewer Steps

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { title: 'Custom test run #​1028' }]]
    });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137
web-infra-dev/rspress (@​rspress/plugin-algolia)

v2.0.0-beta.14

Compare Source

Breaking Changes 🚨
Remove @rspress/plugin-shiki package and create rspress/shiki-transformers🔥

related PR: https://github.com/web-infra-dev/rspress/pull/2270

We have already enabled shiki by default, so this package is no longer maintained.

If you want to use some built-in transformers of Rspress, you can do this below:

import { transformerCompatibleMetaHighlight } from "rspress/shiki-transformers";

It also supports using it in React components,

For example:

import { CodeBlockRuntime } from '@​theme';
import { transformerNotationHighlight } from '@​shikijs/transformers';
import { transformerLineNumber } from "rspress/shiki-transformers";

<CodeBlockRuntime
  lang="ts"
  title="highlight.ts"
  code={`console.log('Highlighted'); // [!code highlight]
// [!code highlight:1]
console.log('Highlighted');
console.log('Not highlighted');`}
  shikiOptions={{
    transformers: [transformerNotationHighlight(), transformerLineNumber()],
  }}
/>
What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes
New Contributors

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.13...v2.0.0-beta.14

v2.0.0-beta.13

Compare Source

What's Changed
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.12...v2.0.0-beta.13

v2.0.0-beta.12

Compare Source

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

Full Changelog: web-infra-dev/rspress@v2.0.0-beta.11...v2.0.0-beta.12

storybookjs/storybook (@​storybook/addon-docs)

v9.0.10

Compare Source

v9.0.9

Compare Source

v9.0.8

Compare Source

[!NOTE]
Version 9.0.7 was skipped because of a bad release of eslint-plugin-storybook.

storybookjs/storybook (@​storybook/addon-onboarding)

v9.0.10

Compare Source

9.0.10

v9.0.9

Compare Source

9.0.9

v9.0.8

Compare Source

9.0.8

[!NOTE]
Version 9.0.7 was skipped because of a bad release of eslint-plugin-storybook.

zloirock/core-js (core-js-pure)

v3.43.0

Compare Source

  • Changes v3.42.0...v3.43.0 (139 commits)
  • Explicit Resource Management proposals:
    • Built-ins:
      • Symbol.dispose
      • Symbol.asyncDispose
      • SuppressedError
      • DisposableStack
        • DisposableStack.prototype.dispose
        • DisposableStack.prototype.use
        • DisposableStack.prototype.adopt
        • DisposableStack.prototype.defer
        • DisposableStack.prototype.move
        • DisposableStack.prototype[@&#8203;@&#8203;dispose]
      • AsyncDisposableStack
        • AsyncDisposableStack.prototype.disposeAsync
        • AsyncDisposableStack.prototype.use
        • AsyncDisposableStack.prototype.adopt
        • AsyncDisposableStack.prototype.defer
        • AsyncDisposableStack.prototype.move
        • AsyncDisposableStack.prototype[@&#8203;@&#8203;asyncDispose]
      • Iterator.prototype[@&#8203;@&#8203;dispose]
      • AsyncIterator.prototype[@&#8203;@&#8203;asyncDispose]
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Array.fromAsync proposal:
    • Built-ins:
      • Array.fromAsync
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Error.isError proposal:
    • Built-ins:
      • Error.isError
    • Moved to stable ES, May 2025 TC39 meeting
    • Added es. namespace module, /es/ and /stable/ namespaces entries
  • Added Joint iteration stage 2.7 proposal:
    • Added built-ins:
      • Iterator.zip
      • Iterator.zipKeyed
  • Added Iterator chunking stage 2 proposal:
    • Added built-ins:
      • Iterator.prototype.chunks
      • Iterator.prototype.windows
  • Number.prototype.clamp proposal:
  • Always check regular expression flags by flags getter PR. Native methods are not fixed, only own implementation updated for:
    • RegExp.prototype[@&#8203;@&#8203;match]
    • RegExp.prototype[@&#8203;@&#8203;replace]
  • Improved handling of RegExp flags in polyfills of some methods in engines without proper support of RegExp.prototype.flags and without polyfill of this getter
  • Added feature detection for a WebKit bug that occurs when this is updated while Set.prototype.difference is being executed
  • Added feature detection for a WebKit bug that occurs when iterator record of a set-like object isn't called before cloning this in the following methods:
    • Set.prototype.symmetricDifference
    • Set.prototype.union
  • Added feature detection for a bug in V8 ~ Chromium < 126. Following methods should throw an error on invalid iterator:
    • Iterator.prototype.drop
    • Iterator.prototype.filter
    • Iterator.prototype.flatMap
    • Iterator.prototype.map
  • Added feature detection for a WebKit bug: incorrect exception thrown by Iterator.from when underlying iterator's return method is null
  • Added feature detection for a FF bug: incorrect exception thrown by Array.prototype.with when index coercion fails
  • Added feature detection for a WebKit bug: TypedArray.prototype.with should truncate negative fractional index to zero, but instead throws an error
  • Worked around a bug of many different tools (example) with incorrect transforming and breaking JS syntax on getting a method from a number literal
  • Fixed deoptimization of the Promise polyfill in the pure version
  • Added some missed dependencies to /iterator/flat-map entries
  • Some other minor fixes and improvements
  • Compat data improvements:
    • Added Deno 2.3 and Deno 2.3.2 compat data mapping
    • Updated Electron 37 compat data mapping
    • Added Opera Android 90 compat data mapping
    • Error.isError marked not supported in Node because of a bug
    • Set.prototype.difference marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Set.prototype.{ symmetricDifference, union } marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterator.from marked as not supported in Safari and supported only from Bun 1.2.5 because of a bug
    • Iterators closing on early errors in Iterator helpers marked as implemented from FF141
    • Array.prototype.with marked as supported only from FF140 because it throws an incorrect exception when index coercion fails
    • TypedArray.prototype.with marked as unsupported in Bun and Safari because it should truncate negative fractional index to zero, but instead throws an error
    • DisposableStack and AsyncDisposableStack marked as shipped in FF141 (SuppressedError has a bug)
    • AsyncDisposableStack bugs marked as fixed in Deno 2.3.2
    • SuppressedError bugs (extra arguments support and arity) marked as fixed in Bun 1.2.15
nrwl/nx (nx)

v21.2.0

Compare Source

21.2.0 (2025-06-12)
🚀 Features
  • angular: add support for rspack module federation (#​31231)
  • angular: support angular cli v20.0.0-rc.3 (#​30715)
  • angular: update nx init legacy integrated migration for angular to handle angular v17 (#​31352)
  • ⚠️ angular: support angular v20 (#​31369)
  • angular: update angular eslint packages to v20 (#​31489)
  • bundling: use tsconfig.lib.json for rollup.config.ts (#​30453)
  • gradle: exclude dependsOn tasks (#​30913)
  • misc: enhance IDE integration with Nx Console auto-installation and improved logging (#​31462)
  • nest: Update nest version to 11 (#​31393, #​30188)
  • nx-dev: AI landing page (#​31310)
  • nx-dev: update hero tagline (41387af458)
  • nx-dev: add rss and atom feeds (ee7dbf9c3a)
  • repo: enhance Claude Code workflow and settings (#​31405, #​31380)
  • repo: add golden list of projects to our Nightly CI (#​31414)
  • repo: add ndcunningham to Claude workflow authorized users (#​31479)
  • repo: migrate to pnpm 10 (#​31427)
  • ⚠️ storybook: support storybook 9 (#​31172)
🩹 Fixes
  • add .ts extension to nx-release script reference in project.json (#​31483)
  • angular: update tsconfig files generation to better support angular v20 (#​31357)
  • angular: keep extra target metadata when needed in convert-to-rspack generator (#​31309)
  • angular: generate correct output for buildable libraries on windows (#​31437, #​31436)
  • angular: optimize ng-packagr-lite watch mode file writing (#​31434, #​31033)
  • bundling: do not normalize tsconfig path for Windows with rollup (#​30567)
  • bundling: correctly handle .cjs.js .mjs.js in rollup for type definitions (#​29366, #​29308)
  • core: handle killing child processes of continuous tasks on Windows (#​31296, #​31235)
  • core: do not hide task list with run-many if there is only 1 task (#​31324)
  • core: generate workspace file readme typo (#​31341, #​31335)
  • core: fix broken nx-cloud url shortening logic (#​31283)
  • core: infer codex environment and use default tasks runner (#​31359)
  • core: use next available port when the port for nx graph is in use (#​31365, #​30915)
  • core: handle run-commands targets with no commands (#​31364, #​31345)
  • core: implement missing --print flag for nx graph command (#​31406, #​30255)
  • core: update getTouchedProjectsFromLockFile to handle deleted/moved projects correctly (#​31361)
  • core: ensure nx init implementation for angular correctly resolves @angular/core (#​31430, #​31291)
  • core: print installation logs when installing latest version during nx migrate and using --verbose (#​31432)
  • core: use ts-node option from tsconfig files when creating transpiler (#​31469)
  • core: Update macos pipelines configuration (#​31476)
  • core: scope typescript resolution cache correctly when processing the graph (#​31455, #​31223)
  • core: remove tabs from local workspace plugins section in nx report (#​31490)
  • core: handle external node without default version when generating a pnpm pruned lockfile (#​31503, #​28627)
  • core: add conditional compilation for WASM build compatibility (#​31491)
  • core: default to 'run' target when only project is specified (#​31452)
  • core: remove log_error function and standardize logging (#​31515)
  • core: scope native logging to nx module by default (#​31530)
  • core: simplify Nx Console installation prompt (#​31532)
  • core: update Node.js version to 22.16.0 since the rust-docker-lts version is not updated (#​31547)
  • gradle: change run and bootRun to cacheable false (#​31287)
  • gradle: add migration script to check gradle plugin version (#​31304)
  • gradle: fix gradle test running gaps (#​31313)
  • js: write typescript plugin cache files atomically (#​31390, #​30239, #​31187)
  • js: enable end-to-end tests for Vue application in dev mode (#​31415)
  • js: enhance TypeScript transformer loading to support function-based plugins (#​31443, #​31411)
  • linter: speed up inferred plugin node processing (#​31281)
  • linter: handle ng-package.json file with no lib.entryFile in @nx/enforce-module-boundaries rule (#​31360)
  • linter: fix line endings handling in '@​nx/eslint:convert-to-flat-config' generator (#​31043)
  • linter: infer lint tasks with inputs using {workspaceRoot} to support nested projects (#​31488, #​31264)
  • linter: update allowed ESLint config file extensions (#​30127)
  • module-federation: use runtimeChunk false when not in dev mode (#​31256, #​30637, #​31114)
  • module-federation: enhance remote entry handling with query parameters in paths (#​30615, #​30602)
  • nextjs: add extension alias support for handling ESM libs (#​31323, #​30714)
  • node: add project name sanitization for Docker commands. (#​31461, #​31421)
  • node: esbuild breaks and does not cleanup (#​30469)
  • nx-dev: only track analytics in prod envs (#​31367)
  • react: add missing dependency when generating a react lib that has testing (#​31308)
  • react: routing option to library generator (#​31328, #​30721)
  • react: allow for buildTargetWebpack to have an executor of @​nx/webpack:webpack or @​nx/rspack:rspack (#​30253, #​30235)
  • release: sort groups topologically bottom-up and fix typo to allow multi-level group dependencies (#​31374)
  • release: changelog filtering logic for the project commits (#​31449)
  • remix: update setup-tailwind generator to correct import statements (#​30599, #​30343)
  • repo: MacOS failures in our E2E Tests (#​31528)
  • rspack: fix issue with optimization options in rspack config (#​31337, #​31268, #​30292)
  • rspack: ensure nest applications generated correctly #​31204 (#​31424, #​31204)
  • rspack: Add missing return for rspack composoable plugin (#​31372)
  • rspack: must run type check with @​nx/rspack:rspack when skipTypeChecking is false (#​31027, #​31026)
  • storybook: improve speed of storybook plugin (#​31277, #​22953, #​31276)
  • vite: bump @​analogjs/vite-plugin-angular to 1.16.x (#​31317)
  • vite: add ajv dependency for non-pnpm package managers (#​31413)
  • vite: resolve project-specific tsconfig before workspace fallback (#​31423, #​28945)
  • vite: NxReporter compatible with Vitest ≥0.29 (#​31425)
  • webpack: add support for retrieving all transitive non-buildable dependencies (#​31343)
  • webpack: handle package.json exports field for non-buildable libs (#​31444)
⚠️ Breaking Changes
  • storybook: Remove deprecated generators:
  • angular: Support for Angular v17 was dropped.
❤️ Thank You
rspack-contrib/path-serializer (path-serializer)

v0.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: rspack-contrib/path-serializer@v0.4.0...v0.5.0

preactjs/preact (preact)

v10.26.9

Compare Source

Fixes


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.

@Timeless0911 Timeless0911 enabled auto-merge (squash) June 16, 2025 03:19
@netlify
Copy link

netlify bot commented Jun 16, 2025

Deploy Preview for rslib ready!

Name Link
🔨 Latest commit f1adfa4
🔍 Latest deploy log https://app.netlify.com/projects/rslib/deploys/684f8c6d1fa29e00081d8fe9
😎 Deploy Preview https://deploy-preview-1061--rslib.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@Timeless0911 Timeless0911 merged commit 40564e0 into main Jun 16, 2025
15 checks passed
@Timeless0911 Timeless0911 deleted the renovate/all-non-major branch June 16, 2025 03:27
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.

2 participants