onerepo
onerepo copied to clipboard
chore(deps-dev): bump the docs group with 2 updates
Bumps the docs group with 2 updates: @astrojs/markdown-remark and @astrojs/mdx.
Updates @astrojs/markdown-remark from 6.2.0 to 6.3.1
Release notes
Sourced from @astrojs/markdown-remark's releases.
@astrojs/markdown-remark@6.3.0Minor Changes
#13352
cb886dcThanks@delucis! - Adds support for a newexperimental.headingIdCompatflagBy default, Astro removes a trailing
-from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors.You can now disable this behavior with a new configuration flag:
// astro.config.mjs import { defineConfig } from 'astro/config';export default defineConfig({ experimental: { headingIdCompat: true, }, });
This can be useful when heading IDs and anchor links need to behave consistently across your site and other platforms such as GitHub and npm.
If you are using the
rehypeHeadingIdsplugin directly, you can also pass this new option:// astro.config.mjs import { defineConfig } from 'astro/config'; import { rehypeHeadingIds } from '@astrojs/markdown-remark'; import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';export default defineConfig({ markdown: { rehypePlugins: [ [rehypeHeadingIds, { experimentalHeadingIdCompat: true }], otherPluginThatReliesOnHeadingIDs, ], }, });
#13311
a3327ffThanks@chrisirhc! - Adds a new configuration option for Markdown syntax highlightingexcludeLangsThis option provides better support for diagramming tools that rely on Markdown code blocks, such as Mermaid.js and D2 by allowing you to exclude specific languages from Astro's default syntax highlighting.
This option allows you to avoid rendering conflicts with tools that depend on the code not being highlighted without forcing you to disable syntax highlighting for other code blocks.
The following example configuration will exclude highlighting for
mermaidandmathcode blocks:
... (truncated)
Changelog
Sourced from @astrojs/markdown-remark's changelog.
6.3.1
Patch Changes
- #13448
91c9503Thanks@ematipico! - Upgrade to shiki v36.3.0
Minor Changes
#13352
cb886dcThanks@delucis! - Adds support for a newexperimental.headingIdCompatflagBy default, Astro removes a trailing
-from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors.You can now disable this behavior with a new configuration flag:
// astro.config.mjs import { defineConfig } from 'astro/config';export default defineConfig({ experimental: { headingIdCompat: true, }, });
This can be useful when heading IDs and anchor links need to behave consistently across your site and other platforms such as GitHub and npm.
If you are using the
rehypeHeadingIdsplugin directly, you can also pass this new option:// astro.config.mjs import { defineConfig } from 'astro/config'; import { rehypeHeadingIds } from '@astrojs/markdown-remark'; import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';export default defineConfig({ markdown: { rehypePlugins: [ [rehypeHeadingIds, { experimentalHeadingIdCompat: true }], otherPluginThatReliesOnHeadingIDs, ], }, });
#13311
a3327ffThanks@chrisirhc! - Adds a new configuration option for Markdown syntax highlightingexcludeLangs
... (truncated)
Commits
- See full diff in compare view
Updates @astrojs/mdx from 4.1.0 to 4.2.3
Release notes
Sourced from @astrojs/mdx's releases.
@astrojs/mdx@4.2.3Patch Changes
- #13526
ff9d69eThanks@jsparkdev! - updateviteto the latest version
@astrojs/mdx@4.2.2Patch Changes
- #13505
a98ae5bThanks@ematipico! - Updates the dependencyviteto the latest.
@astrojs/mdx@4.2.0Minor Changes
#13352
cb886dcThanks@delucis! - Adds support for a newexperimental.headingIdCompatflagBy default, Astro removes a trailing
-from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors.You can now disable this behavior with a new configuration flag:
// astro.config.mjs import { defineConfig } from 'astro/config';export default defineConfig({ experimental: { headingIdCompat: true, }, });
This can be useful when heading IDs and anchor links need to behave consistently across your site and other platforms such as GitHub and npm.
If you are using the
rehypeHeadingIdsplugin directly, you can also pass this new option:// astro.config.mjs import { defineConfig } from 'astro/config'; import { rehypeHeadingIds } from '@astrojs/markdown-remark'; import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';export default defineConfig({ markdown: { rehypePlugins: [ [rehypeHeadingIds, { experimentalHeadingIdCompat: true }], otherPluginThatReliesOnHeadingIDs, ], }, });
... (truncated)
Changelog
Sourced from @astrojs/mdx's changelog.
4.2.3
Patch Changes
- #13526
ff9d69eThanks@jsparkdev! - updateviteto the latest version4.2.2
Patch Changes
- #13505
a98ae5bThanks@ematipico! - Updates the dependencyviteto the latest.4.2.1
Patch Changes
#13448
91c9503Thanks@ematipico! - Upgrade to shiki v3Updated dependencies [
91c9503]:
@astrojs/markdown-remark@6.3.14.2.0
Minor Changes
#13352
cb886dcThanks@delucis! - Adds support for a newexperimental.headingIdCompatflagBy default, Astro removes a trailing
-from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors.You can now disable this behavior with a new configuration flag:
// astro.config.mjs import { defineConfig } from 'astro/config';export default defineConfig({ experimental: { headingIdCompat: true, }, });
This can be useful when heading IDs and anchor links need to behave consistently across your site and other platforms such as GitHub and npm.
If you are using the
rehypeHeadingIdsplugin directly, you can also pass this new option:// astro.config.mjs
... (truncated)
Commits
ddc98eb[ci] release (#13513)ff9d69efix: updateviteto latest version (#13526)a5061d6fix(deps): update astro dependencies (#13498)b33cc17[ci] release (#13504)a98ae5bfix: update vite (#13505)da71558[ci] release (#13449)91c9503Revert "[ci] release (#13427)" (#13448)c64ae01[ci] release (#13427)0f74b2achore(deps): update dependency rehype-mathjax to v7 (#13260)ea74336chore(deps): update shiki to v3 (#13324)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Deploy Preview for onerepo failed.
| Name | Link |
|---|---|
| Latest commit | e864beff0d0248673d2d0f53aee75f6db7fa8408 |
| Latest deploy log | https://app.netlify.com/projects/onerepo/deploys/6834f305511a340008dac821 |
@dependabot recreate
Looks like these dependencies are updatable in another way, so this is no longer needed.