Skip to content

chore(deps): update dependency storybook-solidjs-vite to v10 - #27

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/storybook-solidjs-vite-10.x
Open

chore(deps): update dependency storybook-solidjs-vite to v10#27
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/storybook-solidjs-vite-10.x

Conversation

@renovate

@renovate renovate Bot commented Nov 5, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
storybook-solidjs-vite ^9.0.0^10.0.0 age confidence

Release Notes

solidjs-community/storybook (storybook-solidjs-vite)

v10.7.2

Compare Source

Patch Changes
  • 17a6c29: Detect Solid 1 vs 2 from the solid-js package Node resolves next to .storybook, so Bun isolated installs and catalog: specifiers no longer look like a missing dependency.

    Fix version detection under Bun linker = "isolated" (#​68).

  • 17a6c29: Align integration dependencies with Storybook 10.6 and Solid 2.0.0-rc.6.

    Drop storybook-solidjs-vite/experimental-playwright. Storybook 10.6 removed experimental Playwright CT (createPlaywrightTest);

  • 17a6c29: Build JS and declarations with tsdown instead of tsup + tsc emit, so published .d.ts files use NodeNext-legal relative specifiers.

    Fix public types under moduleResolution: "nodenext" (#​67).

v10.7.1

Compare Source

Patch Changes
  • 15d74bd: Rewrite the CLI example components to avoid Solid 1-only mergeProps/splitProps, so create-storybook --type=solid works on both Solid 1 and Solid 2. Fixes #​57.

v10.7.0

Compare Source

Minor Changes
  • 698a324: ### Docgen & autodocs
    • Pin Solid component-meta to @typescript/typescript6 so prop extraction no longer depends on the consumer's installed typescript version (including TypeScript 7 projects without a programmatic compiler API).
    • Exclude Solid JSX-only namespaces from extracted props and Controls: use:, prop:, attr:, bool:, on:, and oncapture: (compile-time JSX syntax, not meaningful Storybook args). Fixes #​56.
    • Fix ./renderer package export types path (dist/renderer/index.d.ts).
Build
  • Split JS and declaration emit (tsup + tsc) and rewrite dev-only solid-js-next imports in published output.
Compatibility
  • Align Storybook integration dependencies with Storybook 10.5.x.
  • Peer range already includes Vite 8; lab example updated to validate against it.

v10.6.0

Compare Source

Minor Changes
  • 8f3e296: Improved autodocs types/args generation

v10.5.2

Compare Source

Patch Changes

v10.5.1

Compare Source

Patch Changes

v10.5.0

Compare Source

Minor Changes
  • bd143ec: Unify Solid 1 and Solid 2 logic

v10.4.0

Compare Source

Minor Changes
  • ad5de44: Reorganize renderer, preview API & internal modules

v10.3.0

Compare Source

Minor Changes
  • 7c5101a: Enable static Autodocs code snippets by default via Storybook's experimental code examples pipeline.

    • Add generateCodeSnippet AST helper and experimental_enrichCsf preset hook
    • Enable features.experimentalCodeExamples by default; opt out in .storybook/main.ts
    • Include per-story snippet fields in the components manifest
  • 7c5101a: Replace react-docgen-typescript with solid-component-meta for Controls, Docs, and the components manifest.

    • Add componentManifest/ pipeline: TypeScript LanguageService extraction, Vite __docgenInfo injection, and manifest hooks (experimental_manifests, internal_getArgTypesData)
    • Enable components manifest debugger by default (features.componentsManifest); opt out of docgen via framework.options.docgen: false
    • Trim runtime docs layer to RCM-only (entry-preview-argtypes reads injected __docgenInfo); remove legacy acorn/propTypes docgen (~1500 lines)
    • Make framework.options optional in StorybookConfig
    • Add bun run typecheck; exclude CLI template/ from TypeScript project (scaffold files, not built)
    • Update README and MIGRATION for RCM, manifest debugger, and Storybook MCP
Patch Changes
  • 7c5101a: Fix CSF4 story arg types and published SolidComponent inference

v10.2.0

Compare Source

Minor Changes
  • 28b8951: Replace react-docgen-typescript with solid-component-meta for Controls, Docs, and the components manifest.
    • Add componentManifest/ pipeline: TypeScript LanguageService extraction, Vite __docgenInfo injection, and manifest hooks (experimental_manifests, internal_getArgTypesData)
    • Enable components manifest debugger by default (features.componentsManifest); opt out of docgen via framework.options.docgen: false
    • Trim runtime docs layer to RCM-only (entry-preview-argtypes reads injected __docgenInfo); remove legacy acorn/propTypes docgen (~1500 lines)
    • Make framework.options optional in StorybookConfig
    • Add bun run typecheck; exclude CLI template/ from TypeScript project (scaffold files, not built)
    • Update README and MIGRATION for RCM, manifest debugger, and Storybook MCP
Patch Changes
  • 28b8951: Fix CSF4 story arg types and published SolidComponent inference

v10.1.2

Compare Source

Patch Changes
  • 1582b23: Fix CSF4 story arg types and published SolidComponent inference

v10.1.1

Compare Source

Patch Changes

v10.1.0

Compare Source

Minor Changes
  • 9058c6f: ### Solid 2 support

    Solid 2 projects should import types and APIs from storybook-solidjs-vite/next in stories, preview, and other app code for correct Solid 2 typings:

    import type { Preview, Meta, StoryObj } from "storybook-solidjs-vite/next";

    You can still import from storybook-solidjs-vite without /next on Solid 2, but that may produce TypeScript errors because those types target the Solid 1 renderer.

    In .storybook/main.ts, both framework names are valid:

    • storybook-solidjs-vite — auto-detects Solid version from installed solid-js (works for Solid 2 projects)
    • storybook-solidjs-vite/next — pins the Solid 2 renderer explicitly
    // Either is fine for a Solid 2 app
    framework: "storybook-solidjs-vite";
    framework: "storybook-solidjs-vite/next";

    Solid 1 projects keep using storybook-solidjs-vite for imports and framework config.

CSF Next (optional)

definePreview, preview.meta, and meta.story are also available on both Solid 1 and Solid 2. CSF 3 (Meta, StoryObj, default export meta) continues to work; migrate to CSF Next when you want factory-based typing, not as a requirement for Solid 2.

// .storybook/main.ts
import { defineMain } from "storybook-solidjs-vite/node";

export default defineMain({
  framework: { name: "storybook-solidjs-vite/next" },
});
// .storybook/preview.tsx
import { definePreview } from "storybook-solidjs-vite/next";
Removals
  • Removed setProjectAnnotations — it only mattered for portable stories, which this integration does not support. If you adopt CSF Next, use definePreview in .storybook/preview and import that preview in story files.
Internal

Large refactor of renderer internals: shared preview pipeline, separate Solid 1 / Solid 2 renderers, and streamlined docgen integration.

v10.0.13

Compare Source

Patch Changes

v10.0.12

Compare Source

Patch Changes

v10.0.11

Compare Source

Patch Changes

v10.0.10

Compare Source

Patch Changes
  • 9c29c1f: Add vite v8 to peerDependencies

v10.0.9

Compare Source

Patch Changes
  • a148c37: chore: Added template files for storybook native CLI

v10.0.8

Compare Source

Patch Changes

v10.0.7

Compare Source

Patch Changes

v10.0.6

Compare Source

Patch Changes

v10.0.5

Compare Source

Patch Changes
  • a8fbb10: chore: Refactor type imports and fix build config for declarations

v10.0.4

Compare Source

Patch Changes
  • dadba20: Fix error with story render

v10.0.3

Compare Source

Patch Changes
  • c07a6b8: chore: Update package files and build config

v10.0.2

Compare Source

Patch Changes

v10.0.1

Compare Source

Patch Changes

v10.0.0

Compare Source

Patch Changes
  • Support for Storybook 10 rc.0

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

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

@github-actions

github-actions Bot commented Nov 5, 2025

Copy link
Copy Markdown
Contributor

size-limit report 📦

Path Size
All publics 2.15 KB (0%)
BalancedMasonryGrid 1.67 KB (0%)

@codecov

codecov Bot commented Nov 5, 2025

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 81.80%. Comparing base (587adf4) to head (79f57ce).

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #27   +/-   ##
=======================================
  Coverage   81.80%   81.80%           
=======================================
  Files          11       11           
  Lines         544      544           
  Branches       69       69           
=======================================
  Hits          445      445           
  Misses         97       97           
  Partials        2        2           
Flag Coverage Δ
unit 81.80% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch 3 times, most recently from a9543d8 to 5711736 Compare November 12, 2025 10:46
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch 4 times, most recently from a005ca3 to 4b4dbb9 Compare November 25, 2025 15:07
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from 4b4dbb9 to 6d7f443 Compare December 3, 2025 20:03
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from 6d7f443 to 2880e5c Compare December 31, 2025 13:34
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from 2880e5c to b36cafc Compare January 23, 2026 17:06
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from b36cafc to d4c383c Compare February 2, 2026 18:48
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch 2 times, most recently from d2b7968 to c48bddd Compare February 17, 2026 20:16
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from c48bddd to 104c2e1 Compare March 5, 2026 14:46
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from 104c2e1 to 7e35595 Compare March 13, 2026 16:17
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch 2 times, most recently from dab66ed to a06fc3c Compare March 27, 2026 13:28
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch 3 times, most recently from aaf9baa to e1d5e47 Compare April 8, 2026 18:18
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from e1d5e47 to 39b764e Compare April 29, 2026 15:07
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from 39b764e to a4e42cb Compare May 12, 2026 17:46
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from a4e42cb to 9c6e7a3 Compare September 7, 2026 18:35
@renovate
renovate Bot force-pushed the renovate/storybook-solidjs-vite-10.x branch from 9c6e7a3 to 79f57ce Compare September 10, 2026 21: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.

0 participants