WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

update type is null #620

@Th3S4mur41

Description

@Th3S4mur41

Similar to #615, #602, #499, #339

Using fetch-metadata v2...

The script returned null for the update type of the following PR:

title: chore(deps): bump esbuild and storybook
Body:

Bumps [esbuild](https://github.com/evanw/esbuild) and [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli). These dependencies needed to be updated together.
Updates `esbuild` from 0.24.0 to 0.25.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p>
<blockquote>
<h2>v0.25.2</h2>
<ul>
<li>
<p>Support flags in regular expressions for the API (<a href="https://redirect.github.com/evanw/esbuild/issues/4121">#4121</a>)</p>
<p>The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the <code>filter</code> option. Internally these are translated into Go regular expressions. However, this translation previously ignored the <code>flags</code> property of the regular expression. With this release, esbuild will now translate JavaScript regular expression flags into Go regular expression flags. Specifically the JavaScript regular expression <code>/\.[jt]sx?$/i</code> is turned into the Go regular expression <code>`(?i)\.[jt]sx?$`</code> internally inside of esbuild's API. This should make it possible to use JavaScript regular expressions with the <code>i</code> flag. Note that JavaScript and Go don't support all of the same regular expression features, so this mapping is only approximate.</p>
</li>
<li>
<p>Fix node-specific annotations for string literal export names (<a href="https://redirect.github.com/evanw/esbuild/issues/4100">#4100</a>)</p>
<p>When node instantiates a CommonJS module, it scans the AST to look for names to expose via ESM named exports. This is a heuristic that looks for certain patterns such as <code>exports.NAME = ...</code> or <code>module.exports = { ... }</code>. This behavior is used by esbuild to &quot;annotate&quot; CommonJS code that was converted from ESM with the original ESM export names. For example, when converting the file <code>export let foo, bar</code> from ESM to CommonJS, esbuild appends this to the end of the file:</p>
<pre lang="js"><code>// Annotate the CommonJS export names for ESM import in node:
0 &amp;&amp; (module.exports = {
  bar,
  foo
});
</code></pre>
<p>However, this feature previously didn't work correctly for export names that are not valid identifiers, which can be constructed using string literal export names. The generated code contained a syntax error. That problem is fixed in this release:</p>
<pre lang="js"><code>// Original code
let foo
export { foo as &quot;foo!&quot; }
<p>// Old output (with --format=cjs --platform=node)
...
0 &amp;&amp; (module.exports = {
&quot;foo!&quot;
});</p>
<p>// New output (with --format=cjs --platform=node)
...
0 &amp;&amp; (module.exports = {
&quot;foo!&quot;: null
});
</code></pre></p>
</li>
<li>
<p>Basic support for index source maps (<a href="https://redirect.github.com/evanw/esbuild/issues/3439">#3439</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4109">#4109</a>)</p>
<p>The source map specification has an optional mode called <a href="https://tc39.es/ecma426/#sec-index-source-map">index source maps</a> that makes it easier for tools to create an aggregate JavaScript file by concatenating many smaller JavaScript files with source maps, and then generate an aggregate source map by simply providing the original source maps along with some offset information. My understanding is that this is rarely used in practice. I'm only aware of two uses of it in the wild: <a href="https://clojurescript.org/">ClojureScript</a> and <a href="https://turbo.build/pack/">Turbopack</a>.</p>
<p>This release provides basic support for indexed source maps. However, the implementation has not been tested on a real app (just on very simple test input). If you are using index source maps in a real app, please try this out and report back if anything isn't working for you.</p>
<p>Note that this is also not a complete implementation. For example, index source maps technically allows nesting source maps to an arbitrary depth, while esbuild's implementation in this release only supports a single level of nesting. It's unclear whether supporting more than one level of nesting is important or not given the lack of available test cases.</p>
<p>This feature was contributed by <a href="https://github.com/clyfish"><code>@​clyfish</code></a>.</p>
</li>
</ul>
<h2>v0.25.1</h2>
<ul>
<li>Fix incorrect paths in inline source maps (<a href="https://redirect.github.com/evanw/esbuild/issues/4070">#4070</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4075">#4075</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4105">#4105</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md">esbuild's changelog</a>.</em></p>
<blockquote>
<h1>Changelog: 2024</h1>
<p>This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).</p>
<h2>0.24.2</h2>
<ul>
<li>
<p>Fix regression with <code>--define</code> and <code>import.meta</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4010">#4010</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4012">#4012</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4013">#4013</a>)</p>
<p>The previous change in version 0.24.1 to use a more expression-like parser for <code>define</code> values to allow quoted property names introduced a regression that removed the ability to use <code>--define:import.meta=...</code>. Even though <code>import</code> is normally a keyword that can't be used as an identifier, ES modules special-case the <code>import.meta</code> expression to behave like an identifier anyway. This change fixes the regression.</p>
<p>This fix was contributed by <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>.</p>
</li>
</ul>
<h2>0.24.1</h2>
<ul>
<li>
<p>Allow <code>es2024</code> as a target in <code>tsconfig.json</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4004">#4004</a>)</p>
<p>TypeScript recently <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/#support-for---target-es2024-and---lib-es2024">added <code>es2024</code></a> as a compilation target, so esbuild now supports this in the <code>target</code> field of <code>tsconfig.json</code> files, such as in the following configuration file:</p>
<pre lang="json"><code>{
  &quot;compilerOptions&quot;: {
    &quot;target&quot;: &quot;ES2024&quot;
  }
}
</code></pre>
<p>As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in <a href="https://esbuild.github.io/content-types/#tsconfig-json">the documentation</a>.</p>
<p>This fix was contributed by <a href="https://github.com/billyjanitsch"><code>@​billyjanitsch</code></a>.</p>
</li>
<li>
<p>Allow automatic semicolon insertion after <code>get</code>/<code>set</code></p>
<p>This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:</p>
<pre lang="ts"><code>class Foo {
  get
  *x() {}
  set
  *y() {}
}
</code></pre>
<p>The above code will be considered valid starting with this release. This change to esbuild follows a <a href="https://redirect.github.com/microsoft/TypeScript/pull/60225">similar change to TypeScript</a> which will allow this syntax starting with TypeScript 5.7.</p>
</li>
<li>
<p>Allow quoted property names in <code>--define</code> and <code>--pure</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4008">#4008</a>)</p>
<p>The <code>define</code> and <code>pure</code> API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes <code>--define</code> and <code>--pure</code> consistent with <code>--global-name</code>, which already supported quoted property names. For example, the following is now possible:</p>
<pre lang="js"><code></code></pre>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/evanw/esbuild/commit/4475787eef4c4923b92b9fa37ebba1c88b9e1d9b"><code>4475787</code></a> publish 0.25.2 to npm</li>
<li><a href="https://github.com/evanw/esbuild/commit/8f56771afc37c2b328056a2e6aefdfc2b821c5d7"><code>8f56771</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4121">#4121</a>: map js regexp flags to go regexp flags</li>
<li><a href="https://github.com/evanw/esbuild/commit/36b458d144796882a78baaa40baac5f88c7694b1"><code>36b458d</code></a> follow-up to <a href="https://redirect.github.com/evanw/esbuild/issues/4109">#4109</a></li>
<li><a href="https://github.com/evanw/esbuild/commit/8b8437cb0fccd680ef39548fc7bb56ff8f48333d"><code>8b8437c</code></a> feat: support index source map (<a href="https://redirect.github.com/evanw/esbuild/issues/4109">#4109</a>)</li>
<li><a href="https://github.com/evanw/esbuild/commit/75286c1b4fabcf93140b97c3c0488f0253158b47"><code>75286c1</code></a> unit test for absolute windows paths in source map</li>
<li><a href="https://github.com/evanw/esbuild/commit/bcc77fbee56ec7c050813c972d8bb1e06a8e57ef"><code>bcc77fb</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4100">#4100</a>: invalid identifiers in node annotation</li>
<li><a href="https://github.com/evanw/esbuild/commit/37cb6a2bc3da13e7805a57782ced720fda7eb1f7"><code>37cb6a2</code></a> fix a warning from <code>npm publish</code></li>
<li><a href="https://github.com/evanw/esbuild/commit/6bfc1c13b4d986b86e8bc2035f00c337b0c1d007"><code>6bfc1c1</code></a> publish 0.25.1 to npm</li>
<li><a href="https://github.com/evanw/esbuild/commit/f9b39529a328f513cd73b36e8488a4a624df5c36"><code>f9b3952</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4078">#4078</a>: prepend namespaces to source map paths</li>
<li><a href="https://github.com/evanw/esbuild/commit/ccf3dd7889e7765a1d6f1596ada0f22b320d7174"><code>ccf3dd7</code></a> add &quot;contributed by&quot; in changelog</li>
<li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.24.0...v0.25.2">compare view</a></li>
</ul>
</details>
<br />

Updates `storybook` from 8.4.0 to 8.6.12
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases">storybook's releases</a>.</em></p>
<blockquote>
<h2>v8.6.12</h2>
<h2>8.6.12</h2>
<ul>
<li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li>
<li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li>
<li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li>
<li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li>
</ul>
<h2>v8.6.11</h2>
<h2>8.6.11</h2>
<ul>
<li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li>
</ul>
<h2>v8.6.10</h2>
<h2>8.6.10</h2>
<ul>
<li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li>
<li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
</ul>
<h2>v8.6.9</h2>
<h2>8.6.9</h2>
<ul>
<li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
</ul>
<h2>v8.6.8</h2>
<h2>8.6.8</h2>
<ul>
<li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li>
<li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
</ul>
<h2>v8.6.7</h2>
<h2>8.6.7</h2>
<ul>
<li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li>
</ul>
<h2>v8.6.6</h2>
<h2>8.6.6</h2>
<ul>
<li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>CSF: Fix CSF subcomponent type - <a href="https://redirect.github.com/storybookjs/storybook/pull/30729">#30729</a>, thanks <a href="https://github.com/filipemelo2002"><code>@​filipemelo2002</code></a>!</li>
</ul>
<h2>v8.6.5</h2>
<h2>8.6.5</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.12/CHANGELOG.md">storybook's changelog</a>.</em></p>
<blockquote>
<h2>8.6.12</h2>
<ul>
<li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li>
<li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li>
<li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li>
<li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li>
</ul>
<h2>8.6.11</h2>
<ul>
<li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li>
</ul>
<h2>8.6.10</h2>
<ul>
<li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li>
<li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
</ul>
<h2>8.6.9</h2>
<ul>
<li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
</ul>
<h2>8.6.8</h2>
<ul>
<li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li>
<li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
</ul>
<h2>8.6.7</h2>
<ul>
<li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li>
</ul>
<h2>8.6.6</h2>
<ul>
<li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>CSF: Fix CSF subcomponent type - <a href="https://redirect.github.com/storybookjs/storybook/pull/30729">#30729</a>, thanks <a href="https://github.com/filipemelo2002"><code>@​filipemelo2002</code></a>!</li>
</ul>
<h2>8.6.5</h2>
<ul>
<li>Addon A11y: Promote <code>@​storybook/global</code> to full dependency - <a href="https://redirect.github.com/storybookjs/storybook/pull/30723">#30723</a>, thanks <a href="https://github.com/mrginglymus"><code>@​mrginglymus</code></a>!</li>
<li>Angular: Add <code>@angular-devkit/build-angular</code> to installed packages - <a href="https://redirect.github.com/storybookjs/storybook/pull/30790">#30790</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li>
<li>CLI: Fix test install in RNW projects - <a href="https://redirect.github.com/storybookjs/storybook/pull/30786">#30786</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li>
<li>Core: Replace 'min' instead of 'm' in printDuration - <a href="https://redirect.github.com/storybookjs/storybook/pull/30668">#30668</a>, thanks <a href="https://github.com/wlewis-formative"><code>@​wlewis-formative</code></a>!</li>
<li>Next.js: Use latest version when init in empty directory - <a href="https://redirect.github.com/storybookjs/storybook/pull/30659">#30659</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li>
<li>Svelte: Fix Vite crashing on virtual module imports - <a href="https://redirect.github.com/storybookjs/storybook/pull/26838">#26838</a>, thanks <a href="https://github.com/rChaoz"><code>@​rChaoz</code></a>!</li>
<li>Svelte: Fix automatic argTypes inference coming up empty with <code>[email protected]</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30784">#30784</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li>
<li>Universal Store: Don't use <code>crypto.randomUUID</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30781">#30781</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li>
<li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li>
<li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li>
<li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li>
<li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li>
<li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li>
<li><a href="https://github.com/storybookjs/storybook/commit/9a7a7953fca0f05be3806318c7676940ed4fc102"><code>9a7a795</code></a> Bump version from &quot;8.6.5&quot; to &quot;8.6.6&quot; [skip ci]</li>
<li><a href="https://github.com/storybookjs/storybook/commit/4e23d75cd2e5bcc83e4a5e2b5ceb39cf6974acdb"><code>4e23d75</code></a> Bump version from &quot;8.6.4&quot; to &quot;8.6.5&quot; [skip ci]</li>
<li><a href="https://github.com/storybookjs/storybook/commit/d8260421bed5d80f5cc261d462630e07c1f5deca"><code>d826042</code></a> Bump version from &quot;8.6.3&quot; to &quot;8.6.4&quot; [skip ci]</li>
<li><a href="https://github.com/storybookjs/storybook/commit/d4e73f58aa921b133f0b32ff5ef0b5e7ca5c37d2"><code>d4e73f5</code></a> Bump version from &quot;8.6.2&quot; to &quot;8.6.3&quot; [skip ci]</li>
<li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.12/code/lib/cli">compare view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a href="https://www.npmjs.com/~storybook-bot">storybook-bot</a>, a new releaser for storybook since your current version.</p>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/eviden-parallel/storybook-theme/network/alerts).

</details>

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions