Skip to content

Comments

fix(deps): update all non-major dependencies#593

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch
Feb 15, 2026
Merged

fix(deps): update all non-major dependencies#593
renovate[bot] merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 15, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@storybook/addon-docs (source) 10.2.410.2.8 age confidence devDependencies patch
@storybook/addon-links (source) 10.2.410.2.8 age confidence devDependencies patch
@storybook/react (source) 10.2.410.2.8 age confidence devDependencies patch
@types/node (source) 25.2.025.2.2 age confidence devDependencies patch 25.2.3
@types/react (source) 19.2.1019.2.13 age confidence devDependencies patch 19.2.14
build-ts 17.0.1717.0.18 age confidence devDependencies patch
dotenv 17.2.317.2.4 age confidence dependencies patch 17.3.1 (+1)
esbuild 0.27.20.27.3 age confidence resolutions patch
eslint-plugin-storybook (source) 10.2.410.2.8 age confidence devDependencies patch
eslint-plugin-unused-imports 4.3.04.4.1 age confidence devDependencies minor
node (source) 24.13.024.13.1 age confidence patch
type-fest 5.4.35.4.4 age confidence devDependencies patch
typescript-eslint (source) 8.54.08.55.0 age confidence devDependencies minor

Release Notes

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

v10.2.8

Compare Source

v10.2.7

Compare Source

v10.2.6

Compare Source

v10.2.5

Compare Source

WillBooster/build-ts (build-ts)

v17.0.18

Compare Source

Bug Fixes
motdotla/dotenv (dotenv)

v17.2.4

Compare Source

Changed
  • Make DotenvPopulateInput accept NodeJS.ProcessEnv type (#​915)
  • Give back to dotenv by checking out my newest project vestauth. It is auth for agents. Thank you for using my software.
evanw/esbuild (esbuild)

v0.27.3

Compare Source

  • Preserve URL fragments in data URLs (#​4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }
  • Parse and print CSS @scope rules (#​4322)

    This release includes dedicated support for parsing @scope rules in CSS. These rules include optional "start" and "end" selector lists. One important consequence of this is that the local/global status of names in selector lists is now respected, which improves the correctness of esbuild's support for CSS modules. Minification of selectors inside @scope rules has also improved slightly.

    Here's an example:

    /* Original code */
    @&#8203;scope (:global(.foo)) to (:local(.bar)) {
      .bar {
        color: red;
      }
    }
    
    /* Old output (with --loader=local-css --minify) */
    @&#8203;scope (:global(.foo)) to (:local(.bar)){.o{color:red}}
    
    /* New output (with --loader=local-css --minify) */
    @&#8203;scope(.foo)to (.o){.o{color:red}}
  • Fix a minification bug with lowering of for await (#​4378, #​4385)

    This release fixes a bug where the minifier would incorrectly strip the variable in the automatically-generated catch clause of lowered for await loops. The code that generated the loop previously failed to mark the internal variable references as used.

  • Update the Go compiler from v1.25.5 to v1.25.7 (#​4383, #​4388)

    This PR was contributed by @​MikeWillCook.

sweepline/eslint-plugin-unused-imports (eslint-plugin-unused-imports)

v4.4.1

Compare Source

No significant changes

    View changes on GitHub
nodejs/node (node)

v24.13.1

Compare Source

sindresorhus/type-fest (type-fest)

v5.4.4

Compare Source

  • PackageJson: Use LiteralUnion for engines field (#​1354) fc9e2bb
  • IsUnion: Fix behavior when the entire union extends all individual members (#​1353) b0321a5
  • Paths: Fix leavesOnly behavior with never leaves (#​1350) 2c34128
  • Paths: Fix behavior with WeakMaps / WeakSets (#​1348) ac3b50e
  • Paths: Fix behavior with tuples containing optional elements with a rest element (#​1346) 7c82a21

typescript-eslint/typescript-eslint (typescript-eslint)

v8.55.0

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.


Configuration

📅 Schedule: Branch creation - "after 5am on Saturday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) February 15, 2026 12:04
@renovate renovate bot merged commit b8c6a31 into main Feb 15, 2026
9 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch February 15, 2026 12:07
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.

0 participants