Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: Prerelease 8.5.0-alpha.18 #29809

Merged
merged 53 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
c83b266
feat: add build-package invalid package name tips
winchesHe Mar 3, 2024
1ee63d1
Refactor test addon to include stories automatically
yannbf Oct 15, 2024
9360bb7
add exceptions amending the error message to prompt users to install …
ndelangen Dec 2, 2024
fc1d07d
adjust way of adjusting the error message
ndelangen Dec 2, 2024
07cdd5b
Merge branch 'next' into norbert/improve-coverage-dep-missing-error
ndelangen Dec 2, 2024
57876b5
Merge branch 'next' into yann/automatic-stories-glob
ndelangen Dec 3, 2024
4e7eb16
cleanup
ndelangen Dec 3, 2024
c34a62e
add extra whilespace
ndelangen Dec 3, 2024
15139be
improve transform file condition
ndelangen Dec 3, 2024
54a7a1e
Merge branch 'next' into feature-scrips-diff
yannbf Dec 3, 2024
0247332
remove include list in sandbox generation, add exclude for svelte sto…
ndelangen Dec 3, 2024
79a1a2f
Support Storybook environment variables in Vitest
ghengeveld Dec 3, 2024
517dba5
Vue: properly resolve vite plugin
tobiasdiez Dec 4, 2024
1b05220
Merge branch 'next' into yann/automatic-stories-glob
ndelangen Dec 4, 2024
3985f97
cleanup [skip-ci]
ndelangen Dec 4, 2024
23a623f
Merge branch 'yann/automatic-stories-glob' of https://github.com/stor…
ndelangen Dec 4, 2024
7dc8267
improve package guessing logic
yannbf Dec 4, 2024
dfff2d2
remove comment
yannbf Dec 4, 2024
8d5f56f
chore: migrate repo to nx 19
JamesHenry Dec 4, 2024
4baa486
Merge branch 'next' into storybook-env-vars-in-vitest
ghengeveld Dec 4, 2024
e2ef61c
Fix ts error
kasperpeulen Dec 4, 2024
c94ee34
Merge branch 'next' into nx-19
kasperpeulen Dec 4, 2024
8dccaf8
Do not show contextMenu on refs
ndelangen Dec 4, 2024
8154eed
Merge branch 'next' into norbert/sidebar-contextmenu-not-on-refs
ndelangen Dec 4, 2024
eff4b9f
chore: fix check configurations
JamesHenry Dec 4, 2024
e25e33d
Escape stories paths before passing them as globs
ghengeveld Dec 4, 2024
9c4e983
chore: fix issues
JamesHenry Dec 4, 2024
67b4e1f
chore: remove trailing comma
JamesHenry Dec 4, 2024
ff25dfc
chore: disable daemon for now
JamesHenry Dec 4, 2024
235dcf6
chore: WIP
JamesHenry Dec 4, 2024
307102f
chore: re-enable daemon
JamesHenry Dec 4, 2024
4489350
Merge pull request #29803 from storybookjs/norbert/sidebar-contextmen…
ndelangen Dec 4, 2024
3b9f33e
Apply suggestions from code review
ghengeveld Dec 4, 2024
5c9c675
Merge branch 'next' into yann/automatic-stories-glob
ndelangen Dec 4, 2024
1370dc2
Merge pull request #29792 from storybookjs/storybook-env-vars-in-vitest
ghengeveld Dec 4, 2024
98a6612
Merge branch 'next' into nx-20
kasperpeulen Dec 4, 2024
476905d
Remove nx from script
kasperpeulen Dec 4, 2024
9716985
yarn.lock
kasperpeulen Dec 4, 2024
e6824cf
Use yarn nx over nx
kasperpeulen Dec 4, 2024
d6b4e7b
Use yarn nx over nx
kasperpeulen Dec 4, 2024
caca692
Merge branch 'next-release' into next
storybook-bot Dec 4, 2024
fd02aa5
Merge pull request #29367 from storybookjs/yann/automatic-stories-glob
ndelangen Dec 4, 2024
53c66f9
Use npx nx over nx
kasperpeulen Dec 4, 2024
a0245f4
Merge pull request #26289 from winchesHe/feature-scrips-diff
yannbf Dec 4, 2024
019be35
Merge pull request #29807 from JamesHenry/nx-20
kasperpeulen Dec 4, 2024
099c3f6
Replace glob with tinyglobby
ghengeveld Dec 5, 2024
4863529
Merge pull request #29763 from storybookjs/norbert/improve-coverage-d…
ndelangen Dec 5, 2024
b713e8e
Revert "Build: Migrate repo to Nx 20"
yannbf Dec 5, 2024
d908610
Merge pull request #29820 from storybookjs/revert-29807-nx-20
yannbf Dec 5, 2024
d57d02e
Merge branch 'next' into replace-glob-with-tinyglobby
ghengeveld Dec 5, 2024
a197110
Merge pull request #29817 from storybookjs/replace-glob-with-tinyglobby
ghengeveld Dec 5, 2024
f25b824
Merge pull request #29795 from tobiasdiez/plugin-promise
yannbf Dec 5, 2024
cb2e01b
Write changelog for 8.5.0-alpha.18 [skip ci]
storybook-bot Dec 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: fix issues
  • Loading branch information
JamesHenry committed Dec 4, 2024
commit 9c4e983e53a6c5d0d37ff936c71647149765303f
1 change: 1 addition & 0 deletions code/core/src/manager-api/modules/stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ export const init: ModuleFn<SubAPI, SubState> = ({
return undefined;
}
if (refId) {
// @ts-expect-error (possibly undefined)
return refs[refId].index ? refs[refId].index[storyId] : undefined;
}
return index ? index[storyId] : undefined;
Expand Down
2 changes: 1 addition & 1 deletion code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
"storybook": "workspace:^",
"svelte": "^5.0.0-next.268",
"ts-dedent": "^2.0.0",
"typescript": "5.5.4",
"typescript": "5.4.3",
"util": "^0.12.4",
"vite": "^4.0.0",
"vite-plugin-inspect": "^0.8.5",
Expand Down
38 changes: 9 additions & 29 deletions code/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7392,7 +7392,7 @@ __metadata:
storybook: "workspace:^"
svelte: "npm:^5.0.0-next.268"
ts-dedent: "npm:^2.0.0"
typescript: "npm:5.5.4"
typescript: "npm:5.4.3"
util: "npm:^0.12.4"
vite: "npm:^4.0.0"
vite-plugin-inspect: "npm:^0.8.5"
Expand Down Expand Up @@ -28443,13 +28443,13 @@ __metadata:
languageName: node
linkType: hard

"typescript@npm:5.5.4":
version: 5.5.4
resolution: "typescript@npm:5.5.4"
"typescript@npm:5.4.3, typescript@npm:^5.3.2":
version: 5.4.3
resolution: "typescript@npm:5.4.3"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/422be60f89e661eab29ac488c974b6cc0a660fb2228003b297c3d10c32c90f3bcffc1009b43876a082515a3c376b1eefcce823d6e78982e6878408b9a923199c
checksum: 10c0/22443a8760c3668e256c0b34b6b45c359ef6cecc10c42558806177a7d500ab1a7d7aac1f976d712e26989ddf6731d2fbdd3212b7c73290a45127c1c43ba2005a
languageName: node
linkType: hard

Expand All @@ -28463,16 +28463,6 @@ __metadata:
languageName: node
linkType: hard

"typescript@npm:^5.3.2":
version: 5.4.3
resolution: "typescript@npm:5.4.3"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/22443a8760c3668e256c0b34b6b45c359ef6cecc10c42558806177a7d500ab1a7d7aac1f976d712e26989ddf6731d2fbdd3212b7c73290a45127c1c43ba2005a
languageName: node
linkType: hard

"typescript@npm:~5.4.2":
version: 5.4.5
resolution: "typescript@npm:5.4.5"
Expand All @@ -28483,13 +28473,13 @@ __metadata:
languageName: node
linkType: hard

"typescript@patch:typescript@npm%3A5.5.4#optional!builtin<compat/typescript>":
version: 5.5.4
resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin<compat/typescript>::version=5.5.4&hash=b45daf"
"typescript@patch:typescript@npm%3A5.4.3#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A^5.3.2#optional!builtin<compat/typescript>":
version: 5.4.3
resolution: "typescript@patch:typescript@npm%3A5.4.3#optional!builtin<compat/typescript>::version=5.4.3&hash=5adc0c"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/10dd9881baba22763de859e8050d6cb6e2db854197495c6f1929b08d1eb2b2b00d0b5d9b0bcee8472f1c3f4a7ef6a5d7ebe0cfd703f853aa5ae465b8404bc1ba
checksum: 10c0/6e51f8b7e6ec55b897b9e56b67e864fe8f44e30f4a14357aad5dc0f7432db2f01efc0522df0b6c36d361c51f2dc3dcac5c832efd96a404cfabf884e915d38828
languageName: node
linkType: hard

Expand All @@ -28503,16 +28493,6 @@ __metadata:
languageName: node
linkType: hard

"typescript@patch:typescript@npm%3A^5.3.2#optional!builtin<compat/typescript>":
version: 5.4.3
resolution: "typescript@patch:typescript@npm%3A5.4.3#optional!builtin<compat/typescript>::version=5.4.3&hash=5adc0c"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/6e51f8b7e6ec55b897b9e56b67e864fe8f44e30f4a14357aad5dc0f7432db2f01efc0522df0b6c36d361c51f2dc3dcac5c832efd96a404cfabf884e915d38828
languageName: node
linkType: hard

"typescript@patch:typescript@npm%3A~5.4.2#optional!builtin<compat/typescript>":
version: 5.4.5
resolution: "typescript@patch:typescript@npm%3A5.4.5#optional!builtin<compat/typescript>::version=5.4.5&hash=5adc0c"
Expand Down
2 changes: 1 addition & 1 deletion scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
"ts-dedent": "^2.2.0",
"tsup": "^6.7.0",
"type-fest": "~2.19",
"typescript": "5.5.4",
"typescript": "5.4.5",
"util": "^0.12.5",
"uuid": "^9.0.1",
"vitest": "^2.1.3",
Expand Down
18 changes: 9 additions & 9 deletions scripts/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1705,7 +1705,7 @@ __metadata:
ts-dedent: "npm:^2.2.0"
tsup: "npm:^6.7.0"
type-fest: "npm:~2.19"
typescript: "npm:5.5.4"
typescript: "npm:5.4.5"
util: "npm:^0.12.5"
uuid: "npm:^9.0.1"
verdaccio: "npm:^5.31.1"
Expand Down Expand Up @@ -14229,23 +14229,23 @@ __metadata:
languageName: node
linkType: hard

"typescript@npm:5.5.4":
version: 5.5.4
resolution: "typescript@npm:5.5.4"
"typescript@npm:5.4.5":
version: 5.4.5
resolution: "typescript@npm:5.4.5"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/422be60f89e661eab29ac488c974b6cc0a660fb2228003b297c3d10c32c90f3bcffc1009b43876a082515a3c376b1eefcce823d6e78982e6878408b9a923199c
checksum: 10c0/2954022ada340fd3d6a9e2b8e534f65d57c92d5f3989a263754a78aba549f7e6529acc1921913560a4b816c46dce7df4a4d29f9f11a3dc0d4213bb76d043251e
languageName: node
linkType: hard

"typescript@patch:typescript@npm%3A5.5.4#optional!builtin<compat/typescript>":
version: 5.5.4
resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin<compat/typescript>::version=5.5.4&hash=b45daf"
"typescript@patch:typescript@npm%3A5.4.5#optional!builtin<compat/typescript>":
version: 5.4.5
resolution: "typescript@patch:typescript@npm%3A5.4.5#optional!builtin<compat/typescript>::version=5.4.5&hash=5adc0c"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/10dd9881baba22763de859e8050d6cb6e2db854197495c6f1929b08d1eb2b2b00d0b5d9b0bcee8472f1c3f4a7ef6a5d7ebe0cfd703f853aa5ae465b8404bc1ba
checksum: 10c0/db2ad2a16ca829f50427eeb1da155e7a45e598eec7b086d8b4e8ba44e5a235f758e606d681c66992230d3fc3b8995865e5fd0b22a2c95486d0b3200f83072ec9
languageName: node
linkType: hard

Expand Down
Loading