Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 21, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@storybook/addon-docs (source) 10.0.8 -> 10.1.9 age confidence devDependencies minor 10.1.10
@storybook/addon-links (source) 10.0.8 -> 10.1.9 age confidence devDependencies minor 10.1.10
@storybook/react (source) 10.0.8 -> 10.1.9 age confidence devDependencies minor 10.1.10
@types/bun (source) 1.3.2 -> 1.3.4 age confidence devDependencies patch 1.3.5
@types/node (source) 24.10.1 -> 24.10.4 age confidence devDependencies patch
@types/react (source) 19.2.6 -> 19.2.7 age confidence devDependencies patch
at-decorators 7.0.0 -> 7.0.2 age confidence devDependencies patch
build-ts 17.0.2 -> 17.0.9 age confidence devDependencies patch 17.0.11 (+1)
esbuild 0.27.0 -> 0.27.1 age confidence resolutions patch 0.27.2
eslint-plugin-storybook (source) 10.0.8 -> 10.1.9 age confidence devDependencies minor 10.1.10
minimal-promise-pool 6.0.0 -> 6.0.1 age confidence dependencies patch
next (source) 16.0.3 -> 16.1.0 age confidence devDependencies minor
node (source) 24.11.1 -> 24.12.0 age confidence minor
react (source) 19.2.0 -> 19.2.3 age confidence devDependencies patch
react-dom (source) 19.2.0 -> 19.2.3 age confidence devDependencies patch
sort-package-json 3.5.0 -> 3.6.0 age confidence devDependencies minor
type-fest 5.2.0 -> 5.3.1 age confidence devDependencies minor
typescript-eslint (source) 8.49.0 -> 8.50.0 age confidence devDependencies minor
vitest (source) 4.0.10 -> 4.0.15 age confidence devDependencies patch 4.0.16

Release Notes

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

v10.1.9

Compare Source

v10.1.8

Compare Source

v10.1.7

Compare Source

v10.1.6

Compare Source

v10.1.5

Compare Source

v10.1.4

Compare Source

v10.1.3

Compare Source

v10.1.2

Compare Source

  • Checklist: Fix how state changes are reported and drop some completion restrictions - #​33217, thanks @​ghengeveld!

v10.1.1

Compare Source

v10.1.0

Compare Source

Easier to setup, more accessible to use

Storybook 10.1 focuses on two key improvements: installation and accessibility:

  • ♿ UI overhaul to fix hundreds of a11y issues
  • 🧑‍💻 CLI overhaul for faster, more reliable install
  • ✅ Checklist-based onboarding guide for new users

The release also contains compatibility fixes for:

  • 🅰️ Angular 21 support
  • 🦀 RSbuild install support in CLI
  • ⚡️ Preact support for Vitest addon

Finally, it contains two highly-requested experimental features:

  • 📋 Component manifest for Storybook MCP
  • ⚛️ Improved JSX code snippets for React
List of all updates
WillBooster/at-decorators (at-decorators)

v7.0.2

Compare Source

Bug Fixes

v7.0.1

Compare Source

Reverts
  • revert "chore: willboosterify this repo" (9bf66ab)
  • revert "chore(deps): lock file maintenance (#​292)" (d60200d)
  • revert "chore(deps): update dependency build-ts to v17.0.3 (#​291)" (becc36f)
WillBooster/build-ts (build-ts)

v17.0.9

Compare Source

Bug Fixes

v17.0.8

Compare Source

Bug Fixes

v17.0.7

Compare Source

Bug Fixes

v17.0.6

Compare Source

Bug Fixes

v17.0.5

Compare Source

Bug Fixes

v17.0.4

Compare Source

Reverts
  • Revert "fix(deps): update all non-major dependencies (#​433)" (35589d3)

v17.0.3

Compare Source

Bug Fixes
evanw/esbuild (esbuild)

v0.27.1

Compare Source

  • Fix bundler bug with var nested inside if (#​4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#​4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    
    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}
    
    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}
  • Inline IIFEs containing a single expression (#​4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    
    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();
    
    // New output (with --minify)
    const foo=()=>{console.log(x())};
  • The minifier now strips empty finally clauses (#​4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

    // Original code
    function foo(callback) {
      if (DEBUG) stack.push(callback.name);
      try {
        callback();
      } finally {
        if (DEBUG) stack.pop();
      }
    }
    
    // Old output (with --minify --define:DEBUG=false)
    function foo(a){try{a()}finally{}}
    
    // New output (with --minify --define:DEBUG=false)
    function foo(a){a()}
  • Allow tree-shaking of the Symbol constructor

    With this release, calling Symbol is now considered to be side-effect free when the argument is known to be a primitive value. This means esbuild can now tree-shake module-level symbol variables:

    // Original code
    const a = Symbol('foo')
    const b = Symbol(bar)
    
    // Old output (with --tree-shaking=true)
    const a = Symbol("foo");
    const b = Symbol(bar);
    
    // New output (with --tree-shaking=true)
    const b = Symbol(bar);
WillBooster/minimal-promise-pool (minimal-promise-pool)

v6.0.1

Compare Source

Bug Fixes
vercel/next.js (next)

v16.1.0

Compare Source

v16.0.10

Compare Source

v16.0.9

Compare Source

v16.0.8

Compare Source

v16.0.7

Compare Source

v16.0.6

Compare Source

v16.0.5

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • fix(nodejs-middleware): await for body cloning to be properly finalized (#​85418)
Credits

Huge thanks to @​lucasadrianof for helping!

v16.0.4

Compare Source

nodejs/node (node)

v24.12.0: 2025-12-10, Version 24.12.0 'Krypton' (LTS), @​targos

Compare Source

Notable Changes
  • [1a00b5f68a] - (SEMVER-MINOR) http: add optimizeEmptyRequests server option (Rafael Gonzaga) #​59778
  • [ff5754077d] - (SEMVER-MINOR) lib: add options to util.deprecate (Rafael Gonzaga) #​59982
  • [8987159234] - (SEMVER-MINOR) module: mark type stripping as stable (Marco Ippolito) #​60600
  • [92c484ebf4] - (SEMVER-MINOR) node-api: add napi_create_object_with_properties (Miguel Marcondes Filho) #​59953
  • [b11bc5984e] - (SEMVER-MINOR) sqlite: allow setting defensive flag (Bart Louwers) #​60217
  • [e7da5b4b7d] - (SEMVER-MINOR) src: add watch config namespace (Marco Ippolito) #​60178
  • [a7f7d10c06] - (SEMVER-MINOR) src: add an option to make compile cache portable (Aditi) #​58797
  • [92ea669240] - (SEMVER-MINOR) src,permission: add --allow-inspector ability (Rafael Gonzaga) #​59711
  • [05d7509bd2] - (SEMVER-MINOR) v8: add cpu profile (theanarkh) #​59807
Commits

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) December 21, 2025 00:12
@renovate renovate bot merged commit 9f47e8b into main Dec 21, 2025
9 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch December 21, 2025 00:15
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