From 36870c659b8e5b140b8ff8dbf0519ebdf066f93a Mon Sep 17 00:00:00 2001 From: "yannbf@gmail.com" Date: Mon, 10 Oct 2022 10:58:49 +0000 Subject: [PATCH] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53e9e0a..3e614e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +# v0.6.5 (Mon Oct 10 2022) + +### Release Notes + +#### story-exports: provide better feedback when using filters ([#107](https://github.com/storybookjs/eslint-plugin-storybook/pull/107)) + +The `story-exports` rule now detects whether you are using `includeStories/excludeStories` and provides a more helpful message in case there are not exported stories. A possible scenario is you have a typo in your `includeStories` which will result in Storybook not including it: + +```js +export default { + title: 'Button', + includeStories: ['myStory'], // <-- notice the lowercase m, which won't match with the story name +}; + +export const MyStory = {}; +``` + +--- + +#### 🐛 Bug Fix + +- story-exports: provide better feedback when using filters [#107](https://github.com/storybookjs/eslint-plugin-storybook/pull/107) ([@yannbf](https://github.com/yannbf)) + +#### Authors: 1 + +- Yann Braga ([@yannbf](https://github.com/yannbf)) + +--- + # v0.6.4 (Mon Aug 08 2022) #### 🐛 Bug Fix