From cf52efca37683ee16fc878b44663bc052064871a Mon Sep 17 00:00:00 2001 From: Tom Coleman Date: Mon, 29 Jun 2020 17:04:11 +1000 Subject: [PATCH] Add some migration notes --- MIGRATION.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/MIGRATION.md b/MIGRATION.md index 2fbf3112dbe..6e48d1e75a4 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -17,6 +17,7 @@ - [Removed Deprecated APIs](#removed-deprecated-apis) - [New setStories event](#new-setstories-event) - [Removed renderCurrentStory event](#removed-rendercurrentstory-event) + - [Removed hierarchy separators](#removed-hierarchy-separators) - [Client API changes](#client-api-changes) - [Removed Legacy Story APIs](#removed-legacy-story-apis) - [Can no longer add decorators/parameters after stories](#can-no-longer-add-decoratorsparameters-after-stories) @@ -391,6 +392,26 @@ const parameters = combineParameters( The story store no longer emits `renderCurrentStory`/`RENDER_CURRENT_STORY` to tell the renderer to render the story. Instead it emits a new declarative `CURRENT_STORY_WAS_SET` (in response to the existing `SET_CURRENT_STORY`) which is used to decide to render. +### Removed hierarchy separators + +We've removed the ability to specify the hierarchy separators (how you control the grouping of story kinds in the sidebar). From Storybook 6.0 we have a single separator `/`, which cannot be configured. + +If you are currently using using custom separators, we encourage you to migrate to using `/` as the sole separator. If you are using `|` or `.` as a separator currently, we provide a codemod, [`upgrade-hierarchy-separators`](https://github.com/storybookjs/storybook/blob/next/lib/codemod/README.md#upgrade-hierarchy-separators), that can be used to rename all your components. + +``` +yarn sb migrate upgrade-hierarchy-separators --glob="*.stories.js" +``` + +We also now default to showing "roots", which are non-expandable groupings in the sidebar for the top-level groups. If you'd like to disable this, set the `showRoots` option in `.storybook/manager.js`: + +```js +import addons from '@storybook/addons'; + +addons.setConfig({ + showRoots: false, +}); +``` + ### Client API changes #### Removed Legacy Story APIs