Skip to content

chore(deps): update all patch dependencies#6384

Merged
chenjiahan merged 1 commit intomainfrom
renovate/all-patch
Oct 20, 2025
Merged

chore(deps): update all patch dependencies#6384
chenjiahan merged 1 commit intomainfrom
renovate/all-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 20, 2025

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) ^2.2.5 -> ^2.2.6 age confidence
@playwright/test (source) 1.56.0 -> 1.56.1 age confidence
@rsdoctor/rspack-plugin (source) 1.3.2 -> 1.3.3 age confidence
@rslib/core (source) 0.15.0 -> 0.15.1 age confidence
@rstest/core (source) ^0.5.1 -> ^0.5.2 age confidence
@types/node (source) ^22.18.10 -> ^22.18.11 age confidence
@types/react-dom (source) ^19.2.1 -> ^19.2.2 age confidence
@typescript/native-preview (source) 7.0.0-dev.20251012.1 -> 7.0.0-dev.20251019.1 age confidence
nx (source) ^21.6.4 -> ^21.6.5 age confidence
playwright (source) 1.56.0 -> 1.56.1 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.2.6

Compare Source

Patch Changes
  • #​7071 a8e7301 Thanks @​ptkagori! - Added the useQwikMethodUsage lint rule for the Qwik domain.

    This rule validates Qwik hook usage. Identifiers matching useXxx must be called only within serialisable reactive contexts (for example, inside component$, route loaders/actions, or within other Qwik hooks), preventing common Qwik antipatterns.

    Invalid:

    // Top-level hook call is invalid.
    const state = useStore({ count: 0 });
    
    function helper() {
      // Calling a hook in a non-reactive function is invalid.
      const loc = useLocation();
    }

    Valid:

    component$(() => {
      const state = useStore({ count: 0 }); // OK inside component$.
      return <div>{state.count}</div>;
    });
    
    const handler = $(() => {
      const loc = useLocation(); // OK inside a $-wrapped closure.
      console.log(loc.params);
    });
  • #​7685 52071f5 Thanks @​denbezrukov! - Fixed #​6981: The NoUnknownPseudoClass rule no longer reports local pseudo-classes when CSS Modules are used.

  • #​7640 899f7b2 Thanks @​arendjr! - Fixed #​7638: useImportExtensions no longer emits diagnostics on valid import paths that end with a query or hash.

Example
// This no longer warns if `index.css` exists:
import style from "../theme/index.css?inline";
  • #​7071 a8e7301 Thanks @​ptkagori! - Added the useQwikValidLexicalScope rule to the Qwik domain.

    This rule helps you avoid common bugs in Qwik components by checking that your variables and functions are declared in the correct place.

    Invalid:

    // Invalid: state defined outside the component's lexical scope.
    let state = useStore({ count: 0 });
    const Component = component$(() => {
      return (
        <button onClick$={() => state.count++}>Invalid: {state.count}</button>
      );
    });

    Valid:

    // Valid: state initialised within the component's lexical scope and captured by the event.
    const Component = component$(() => {
      const state = useStore({ count: 0 });
      return <button onClick$={() => state.count++}>Valid: {state.count}</button>;
    });
  • #​7620 5beb1ee Thanks @​Netail! - Added the rule useDeprecatedDate, which makes a deprecation date required for the graphql @deprecated directive.

    Invalid
    query {
      member @&#8203;deprecated(reason: "Use `members` instead") {
        id
      }
    }
    Valid
    query {
      member
        @&#8203;deprecated(reason: "Use `members` instead", deletionDate: "2099-12-25") {
        id
      }
    }
  • #​7709 d6da4d5 Thanks @​siketyan! - Fixed #​7704: The useExhaustiveDependencies rule now correctly adds an object dependency when its method is called within the closure.

    For example:

    function Component(props) {
      useEffect(() => {
        props.foo();
      }, []);
    }

    will now be fixed to:

    function Component(props) {
      useEffect(() => {
        props.foo();
      }, [props]);
    }
  • #​7624 309ae41 Thanks @​lucasweng! - Fixed #​7595: noUselessEscapeInString no longer reports $\{ escape in template literals.

  • #​7665 29e4229 Thanks @​ryan-m-walker! - Fixed #​7619: Added support for parsing the CSS :state() pseudo-class.

    custom-selector:state(checked) {
    }
  • #​7608 41df59b Thanks @​ritoban23! - Fixed #​7604: the useMaxParams rule now highlights parameter lists instead of entire function bodies. This provides more precise error highlighting. Previously, the entire function was highlighted; now only the parameter list is highlighted, such as (a, b, c, d, e, f, g, h).

  • #​7643 459a6ac Thanks @​daivinhtran! - Fixed #​7580: Include plugin in summary report

microsoft/playwright (@​playwright/test)

v1.56.1

Compare Source

Highlights

#​37871 chore: allow local-network-access permission in chromium
#​37891 fix(agents): remove workspaceFolder ref from vscode mcp
#​37759 chore: rename agents to test agents
#​37757 chore(mcp): fallback to cwd when resolving test config

Browser Versions

  • Chromium 141.0.7390.37
  • Mozilla Firefox 142.0.1
  • WebKit 26.0
web-infra-dev/rsdoctor (@​rsdoctor/rspack-plugin)

v1.3.3

Compare Source

What's Changed

Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rsdoctor@v1.3.2...v1.3.3

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

v0.15.1

Compare Source

What's Changed
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rslib@v0.15.0...v0.15.1

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

v0.5.2

Compare Source

Highlights 💡

VS Code extension

The Rstest VS Code extension can be used to discovers, displays, and runs tests in your workspace. It builds a rich Test Explorer tree from your test files and keeps it up to date as files change.

Install the extension from the marketplace rstest.

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rstest@v0.5.1...v0.5.2

microsoft/typescript-go (@​typescript/native-preview)

v7.0.0-dev.20251019.1

Compare Source

v7.0.0-dev.20251018.1

Compare Source

v7.0.0-dev.20251017.1

Compare Source

v7.0.0-dev.20251016.1

Compare Source

v7.0.0-dev.20251015.1

Compare Source

v7.0.0-dev.20251014.1

Compare Source

v7.0.0-dev.20251013.1

Compare Source

nrwl/nx (nx)

v21.6.5

Compare Source

21.6.5 (2025-10-15)

🚀 Features
  • core: expose registerProjectGraphRecomputationListener from daemon client (#​33005)
🩹 Fixes
  • core: display bottom corner indicator of tui in progress section correctly (#​32985)
  • core: temporarily disable tui for run-one (#​33048)
  • core: ensure --help works properly with infix notation (#​32662)
  • nx-dev: update nextjs internal-link-checker to include astro urls (#​33045)
  • nx-dev: respect NX_DEV_URL in sitemap checker (#​33058)
  • nx-dev: handle null github data (#​33061)
  • react: dynamic module federation should not initialize remoteUrlDefinitions to empty object (#​33059, #​27927, #​33055, #​27793, #​27842)
  • ⚠️ release: ensure multilines in breaking changes are rendered by changelog renderer (#​33070, #​33014)
⚠️ Breaking Changes
  • release: The --legacy-peer-deps behavior is no longer forced.
❤️ Thank You

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.

@netlify
Copy link

netlify bot commented Oct 20, 2025

Deploy Preview for rsbuild ready!

Name Link
🔨 Latest commit beb7d57
🔍 Latest deploy log https://app.netlify.com/projects/rsbuild/deploys/68f59f8cb53f4f0008aac298
😎 Deploy Preview https://deploy-preview-6384--rsbuild.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 69 (🟢 up 13 from production)
Accessibility: 97 (no change from production)
Best Practices: 100 (no change from production)
SEO: 100 (no change from production)
PWA: 60 (no change from production)
View the detailed breakdown and full score reports

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

@renovate renovate bot force-pushed the renovate/all-patch branch from 6a794ac to 310167a Compare October 20, 2025 02:32
@renovate renovate bot force-pushed the renovate/all-patch branch from 310167a to beb7d57 Compare October 20, 2025 02:33
@chenjiahan chenjiahan enabled auto-merge (squash) October 20, 2025 02:38
@chenjiahan chenjiahan merged commit 71dffbb into main Oct 20, 2025
12 checks passed
@chenjiahan chenjiahan deleted the renovate/all-patch branch October 20, 2025 02:59
@chenjiahan chenjiahan mentioned this pull request Oct 30, 2025
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