Skip to content

Commit 7b649f5

Browse files
authored
Merge pull request #33869 from storybookjs/version-non-patch-from-10.3.0-alpha.6
Release: Prerelease 10.3.0-alpha.7
2 parents 5c37a8a + cc8367c commit 7b649f5

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 10.2.10
2+
3+
- Core: Require token for websocket connections - [#33820](https://github.com/storybookjs/storybook/pull/33820), thanks @ghengeveld!
4+
5+
## 10.2.9
6+
7+
- Addon-Vitest: Improve config file detection in monorepos - [#33814](https://github.com/storybookjs/storybook/pull/33814), thanks @valentinpalkovic!
8+
- Builder-Vite: Update dependencies react-vite framework - [#33810](https://github.com/storybookjs/storybook/pull/33810), thanks @valentinpalkovic!
9+
- Builder-Vite: Use relative path for mocker entry in production builds - [#33792](https://github.com/storybookjs/storybook/pull/33792), thanks @DukeDeSouth!
10+
- Next.js: Fix Link component override in appDirectory configuration - [#31251](https://github.com/storybookjs/storybook/pull/31251), thanks @yatishgoel!
11+
112
## 10.2.8
213

314
- Telemetry: Add Expo metaframework - [#33783](https://github.com/storybookjs/storybook/pull/33783), thanks @copilot-swe-agent!

code/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,5 +220,6 @@
220220
"Dependency Upgrades"
221221
]
222222
]
223-
}
223+
},
224+
"deferredNextVersion": "10.3.0-alpha.7"
224225
}

scripts/build/utils/generate-types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function generateTypesFiles(cwd: string, data: BuildEntries) {
2121
// ...this way we do not bog down the main process/esbuild and can run them in parallel
2222
// we limit the number of concurrent processes to 3, because we don't want to overload the host machine
2323
// by trial and error, 3 seems to be the sweet spot between perf and consistency
24-
const limited = limit(10);
24+
const limited = limit(5);
2525
let processes: ReturnType<typeof spawn>[] = [];
2626

2727
await Promise.all(
@@ -83,7 +83,7 @@ export async function generateTypesFiles(cwd: string, data: BuildEntries) {
8383
processes.forEach((p) => p.kill());
8484
processes = [];
8585
process.exit(dtsProcess.exitCode || 1);
86-
} else if(!process.env.CI) {
86+
} else if (!process.env.CI) {
8787
console.log('✅ Generated types for', picocolors.cyan(join(DIR_REL, entryPoint)));
8888
}
8989
});

0 commit comments

Comments
 (0)