Skip to content

Commit 483ef63

Browse files
committed
Merge remote-tracking branch 'upstream/next' into bundle-tsup-swc
2 parents 3096cd1 + 131be40 commit 483ef63

File tree

6 files changed

+935
-427
lines changed

6 files changed

+935
-427
lines changed

.storybook/main.js renamed to .storybook/main.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
let stories = [
2-
'../stories/docs/**/*.stories.mdx',
2+
'../stories/docs/**/*.mdx',
33
// default title prefix
44
{
55
titlePrefix: 'Atoms',
@@ -13,11 +13,9 @@ let stories = [
1313
// general glob
1414
'../stories/pages/**/*.stories.@(js|jsx|ts|tsx)',
1515
];
16-
1716
if (process.env.TEST_FAILURES) {
1817
stories = ['../stories/expected-failures/*.stories.@(js|jsx|ts|tsx)'];
1918
}
20-
2119
const addons = [
2220
process.env.WITHOUT_DOCS
2321
? {
@@ -29,8 +27,8 @@ const addons = [
2927
: '@storybook/addon-essentials',
3028
'@storybook/addon-interactions',
3129
'@storybook/addon-coverage',
30+
'@storybook/addon-mdx-gfm',
3231
];
33-
3432
module.exports = {
3533
stories,
3634
addons,
@@ -45,4 +43,7 @@ module.exports = {
4543
name: '@storybook/react-webpack5',
4644
options: {},
4745
},
46+
docs: {
47+
autodocs: true,
48+
},
4849
};
File renamed without changes.

CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
# v0.10.0 (Mon Apr 03 2023)
2+
3+
#### 🚀 Enhancement
4+
5+
- New prerelease structure / upgrade to SB7 [#210](https://github.com/storybookjs/test-runner/pull/210) ([@shilman](https://github.com/shilman))
6+
7+
#### 🐛 Bug Fix
8+
9+
- Bump @storybook/csf to 0.1.0 [#288](https://github.com/storybookjs/test-runner/pull/288) ([@kasperpeulen](https://github.com/kasperpeulen))
10+
- support Storybook 7.0.0 [#283](https://github.com/storybookjs/test-runner/pull/283) ([@yannbf](https://github.com/yannbf))
11+
- Update getStorybookMain to throw an error if stories are not found in main.js [#278](https://github.com/storybookjs/test-runner/pull/278) ([@valentinpalkovic](https://github.com/valentinpalkovic))
12+
- Extend hooks api with `prepare` and `getHttpHeaders` properties [#245](https://github.com/storybookjs/test-runner/pull/245) ([@yannbf](https://github.com/yannbf))
13+
- Use preview api instead of store [#273](https://github.com/storybookjs/test-runner/pull/273) ([@kasperpeulen](https://github.com/kasperpeulen))
14+
- Support other test-runner config extensions [#259](https://github.com/storybookjs/test-runner/pull/259) ([@yannbf](https://github.com/yannbf))
15+
- Use ipv4 loopback address [#252](https://github.com/storybookjs/test-runner/pull/252) ([@IanVS](https://github.com/IanVS))
16+
- Fix safe json stringify code [#239](https://github.com/storybookjs/test-runner/pull/239) ([@hansottowirtz](https://github.com/hansottowirtz))
17+
- feat: add shard cli option [#243](https://github.com/storybookjs/test-runner/pull/243) ([@Niznikr](https://github.com/Niznikr) [@yannbf](https://github.com/yannbf))
18+
- Updating deps to handle TS 4.9 [#237](https://github.com/storybookjs/test-runner/pull/237) ([@kasperpeulen](https://github.com/kasperpeulen))
19+
- Fix target url in error feedback [#233](https://github.com/storybookjs/test-runner/pull/233) ([@yannbf](https://github.com/yannbf))
20+
- Remove unused development packages [#227](https://github.com/storybookjs/test-runner/pull/227) ([@yannbf](https://github.com/yannbf))
21+
- Make setup-page globally available for index.json mode compatibility [#217](https://github.com/storybookjs/test-runner/pull/217) ([@yannbf](https://github.com/yannbf))
22+
- Upgrade CSF to next [#212](https://github.com/storybookjs/test-runner/pull/212) ([@shilman](https://github.com/shilman))
23+
- Fix missing dependencies [#209](https://github.com/storybookjs/test-runner/pull/209) ([@bryanjtc](https://github.com/bryanjtc))
24+
25+
#### 📝 Documentation
26+
27+
- Document index.json mode for Svelte CSF [#263](https://github.com/storybookjs/test-runner/pull/263) ([@JReinhold](https://github.com/JReinhold))
28+
- Docs: add recipe for browser name [#221](https://github.com/storybookjs/test-runner/pull/221) ([@yannbf](https://github.com/yannbf))
29+
30+
#### Authors: 9
31+
32+
- Bryan Thomas ([@bryanjtc](https://github.com/bryanjtc))
33+
- Hans Otto Wirtz ([@hansottowirtz](https://github.com/hansottowirtz))
34+
- Ian VanSchooten ([@IanVS](https://github.com/IanVS))
35+
- Jeppe Reinhold ([@JReinhold](https://github.com/JReinhold))
36+
- Kasper Peulen ([@kasperpeulen](https://github.com/kasperpeulen))
37+
- Michael Shilman ([@shilman](https://github.com/shilman))
38+
- Robert Niznik ([@Niznikr](https://github.com/Niznikr))
39+
- Valentin Palkovic ([@valentinpalkovic](https://github.com/valentinpalkovic))
40+
- Yann Braga ([@yannbf](https://github.com/yannbf))
41+
42+
---
43+
144
# v0.9.4 (Wed Feb 01 2023)
245

346
#### 🐛 Bug Fix

package.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/test-runner",
3-
"version": "0.9.4",
3+
"version": "0.10.0",
44
"description": "Test runner for Storybook stories",
55
"keywords": [
66
"storybook-addons",
@@ -55,12 +55,13 @@
5555
"@babel/preset-typescript": "^7.18.6",
5656
"@jest/types": "^28.1.3",
5757
"@storybook/addon-coverage": "^0.0.7",
58-
"@storybook/addon-essentials": "next",
59-
"@storybook/addon-interactions": "next",
60-
"@storybook/jest": "next",
61-
"@storybook/react": "next",
62-
"@storybook/react-webpack5": "next",
63-
"@storybook/testing-library": "next",
58+
"@storybook/addon-essentials": "^7.0.0",
59+
"@storybook/addon-interactions": "^7.0.0",
60+
"@storybook/addon-mdx-gfm": "^7.0.0",
61+
"@storybook/jest": "^0.1.0",
62+
"@storybook/react": "^7.0.0",
63+
"@storybook/react-webpack5": "^7.0.0",
64+
"@storybook/testing-library": "^0.1.0",
6465
"@types/jest": "^27.0.3",
6566
"@types/node": "^16.4.1",
6667
"auto": "^10.3.0",
File renamed without changes.

0 commit comments

Comments
 (0)