Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 9, 2025

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) 2.2.5 -> 2.2.7 age confidence
@hono/node-server 1.15.0 -> 1.19.5 age confidence
@hono/swagger-ui (source) ^0.2.1 -> ^0.5.0 age confidence
@hono/zod-openapi (source) 0.19.9 -> 0.19.10 age confidence
tsx (source) 4.20.3 -> 4.20.6 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.2.7

Compare Source

Patch Changes

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

honojs/node-server (@​hono/node-server)

v1.19.5

Compare Source

What's Changed

  • fix: cancel a readable stream if a writable stream is closed before a readable stream is closed. by @​usualoma in #​280

Full Changelog: honojs/node-server@v1.19.4...v1.19.5

v1.19.4

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.19.3...v1.19.4

v1.19.3

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.19.2...v1.19.3

v1.19.2

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.19.1...v1.19.2

v1.19.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.19.0...v1.19.1

v1.19.0

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.18.2...v1.19.0

v1.18.2

Compare Source

What's Changed

  • fix: Skip content-length assignment when transfer-encoding is chunked. by @​usualoma in #​271

Full Changelog: honojs/node-server@v1.18.1...v1.18.2

v1.18.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.18.0...v1.18.1

v1.18.0

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.17.1...v1.18.0

v1.17.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.17.0...v1.17.1

v1.17.0

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.16.0...v1.17.0

v1.16.0

Compare Source

What's Changed

  • feat: Clean up the incoming object if the request is not completely finished. by @​usualoma in #​252

Full Changelog: honojs/node-server@v1.15.0...v1.16.0

honojs/middleware (@​hono/swagger-ui)

v0.5.2

Compare Source

Patch Changes

v0.5.1

Compare Source

Patch Changes

v0.5.0

Compare Source

Minor Changes

v0.4.1

Compare Source

Patch Changes

v0.4.0

Compare Source

Minor Changes

v0.3.0

Compare Source

Minor Changes
honojs/middleware (@​hono/zod-openapi)

v0.19.10

Compare Source

Patch Changes
privatenumber/tsx (tsx)

v4.20.6

Compare Source

Bug Fixes
  • properly hide relaySignal from process.listeners() (#​741) (710a424)

This release is also available on:

v4.20.5

Compare Source

Bug Fixes
  • handle ambiguous packages (796053a)

This release is also available on:

v4.20.4

Compare Source

Bug Fixes

This release is also available on:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0da0a08 to ac903ec Compare July 13, 2025 13:57
@renovate renovate bot changed the title fix(deps): update dependency @hono/swagger-ui to ^0.5.0 fix(deps): update all non-major dependencies Jul 13, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 5e9ca35 to 42231c1 Compare July 20, 2025 08:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from c00a856 to 19e57cd Compare July 29, 2025 08:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 8e2b438 to 8e1d33f Compare August 2, 2025 02:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6a74fb5 to 906e81c Compare August 13, 2025 16:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from da44a85 to f69f47e Compare August 22, 2025 04:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 020122b to f794de0 Compare August 26, 2025 18:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2e891e3 to 44d3d97 Compare September 4, 2025 03:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from cb527f4 to 612246c Compare September 16, 2025 15:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from ae5f6ef to f4436ba Compare September 26, 2025 01:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 87aa286 to 44b7f5c Compare September 30, 2025 23:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from e09a37b to f0e0a6d Compare October 13, 2025 13:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f0e0a6d to 2e69a02 Compare October 22, 2025 13:53
@renovate renovate bot requested a review from AlexProgrammerDE as a code owner October 22, 2025 13:53
@AlexProgrammerDE AlexProgrammerDE merged commit 7db66e9 into main Oct 22, 2025
2 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch October 22, 2025 20:41
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