nextjs-blog-starter
                                
                                 nextjs-blog-starter copied to clipboard
                                
                                    nextjs-blog-starter copied to clipboard
                            
                            
                            
                        Bump markdown-to-jsx, @storybook/addon-essentials and @storybook/blocks
Bumps markdown-to-jsx to 7.5.0 and updates ancestor dependencies markdown-to-jsx, @storybook/addon-essentials and @storybook/blocks. These dependencies need to be updated together.
Updates markdown-to-jsx from 7.3.2 to 7.5.0
Release notes
Sourced from markdown-to-jsx's releases.
v7.5.0
Minor Changes
62a16f3: Allow modifying HTML attribute sanitization when
options.sanitizeris passed by the composer.By default a lightweight URL sanitizer function is provided to avoid common attack vectors that might be placed into the
hrefof an anchor tag, for example. The sanitizer receives the input, the HTML tag being targeted, and the attribute name. The original function is available as a library export calledsanitizer.This can be overridden and replaced with a custom sanitizer if desired via
options.sanitizer:// sanitizer in this situation would receive: // ('javascript:alert("foo")', 'a', 'href')<Markdown options={{ sanitizer: (value, tag, attribute) => value }}> {
[foo](https://github.com/quantizor/markdown-to-jsx/blob/HEAD/javascript:alert("foo"))} </Markdown>// or
compiler('foo', { sanitizer: (value, tag, attribute) => value, })
Patch Changes
- 553a175: Replace RuleType enum with an object
v7.4.7
Patch Changes
- 7603248: Fix parsing isolation of individual table cells.
- f9328cc: Improved block html detection regex to handle certain edge cases that cause extreme slowness. Thank you
@devbrains-comfor the basis for this fix 🤝v7.4.6
Patch Changes
a9e5276: Browsers assign element with
idto the global scope using the value as the variable name. E.g.:<h1 id="analytics">can be referenced viawindow.analytics. This can be a problem when a name conflict happens. For instance, pages that expectanalytics.push()to be a function will stop working if the an element with anidofanalyticsexists in the page.In this change, we export the
slugifyfunction so that users can easily augment it. This can be used to avoid variable name conflicts by giving the element a differentid.import { slugify } from 'markdown-to-jsx';options={{ slugify: str => { let result = slugify(str)
... (truncated)
Changelog
Sourced from markdown-to-jsx's changelog.
7.5.0
Minor Changes
62a16f3: Allow modifying HTML attribute sanitization when
options.sanitizeris passed by the composer.By default a lightweight URL sanitizer function is provided to avoid common attack vectors that might be placed into the
hrefof an anchor tag, for example. The sanitizer receives the input, the HTML tag being targeted, and the attribute name. The original function is available as a library export calledsanitizer.This can be overridden and replaced with a custom sanitizer if desired via
options.sanitizer:// sanitizer in this situation would receive: // ('javascript:alert("foo")', 'a', 'href');<Markdown options={{ sanitizer: (value, tag, attribute) => value }}> {
[foo](https://github.com/quantizor/markdown-to-jsx/blob/main/javascript:alert("foo"))} </Markdown>// or
compiler('foo', { sanitizer: (value, tag, attribute) => value, })
Patch Changes
- 553a175: Replace RuleType enum with an object
7.4.7
Patch Changes
- 7603248: Fix parsing isolation of individual table cells.
- f9328cc: Improved block html detection regex to handle certain edge cases that cause extreme slowness. Thank you
@devbrains-comfor the basis for this fix 🤝7.4.6
Patch Changes
a9e5276: Browsers assign element with
idto the global scope using the value as the variable name. E.g.:<h1 id="analytics">can be referenced viawindow.analytics. This can be a problem when a name conflict happens. For instance, pages that expectanalytics.push()to be a function will stop working if the an element with anidofanalyticsexists in the page.In this change, we export the
slugifyfunction so that users can easily augment it. This can be used to avoid variable name conflicts by giving the element a differentid.import { slugify } from 'markdown-to-jsx';options={{
... (truncated)
Commits
- 3a04b9eVersion Packages (#600)
- 62a16f3feat: allow composer to adjust sanitization (#564) (#579)
- 553a175refactor: replace RuleType enum with a const (#539) (#594)
- acd970dVersion Packages (#571)
- a502174fix: handle incomplete table-like syntax better
- 7603248fix: table cell parsing isolation
- f9328ccfix: adjusted block html regex to avoid perf issues
- dcc457echore: revert prettier
- ede3cd8Version Packages (#567)
- a9e5276Export- slugifyfunction (#566)
- Additional commits viewable in compare view
Updates @storybook/addon-essentials from 8.0.4 to 8.3.5
Release notes
Sourced from @storybook/addon-essentials's releases.
v8.3.5
8.3.5
- CLI: Update the React Native init to include v8 dependencies - #29273, thanks
@dannyhw!- Vitest plugin: Fix renamed export stories - #29250, thanks
@shilman!v8.3.4
8.3.4
- Addon Test: Support story name as test description - #29147, thanks
@InfiniteXyy!- Addon-Interactions: Use ansi-to-html for colored test errors - #29110, thanks
@kasperpeulen!v8.3.3
8.3.3
- CLI: Show constraints in error when getting depndencies - #29187, thanks
@andrasczeh!- React-Vite: Downgrade react-docgen-typescript plugin - #29184, thanks
@shilman!- UI: Fix composed storybook TooltipLinkList bug where href isn't passed forward - #29175, thanks
@JSMike!v8.3.2
8.3.2
- CLI: Fix skip-install for stable latest releases - #29133, thanks
@valentinpalkovic!- Core: Do not add packageManager field to package.json during
storybook dev- #29152, thanks@valentinpalkovic!v8.3.1
8.3.1
- Angular: Fix sourceDecorator to apply excludeDecorators flag - #29069, thanks
@JSMike!- Core: Do not prebundle better-opn - #29137, thanks
@valentinpalkovic!- Core: Do not prebundle jsdoc-type-pratt-parser - #29134, thanks
@valentinpalkovic!- Next.js: Upgrade sass-loader from ^12 to ^13 - #29040, thanks
@HoncharenkoZhenya!v8.3.0
8.3.0
Fresh out of the oven! Storybook 8.3 brings you:
- ⚡️ First-class Vitest integration to run stories as component tests
- 🔼 Next.js-Vite framework for Vitest compatibility and better DX
- 🗜️ Further reduced bundle size for a smaller install footprint
- 🌐 Experimental Story globals to standardize stories for themes, viewports, and locales
- 💯 Hundreds more improvements
- Addon Test: Improve messages and post install script handling - #29036, thanks
@yannbf!- Addon Viewport: Add default options via parameters - #28944, thanks
@ndelangen!- Addon Test: Add experimental vitest integration - #28768, thanks
@kasperpeulen!
... (truncated)
Changelog
Sourced from @storybook/addon-essentials's changelog.
8.3.5
- CLI: Update the React Native init to include v8 dependencies - #29273, thanks
@dannyhw!- Vitest plugin: Fix renamed export stories - #29250, thanks
@shilman!8.3.4
- Addon Test: Support story name as test description - #29147, thanks
@InfiniteXyy!- Addon-Interactions: Use ansi-to-html for colored test errors - #29110, thanks
@kasperpeulen!8.3.3
- CLI: Show constraints in error when getting depndencies - #29187, thanks
@andrasczeh!- React-Vite: Downgrade react-docgen-typescript plugin - #29184, thanks
@shilman!- UI: Fix composed storybook TooltipLinkList bug where href isn't passed forward - #29175, thanks
@JSMike!8.3.2
- CLI: Fix skip-install for stable latest releases - #29133, thanks
@valentinpalkovic!- Core: Do not add packageManager field to package.json during
storybook dev- #29152, thanks@valentinpalkovic!8.3.1
- Angular: Fix sourceDecorator to apply excludeDecorators flag - #29069, thanks
@JSMike!- Core: Do not prebundle better-opn - #29137, thanks
@valentinpalkovic!- Core: Do not prebundle jsdoc-type-pratt-parser - #29134, thanks
@valentinpalkovic!- Next.js: Upgrade sass-loader from ^12 to ^13 - #29040, thanks
@HoncharenkoZhenya!8.3.0
Fresh out of the oven! Storybook 8.3 brings you:
- ⚡️ First-class Vitest integration to run stories as component tests
- 🔼 Next.js-Vite framework for Vitest compatibility and better DX
- 🗜️ Further reduced bundle size for a smaller install footprint
- 🌐 Experimental Story globals to standardize stories for themes, viewports, and locales
- 💯 Hundreds more improvements
- Addon Test: Improve messages and post install script handling - #29036, thanks
@yannbf!- Addon Viewport: Add default options via parameters - #28944, thanks
@ndelangen!- Addon Test: Add experimental vitest integration - #28768, thanks
@kasperpeulen!- Addon Test: Fix error message logic in set up file - #28906, thanks
@yannbf!- Addon Test: Fix indentation of 'vitePluginNext' in generated Vitest config file - #29011, thanks
@ghengeveld!- Addon Test: Fix postinstall file types - #28978, thanks
@shilman!- Addon Test: Fix tests potentially not existing in non-isolate mode - #28993, thanks
@yannbf!- Addon Test: Improve transformation logic to avoid duplicate tests - #28929, thanks
@yannbf!- Addon Test: Set default viewport if applicable - #28905, thanks
@yannbf!
... (truncated)
Commits
- b9c7f90Bump version from "8.3.4" to "8.3.5" [skip ci]
- 20ab887Bump version from "8.3.3" to "8.3.4" [skip ci]
- e159e49Bump version from "8.3.2" to "8.3.3" [skip ci]
- ee03ab0Bump version from "8.3.1" to "8.3.2" [skip ci]
- 43accbcBump version from "8.3.0" to "8.3.1" [skip ci]
- 7e94ba6Bump version from "8.3.0-beta.5" to "8.3.0" [skip ci]
- bce7d70Bump version from "8.3.0-beta.4" to "8.3.0-beta.5" [skip ci]
- cce24a0Bump version from "8.3.0-beta.3" to "8.3.0-beta.4" [skip ci]
- daf6159Bump version from "8.3.0-beta.2" to "8.3.0-beta.3" [skip ci]
- 00c1524Bump version from "8.3.0-beta.1" to "8.3.0-beta.2" [skip ci]
- Additional commits viewable in compare view
Updates @storybook/blocks from 8.0.4 to 8.3.5
Release notes
Sourced from @storybook/blocks's releases.
v8.3.5
8.3.5
- CLI: Update the React Native init to include v8 dependencies - #29273, thanks
@dannyhw!- Vitest plugin: Fix renamed export stories - #29250, thanks
@shilman!v8.3.4
8.3.4
- Addon Test: Support story name as test description - #29147, thanks
@InfiniteXyy!- Addon-Interactions: Use ansi-to-html for colored test errors - #29110, thanks
@kasperpeulen!v8.3.3
8.3.3
- CLI: Show constraints in error when getting depndencies - #29187, thanks
@andrasczeh!- React-Vite: Downgrade react-docgen-typescript plugin - #29184, thanks
@shilman!- UI: Fix composed storybook TooltipLinkList bug where href isn't passed forward - #29175, thanks
@JSMike!v8.3.2
8.3.2
- CLI: Fix skip-install for stable latest releases - #29133, thanks
@valentinpalkovic!- Core: Do not add packageManager field to package.json during
storybook dev- #29152, thanks@valentinpalkovic!v8.3.1
8.3.1
- Angular: Fix sourceDecorator to apply excludeDecorators flag - #29069, thanks
@JSMike!- Core: Do not prebundle better-opn - #29137, thanks
@valentinpalkovic!- Core: Do not prebundle jsdoc-type-pratt-parser - #29134, thanks
@valentinpalkovic!- Next.js: Upgrade sass-loader from ^12 to ^13 - #29040, thanks
@HoncharenkoZhenya!v8.3.0
8.3.0
Fresh out of the oven! Storybook 8.3 brings you:
- ⚡️ First-class Vitest integration to run stories as component tests
- 🔼 Next.js-Vite framework for Vitest compatibility and better DX
- 🗜️ Further reduced bundle size for a smaller install footprint
- 🌐 Experimental Story globals to standardize stories for themes, viewports, and locales
- 💯 Hundreds more improvements
- Addon Test: Improve messages and post install script handling - #29036, thanks
@yannbf!- Addon Viewport: Add default options via parameters - #28944, thanks
@ndelangen!- Addon Test: Add experimental vitest integration - #28768, thanks
@kasperpeulen!
... (truncated)
Changelog
Sourced from @storybook/blocks's changelog.
8.3.5
- CLI: Update the React Native init to include v8 dependencies - #29273, thanks
@dannyhw!- Vitest plugin: Fix renamed export stories - #29250, thanks
@shilman!8.3.4
- Addon Test: Support story name as test description - #29147, thanks
@InfiniteXyy!- Addon-Interactions: Use ansi-to-html for colored test errors - #29110, thanks
@kasperpeulen!8.3.3
- CLI: Show constraints in error when getting depndencies - #29187, thanks
@andrasczeh!- React-Vite: Downgrade react-docgen-typescript plugin - #29184, thanks
@shilman!- UI: Fix composed storybook TooltipLinkList bug where href isn't passed forward - #29175, thanks
@JSMike!8.3.2
- CLI: Fix skip-install for stable latest releases - #29133, thanks
@valentinpalkovic!- Core: Do not add packageManager field to package.json during
storybook dev- #29152, thanks@valentinpalkovic!8.3.1
- Angular: Fix sourceDecorator to apply excludeDecorators flag - #29069, thanks
@JSMike!- Core: Do not prebundle better-opn - #29137, thanks
@valentinpalkovic!- Core: Do not prebundle jsdoc-type-pratt-parser - #29134, thanks
@valentinpalkovic!- Next.js: Upgrade sass-loader from ^12 to ^13 - #29040, thanks
@HoncharenkoZhenya!8.3.0
Fresh out of the oven! Storybook 8.3 brings you:
- ⚡️ First-class Vitest integration to run stories as component tests
- 🔼 Next.js-Vite framework for Vitest compatibility and better DX
- 🗜️ Further reduced bundle size for a smaller install footprint
- 🌐 Experimental Story globals to standardize stories for themes, viewports, and locales
- 💯 Hundreds more improvements
- Addon Test: Improve messages and post install script handling - #29036, thanks
@yannbf!- Addon Viewport: Add default options via parameters - #28944, thanks
@ndelangen!- Addon Test: Add experimental vitest integration - #28768, thanks
@kasperpeulen!- Addon Test: Fix error message logic in set up file - #28906, thanks
@yannbf!- Addon Test: Fix indentation of 'vitePluginNext' in generated Vitest config file - #29011, thanks
@ghengeveld!- Addon Test: Fix postinstall file types - #28978, thanks
@shilman!- Addon Test: Fix tests potentially not existing in non-isolate mode - #28993, thanks
@yannbf!- Addon Test: Improve transformation logic to avoid duplicate tests - #28929, thanks
@yannbf!- Addon Test: Set default viewport if applicable - #28905, thanks
@yannbf!
... (truncated)
Commits
- b9c7f90Bump version from "8.3.4" to "8.3.5" [skip ci]
- 20ab887Bump version from "8.3.3" to "8.3.4" [skip ci]
- e159e49Bump version from "8.3.2" to "8.3.3" [skip ci]
- ee03ab0Bump version from "8.3.1" to "8.3.2" [skip ci]
- 43accbcBump version from "8.3.0" to "8.3.1" [skip ci]
- 7e94ba6Bump version from "8.3.0-beta.5" to "8.3.0" [skip ci]
- bce7d70Bump version from "8.3.0-beta.4" to "8.3.0-beta.5" [skip ci]
- cce24a0Bump version from "8.3.0-beta.3" to "8.3.0-beta.4" [skip ci]
- daf6159Bump version from "8.3.0-beta.2" to "8.3.0-beta.3" [skip ci]
- 00c1524Bump version from "8.3.0-beta.1" to "8.3.0-beta.2" [skip ci]
- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- @dependabot rebasewill rebase this PR
- @dependabot recreatewill recreate this PR, overwriting any edits that have been made to it
- @dependabot mergewill merge this PR after your CI passes on it
- @dependabot squash and mergewill squash and merge this PR after your CI passes on it
- @dependabot cancel mergewill cancel a previously requested merge and block automerging
- @dependabot reopenwill reopen this PR if it is closed
- @dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- @dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency
- @dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- @dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- @dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.