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.2.0-alpha.1 #27128

Merged
merged 60 commits into from
May 15, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented May 14, 2024

This is an automated pull request that bumps the version from 8.2.0-alpha.0 to 8.2.0-alpha.1.
Once this pull request is merged, it will trigger a new release of version 8.2.0-alpha.1.
If you're not a core maintainer with permissions to release you can ignore this pull request.

To do

Before merging the PR, there are a few QA steps to go through:

  • Add the "freeze" label to this PR, to ensure it doesn't get automatically forced pushed by new changes.
  • Add the "ci:daily" label to this PR, to trigger the full test suite to run on this PR.

And for each change below:

  1. Ensure the change is appropriate for the version bump. E.g. patch release should only contain patches, not new or de-stabilizing features. If a change is not appropriate, revert the PR.
  2. Ensure the PR is labeled correctly with one of: "BREAKING CHANGE", "feature request", "bug", "maintenance", "dependencies", "documentation", "build", "unknown".
  3. Ensure the PR title is correct, and follows the format "[Area]: [Summary]", e.g. "React: Fix hooks in CSF3 render functions". If it is not correct, change the title in the PR.
    • Areas include: React, Vue, Core, Docs, Controls, etc.
    • First word of summary indicates the type: “Add”, “Fix”, “Upgrade”, etc.
    • The entire title should fit on a line

This is a list of all the PRs merged and commits pushed directly to next, that will be part of this release:

  • 🐛 Bug: Docs: Fix Subtitle block when no of prop passed #27147 (will also be patched)
  • 🐛 Bug: Docs: Fix MDX Stories block tag-filtering behavior #27144 (will also be patched)
  • 🐛 Bug: Types: Fix typing for main.framework/builder fields #27088 (will also be patched)
  • ✨ Feature Request: CLI: Add optional --dev and --no-dev options to storybook init CLI #26918
  • ✨ Feature Request: CLI: Include @storybook/addon-svelte-csf when initializing new projects #27070
  • 📦 Dependencies: Dependency: bump markdown-to-jsx to v7.4.5 #26694
  • 🐛 Bug: Docgen: Only add react-docgen info when a component is defined in the file #26967 (will also be patched)
  • 🐛 Bug: Next.js: Avoid conflicts with the raw loader #27093 (will also be patched)
  • 📦 Dependencies: Dependency: Upgrade webpack-virtual-modules to 0.6.0 #27102
  • 🐛 Bug: Next.js: Add typing for NextImage to main framework options type #27105 (will also be patched)
  • 📝 Documentation: Docs: update outdated guide to make code open by default #26872
  • 📝 Documentation: Docs: ImgBot - Image optimization #27062
  • 🏗️ Build: Release tooling: Remove "Ensure next is ahead" script #27121
  • 🏗️ Build: Chore: Fix formatting #27119
  • 📝 Documentation: Docs: Fix typo of sample code for image snapshot tests with the test-runner in the storyshots migration guide #27051 (will also be patched)

If you've made any changes doing the above QA (change PR titles, revert PRs), manually trigger a re-generation of this PR with this workflow and wait for it to finish. It will wipe your progress in this to do, which is expected.

Feel free to manually commit any changes necessary to this branch after you've done the last re-generation, following the Make Manual Changes section in the docs, especially if you're making changes to the changelog.

When everything above is done:


Generated changelog

8.2.0-alpha.1

xyy94813 and others added 30 commits March 30, 2024 22:33
don't see any breaking change in change logs of the lib.
This version can resolve quantizor/markdown-to-jsx#529 and other bugs
For storybook 7 or higher, the code below does not work.

```js
export const parameters = {
  docs: {
    source: {
      state: 'open',
    },
  },
};
```

It should be fixed like below:

```js
export const parameters = {
  docs: {
    canvas: {
      sourceState: 'shown'
    }
  }
};
```

However, this document seems not changed so far. So I updated it.

## References:

- https://storybook.js.org/docs/api/doc-block-canvas#sourcestate
- #10430
This avoids errors when a component is being imported and re-exported under
a different name via a barrel file or similar.
*Total -- 3,378.51kb -> 3,172.13kb (6.11%)

/docs/contribute/storybook-reproduction-generator-location.png -- 77.72kb -> 47.79kb (38.51%)
/code/lib/core-events/src/errors/message-reference.png -- 68.88kb -> 44.25kb (35.76%)
/CONTRIBUTING/prerelease-workflow-inputs.png -- 77.58kb -> 49.85kb (35.74%)
/docs/contribute/storybook-reproduction-generator-template.png -- 119.93kb -> 77.09kb (35.72%)
/docs/api/story-pipeline-playwright-ct.png -- 97.43kb -> 72.32kb (25.77%)
/docs/api/story-pipeline.png -- 90.20kb -> 68.18kb (24.41%)
/code/lib/core-server/public/favicon.svg -- 1.26kb -> 1.22kb (3.17%)
/docs/writing-tests/test-coverage-storybook.gif -- 566.61kb -> 554.79kb (2.09%)
/docs/assets/mdx-vs-code-extension-errors.gif -- 1,090.69kb -> 1,077.12kb (1.24%)
/code/lib/cli/rendererAssets/common/assets/tutorials.svg -- 1.24kb -> 1.23kb (1.1%)
/code/lib/cli/rendererAssets/common/assets/discord.svg -- 2.36kb -> 2.34kb (0.91%)
/docs/essentials/addon-themes-example.gif -- 1,177.62kb -> 1,168.98kb (0.73%)
/code/lib/cli/rendererAssets/common/assets/accessibility.svg -- 1.52kb -> 1.50kb (0.71%)
/test-storybooks/portable-stories-kitchen-sink/nextjs/stories/assets/accessibility.svg -- 1.52kb -> 1.50kb (0.71%)
/code/lib/cli/rendererAssets/common/assets/youtube.svg -- 0.70kb -> 0.70kb (0.69%)
/test-storybooks/portable-stories-kitchen-sink/nextjs/public/vercel.svg -- 0.61kb -> 0.61kb (0.16%)
/code/lib/cli/rendererAssets/common/assets/github.svg -- 2.66kb -> 2.66kb (0.11%)

Signed-off-by: ImgBotApp <[email protected]>
ndelangen and others added 3 commits May 14, 2024 16:04
Release tooling: Remove "Ensure `next` is ahead" script
Docgen: Only add react-docgen info when a component is defined in the file
Dependency: bump `markdown-to-jsx` to v7.4.5
@storybook-bot storybook-bot force-pushed the version-non-patch-from-8.2.0-alpha.0 branch from a331cbf to 47a8c75 Compare May 14, 2024 14:10
CLI: Include `@storybook/addon-svelte-csf` when initializing new projects
@storybook-bot storybook-bot force-pushed the version-non-patch-from-8.2.0-alpha.0 branch from 47a8c75 to 0e586f6 Compare May 14, 2024 14:20
jonniebigodes and others added 2 commits May 14, 2024 15:29
CLI: Add optional `--dev` and `--no-dev` options to `storybook init` CLI
@storybook-bot storybook-bot force-pushed the version-non-patch-from-8.2.0-alpha.0 branch from 0e586f6 to 5225614 Compare May 14, 2024 14:42
@storybook-bot storybook-bot force-pushed the version-non-patch-from-8.2.0-alpha.0 branch from 5225614 to cbaded3 Compare May 14, 2024 14:53
@storybook-bot storybook-bot force-pushed the version-non-patch-from-8.2.0-alpha.0 branch from cbaded3 to 674f968 Compare May 14, 2024 16:12
Docs: update outdated guide to make code open by default
@storybook-bot storybook-bot force-pushed the version-non-patch-from-8.2.0-alpha.0 branch from 674f968 to 2a7064d Compare May 14, 2024 16:29
@storybook-bot storybook-bot force-pushed the version-non-patch-from-8.2.0-alpha.0 branch from 2a7064d to 5cd5609 Compare May 15, 2024 09:38
shilman and others added 2 commits May 15, 2024 17:55
…use-subtitle-doc-block-in-mdx-without-a-story

Docs: Fix Subtitle block when no `of` prop passed
@storybook-bot storybook-bot force-pushed the version-non-patch-from-8.2.0-alpha.0 branch from 5cd5609 to 1b863a5 Compare May 15, 2024 09:58
@shilman shilman added ci:daily Run the CI jobs that normally run in the daily job. freeze Freeze the Release PR with this label labels May 15, 2024
Copy link

nx-cloud bot commented May 15, 2024

☁️ Nx Cloud Report

CI is running/has finished running commands for commit 1b863a5. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.

📂 See all runs for this CI Pipeline Execution


✅ Successfully ran 2 targets

Sent with 💌 from NxCloud.

@shilman shilman merged commit 2166116 into next-release May 15, 2024
106 of 107 checks passed
@shilman shilman deleted the version-non-patch-from-8.2.0-alpha.0 branch May 15, 2024 10:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ci:daily Run the CI jobs that normally run in the daily job. freeze Freeze the Release PR with this label release For PRs that trigger new releases. Automated
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet