Skip to content

Commit

Permalink
Merge pull request #28667 from storybookjs/version-patch-from-8.2.5
Browse files Browse the repository at this point in the history
Release: Patch 8.2.6
  • Loading branch information
vanessayuenn authored Jul 24, 2024
2 parents e3c5995 + 54db0dd commit 57c9216
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 8.2.6

- CPC: Fix missing exports for addon-kit - [#28691](https://github.com/storybookjs/storybook/pull/28691), thanks @ndelangen!

## 8.2.5

- CPC: Add the globals export for manager - [#28650](https://github.com/storybookjs/storybook/pull/28650), thanks @ndelangen!
Expand Down
1 change: 1 addition & 0 deletions code/deprecated/manager/globals.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('storybook/internal/manager/globals');
2 changes: 2 additions & 0 deletions code/deprecated/manager/globals.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from 'storybook/internal/manager/globals';
export type * from 'storybook/internal/manager/globals';
2 changes: 1 addition & 1 deletion code/deprecated/manager/globals.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('storybook/internal/manager/globals');
export * from 'storybook/internal/manager/globals';
8 changes: 8 additions & 0 deletions code/deprecated/manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
"./globals": {
"type": "./globals.d.ts",
"import": "./globals.js",
"require": "./globals.cjs"
}
},
"files": [
"README.md",
"*.js",
Expand Down
1 change: 1 addition & 0 deletions code/deprecated/preview/globals.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('storybook/internal/preview/globals');
2 changes: 2 additions & 0 deletions code/deprecated/preview/globals.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from 'storybook/internal/preview/globals';
export type * from 'storybook/internal/preview/globals';
2 changes: 1 addition & 1 deletion code/deprecated/preview/globals.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('storybook/internal/preview/globals');
export * from 'storybook/internal/preview/globals';
8 changes: 8 additions & 0 deletions code/deprecated/preview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
"./globals": {
"type": "./globals.d.ts",
"import": "./globals.js",
"require": "./globals.cjs"
}
},
"files": [
"README.md",
"*.js",
Expand Down
3 changes: 2 additions & 1 deletion code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,5 +278,6 @@
"Dependency Upgrades"
]
]
}
},
"deferredNextVersion": "8.2.6"
}
2 changes: 1 addition & 1 deletion docs/versions/latest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"8.2.5","info":{"plain":"- CPC: Add the globals export for manager - [#28650](https://github.com/storybookjs/storybook/pull/28650), thanks @ndelangen!\n- CPC: Correct path to the `@storybook/theming/create` alias - [#28643](https://github.com/storybookjs/storybook/pull/28643), thanks @Averethel!\n- Core: Fix header for MountMustBeDestructuredError message - [#28590](https://github.com/storybookjs/storybook/pull/28590), thanks @0916dhkim!\n- Telemetry: Add mount, beforeEach, moduleMock stats - [#28624](https://github.com/storybookjs/storybook/pull/28624), thanks @shilman!\n- Telemetry: CSF feature usage - [#28622](https://github.com/storybookjs/storybook/pull/28622), thanks @shilman!"}}
{"version":"8.2.6","info":{"plain":"- CPC: Fix missing exports for addon-kit - [#28691](https://github.com/storybookjs/storybook/pull/28691), thanks @ndelangen!"}}

0 comments on commit 57c9216

Please sign in to comment.