Skip to content

Commit

Permalink
Merge branch 'next' into fix/vue3-prod-mismatch-compile-flag
Browse files Browse the repository at this point in the history
  • Loading branch information
shilman authored May 27, 2024
2 parents 1469dbd + 8596408 commit 5151415
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 8.1.4

- Angular: Revert style adjustments - [#27361](https://github.com/storybookjs/storybook/pull/27361), thanks @valentinpalkovic!
- Svelte: Support latest prerelease - [#27378](https://github.com/storybookjs/storybook/pull/27378), thanks @valentinpalkovic!
- Tags: Fix composition with older storybooks - [#27358](https://github.com/storybookjs/storybook/pull/27358), thanks @shilman!
- Vite: Fix HMR issue for Storybook preview files - [#27256](https://github.com/storybookjs/storybook/pull/27256), thanks @valentinpalkovic!

## 8.1.3

- Angular: Support v18 - [#27237](https://github.com/storybookjs/storybook/pull/27237), thanks @valentinpalkovic!
Expand Down
2 changes: 1 addition & 1 deletion code/lib/manager-api/src/lib/stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const transformStoryIndexV4toV5 = (
(acc, entry) => {
acc[entry.id] = {
...entry,
tags: entry.tags ? [...entry.tags, 'dev'] : ['dev'],
tags: entry.tags ? ['dev', 'test', ...entry.tags] : ['dev'],
};

return acc;
Expand Down

0 comments on commit 5151415

Please sign in to comment.