Skip to content

Commit

Permalink
Merge pull request #23382 from storybookjs/version-prerelease-from-7.…
Browse files Browse the repository at this point in the history
…1.0-beta.2

Release: Prerelease 7.1.0-beta.3
  • Loading branch information
shilman authored Jul 10, 2023
2 parents 3854313 + 9873fde commit 9947c95
Show file tree
Hide file tree
Showing 167 changed files with 3,157 additions and 2,219 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -593,27 +593,27 @@ workflows:
requires:
- unit-tests
- create-sandboxes:
parallelism: 20
parallelism: 19
requires:
- build
- build-sandboxes:
parallelism: 20
parallelism: 19
requires:
- create-sandboxes
- chromatic-sandboxes:
parallelism: 18
parallelism: 17
requires:
- build-sandboxes
- e2e-production:
parallelism: 18
parallelism: 17
requires:
- build-sandboxes
- e2e-dev:
parallelism: 4
requires:
- create-sandboxes
- test-runner-production:
parallelism: 18
parallelism: 17
requires:
- build-sandboxes
- bench:
Expand Down Expand Up @@ -647,30 +647,30 @@ workflows:
requires:
- build
- create-sandboxes:
parallelism: 34
parallelism: 33
requires:
- build
# - smoke-test-sandboxes: # disabled for now
# requires:
# - create-sandboxes
- build-sandboxes:
parallelism: 34
parallelism: 33
requires:
- create-sandboxes
- chromatic-sandboxes:
parallelism: 32
parallelism: 31
requires:
- build-sandboxes
- e2e-production:
parallelism: 32
parallelism: 31
requires:
- build-sandboxes
- e2e-dev:
parallelism: 4
requires:
- create-sandboxes
- test-runner-production:
parallelism: 32
parallelism: 31
requires:
- build-sandboxes
# TODO: reenable once we find out the source of flakyness
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prepare-patch-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git config --global user.name 'storybook-bot'
git config --global user.email '32066757+storybook-bot@users.noreply.github.com'
yarn release:pick-patches
- name: Bump version
Expand Down Expand Up @@ -117,8 +117,8 @@ jobs:
- name: 'Commit changes to branch: version-patch-from-${{ steps.versions.outputs.current }}'
working-directory: .
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git config --global user.name 'storybook-bot'
git config --global user.email '32066757+storybook-bot@users.noreply.github.com'
git checkout -b version-patch-from-${{ steps.versions.outputs.current }}
git add .
git commit -m "Bump version from ${{ steps.versions.outputs.current }} to ${{ steps.versions.outputs.next }}" || true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prepare-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ jobs:
- name: 'Commit changes to branch: version-prerelease-from-${{ steps.bump-version.outputs.current-version }}'
working-directory: .
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git config --global user.name 'storybook-bot'
git config --global user.email '32066757+storybook-bot@users.noreply.github.com'
git checkout -b version-prerelease-from-${{ steps.bump-version.outputs.current-version }}
git add .
git commit -m "Bump version from ${{ steps.bump-version.outputs.current-version }} to ${{ steps.bump-version.outputs.next-version }}" || true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ jobs:
- name: Merge ${{ github.ref_name }} into ${{ steps.target.outputs.target }}
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "storybook-bot"
git config --global user.email "32066757+storybook-bot@users.noreply.github.com"
git fetch origin ${{ steps.target.outputs.target }}
git checkout ${{ steps.target.outputs.target }}
git merge ${{ github.ref_name }}
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@
"*.js": "javascriptreact"
},
"prettier.ignorePath": "./code/.prettierignore",
"typescript.tsdk": "./code/node_modules/typescript/lib"
"typescript.tsdk": "./code/node_modules/typescript/lib",
"storyExplorer.storybookConfigDir": "./code/ui/.storybook"
}
9 changes: 9 additions & 0 deletions CHANGELOG.prerelease.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 7.1.0-beta.3

- CLI: Update Configure.mdx - [#23340](https://github.com/storybookjs/storybook/pull/23340), thanks [@valentinpalkovic](https://github.com/valentinpalkovic)!
- React: Move `typescript` from devDependencies to peerDependencies - [#23179](https://github.com/storybookjs/storybook/pull/23179), thanks [@chakAs3](https://github.com/chakAs3)!
- Settings: Add disable whatsnew UI - [#23381](https://github.com/storybookjs/storybook/pull/23381), thanks [@kasperpeulen](https://github.com/kasperpeulen)!
- Settings: New about page design - [#23357](https://github.com/storybookjs/storybook/pull/23357), thanks [@kasperpeulen](https://github.com/kasperpeulen)!
- Svelte-Webpack: Support Svelte v4 - [#23336](https://github.com/storybookjs/storybook/pull/23336), thanks [@JReinhold](https://github.com/JReinhold)!
- UI: Remove css zoom - [#21303](https://github.com/storybookjs/storybook/pull/21303), thanks [@Luk-z](https://github.com/Luk-z)!

## 7.1.0-beta.2

- Next.js: Fix for @nx/react/plugin/storybook with stories containing SVGs - [#23210](https://github.com/storybookjs/storybook/pull/23210), thanks [@daves28](https://github.com/daves28)!
Expand Down
20 changes: 10 additions & 10 deletions code/addons/a11y/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-a11y",
"version": "7.1.0-beta.2",
"version": "7.1.0-beta.3",
"description": "Test component compliance with web accessibility standards",
"keywords": [
"a11y",
Expand Down Expand Up @@ -63,16 +63,16 @@
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@storybook/addon-highlight": "7.1.0-beta.2",
"@storybook/channels": "7.1.0-beta.2",
"@storybook/client-logger": "7.1.0-beta.2",
"@storybook/components": "7.1.0-beta.2",
"@storybook/core-events": "7.1.0-beta.2",
"@storybook/addon-highlight": "7.1.0-beta.3",
"@storybook/channels": "7.1.0-beta.3",
"@storybook/client-logger": "7.1.0-beta.3",
"@storybook/components": "7.1.0-beta.3",
"@storybook/core-events": "7.1.0-beta.3",
"@storybook/global": "^5.0.0",
"@storybook/manager-api": "7.1.0-beta.2",
"@storybook/preview-api": "7.1.0-beta.2",
"@storybook/theming": "7.1.0-beta.2",
"@storybook/types": "7.1.0-beta.2",
"@storybook/manager-api": "7.1.0-beta.3",
"@storybook/preview-api": "7.1.0-beta.3",
"@storybook/theming": "7.1.0-beta.3",
"@storybook/types": "7.1.0-beta.3",
"axe-core": "^4.2.0",
"lodash": "^4.17.21",
"react-resize-detector": "^7.1.2"
Expand Down
16 changes: 8 additions & 8 deletions code/addons/actions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-actions",
"version": "7.1.0-beta.2",
"version": "7.1.0-beta.3",
"description": "Get UI feedback when an action is performed on an interactive element",
"keywords": [
"storybook",
Expand Down Expand Up @@ -80,14 +80,14 @@
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@storybook/client-logger": "7.1.0-beta.2",
"@storybook/components": "7.1.0-beta.2",
"@storybook/core-events": "7.1.0-beta.2",
"@storybook/client-logger": "7.1.0-beta.3",
"@storybook/components": "7.1.0-beta.3",
"@storybook/core-events": "7.1.0-beta.3",
"@storybook/global": "^5.0.0",
"@storybook/manager-api": "7.1.0-beta.2",
"@storybook/preview-api": "7.1.0-beta.2",
"@storybook/theming": "7.1.0-beta.2",
"@storybook/types": "7.1.0-beta.2",
"@storybook/manager-api": "7.1.0-beta.3",
"@storybook/preview-api": "7.1.0-beta.3",
"@storybook/theming": "7.1.0-beta.3",
"@storybook/types": "7.1.0-beta.3",
"dequal": "^2.0.2",
"lodash": "^4.17.21",
"polished": "^4.2.2",
Expand Down
16 changes: 8 additions & 8 deletions code/addons/backgrounds/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-backgrounds",
"version": "7.1.0-beta.2",
"version": "7.1.0-beta.3",
"description": "Switch backgrounds to view components in different settings",
"keywords": [
"addon",
Expand Down Expand Up @@ -76,14 +76,14 @@
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@storybook/client-logger": "7.1.0-beta.2",
"@storybook/components": "7.1.0-beta.2",
"@storybook/core-events": "7.1.0-beta.2",
"@storybook/client-logger": "7.1.0-beta.3",
"@storybook/components": "7.1.0-beta.3",
"@storybook/core-events": "7.1.0-beta.3",
"@storybook/global": "^5.0.0",
"@storybook/manager-api": "7.1.0-beta.2",
"@storybook/preview-api": "7.1.0-beta.2",
"@storybook/theming": "7.1.0-beta.2",
"@storybook/types": "7.1.0-beta.2",
"@storybook/manager-api": "7.1.0-beta.3",
"@storybook/preview-api": "7.1.0-beta.3",
"@storybook/theming": "7.1.0-beta.3",
"@storybook/types": "7.1.0-beta.3",
"memoizerific": "^1.11.3",
"ts-dedent": "^2.0.0"
},
Expand Down
20 changes: 10 additions & 10 deletions code/addons/controls/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-controls",
"version": "7.1.0-beta.2",
"version": "7.1.0-beta.3",
"description": "Interact with component inputs dynamically in the Storybook UI",
"keywords": [
"addon",
Expand Down Expand Up @@ -68,15 +68,15 @@
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@storybook/blocks": "7.1.0-beta.2",
"@storybook/client-logger": "7.1.0-beta.2",
"@storybook/components": "7.1.0-beta.2",
"@storybook/core-common": "7.1.0-beta.2",
"@storybook/manager-api": "7.1.0-beta.2",
"@storybook/node-logger": "7.1.0-beta.2",
"@storybook/preview-api": "7.1.0-beta.2",
"@storybook/theming": "7.1.0-beta.2",
"@storybook/types": "7.1.0-beta.2",
"@storybook/blocks": "7.1.0-beta.3",
"@storybook/client-logger": "7.1.0-beta.3",
"@storybook/components": "7.1.0-beta.3",
"@storybook/core-common": "7.1.0-beta.3",
"@storybook/manager-api": "7.1.0-beta.3",
"@storybook/node-logger": "7.1.0-beta.3",
"@storybook/preview-api": "7.1.0-beta.3",
"@storybook/theming": "7.1.0-beta.3",
"@storybook/types": "7.1.0-beta.3",
"lodash": "^4.17.21",
"ts-dedent": "^2.0.0"
},
Expand Down
24 changes: 12 additions & 12 deletions code/addons/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-docs",
"version": "7.1.0-beta.2",
"version": "7.1.0-beta.3",
"description": "Document component usage and properties in Markdown",
"keywords": [
"addon",
Expand Down Expand Up @@ -99,19 +99,19 @@
"dependencies": {
"@jest/transform": "^29.3.1",
"@mdx-js/react": "^2.1.5",
"@storybook/blocks": "7.1.0-beta.2",
"@storybook/client-logger": "7.1.0-beta.2",
"@storybook/components": "7.1.0-beta.2",
"@storybook/csf-plugin": "7.1.0-beta.2",
"@storybook/csf-tools": "7.1.0-beta.2",
"@storybook/blocks": "7.1.0-beta.3",
"@storybook/client-logger": "7.1.0-beta.3",
"@storybook/components": "7.1.0-beta.3",
"@storybook/csf-plugin": "7.1.0-beta.3",
"@storybook/csf-tools": "7.1.0-beta.3",
"@storybook/global": "^5.0.0",
"@storybook/mdx2-csf": "^1.0.0",
"@storybook/node-logger": "7.1.0-beta.2",
"@storybook/postinstall": "7.1.0-beta.2",
"@storybook/preview-api": "7.1.0-beta.2",
"@storybook/react-dom-shim": "7.1.0-beta.2",
"@storybook/theming": "7.1.0-beta.2",
"@storybook/types": "7.1.0-beta.2",
"@storybook/node-logger": "7.1.0-beta.3",
"@storybook/postinstall": "7.1.0-beta.3",
"@storybook/preview-api": "7.1.0-beta.3",
"@storybook/react-dom-shim": "7.1.0-beta.3",
"@storybook/theming": "7.1.0-beta.3",
"@storybook/types": "7.1.0-beta.3",
"fs-extra": "^11.1.0",
"remark-external-links": "^8.0.0",
"remark-slug": "^6.0.0",
Expand Down
30 changes: 15 additions & 15 deletions code/addons/essentials/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-essentials",
"version": "7.1.0-beta.2",
"version": "7.1.0-beta.3",
"description": "Curated addons to bring out the best of Storybook",
"keywords": [
"addon",
Expand Down Expand Up @@ -119,23 +119,23 @@
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@storybook/addon-actions": "7.1.0-beta.2",
"@storybook/addon-backgrounds": "7.1.0-beta.2",
"@storybook/addon-controls": "7.1.0-beta.2",
"@storybook/addon-docs": "7.1.0-beta.2",
"@storybook/addon-highlight": "7.1.0-beta.2",
"@storybook/addon-measure": "7.1.0-beta.2",
"@storybook/addon-outline": "7.1.0-beta.2",
"@storybook/addon-toolbars": "7.1.0-beta.2",
"@storybook/addon-viewport": "7.1.0-beta.2",
"@storybook/core-common": "7.1.0-beta.2",
"@storybook/manager-api": "7.1.0-beta.2",
"@storybook/node-logger": "7.1.0-beta.2",
"@storybook/preview-api": "7.1.0-beta.2",
"@storybook/addon-actions": "7.1.0-beta.3",
"@storybook/addon-backgrounds": "7.1.0-beta.3",
"@storybook/addon-controls": "7.1.0-beta.3",
"@storybook/addon-docs": "7.1.0-beta.3",
"@storybook/addon-highlight": "7.1.0-beta.3",
"@storybook/addon-measure": "7.1.0-beta.3",
"@storybook/addon-outline": "7.1.0-beta.3",
"@storybook/addon-toolbars": "7.1.0-beta.3",
"@storybook/addon-viewport": "7.1.0-beta.3",
"@storybook/core-common": "7.1.0-beta.3",
"@storybook/manager-api": "7.1.0-beta.3",
"@storybook/node-logger": "7.1.0-beta.3",
"@storybook/preview-api": "7.1.0-beta.3",
"ts-dedent": "^2.0.0"
},
"devDependencies": {
"@storybook/vue": "7.1.0-beta.2",
"@storybook/vue": "7.1.0-beta.3",
"typescript": "^4.9.3"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions code/addons/gfm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-mdx-gfm",
"version": "7.1.0-beta.2",
"version": "7.1.0-beta.3",
"description": "GitHub Flavored Markdown in Storybook",
"keywords": [
"addon",
Expand Down Expand Up @@ -51,7 +51,7 @@
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@storybook/node-logger": "7.1.0-beta.2",
"@storybook/node-logger": "7.1.0-beta.3",
"remark-gfm": "^3.0.1",
"ts-dedent": "^2.0.0"
},
Expand Down
6 changes: 3 additions & 3 deletions code/addons/highlight/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storybook/addon-highlight",
"version": "7.1.0-beta.2",
"version": "7.1.0-beta.3",
"description": "Highlight DOM nodes within your stories",
"keywords": [
"storybook-addons",
Expand Down Expand Up @@ -61,9 +61,9 @@
"prep": "../../../scripts/prepare/bundle.ts"
},
"dependencies": {
"@storybook/core-events": "7.1.0-beta.2",
"@storybook/core-events": "7.1.0-beta.3",
"@storybook/global": "^5.0.0",
"@storybook/preview-api": "7.1.0-beta.2"
"@storybook/preview-api": "7.1.0-beta.3"
},
"devDependencies": {
"@types/webpack-env": "^1.16.0",
Expand Down
Loading

0 comments on commit 9947c95

Please sign in to comment.