Astro: @astrojs/[email protected] Release

Release date:
July 26, 2022
Previous version:
@astrojs/[email protected] (released July 26, 2022)
Magnitude:
0 Diff Delta
Contributors:
0 total committers
Data confidence:
Commits:

Top Contributors in @astrojs/[email protected]

Could not determine top contributors for this release.

Directory Browser for @astrojs/[email protected]

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • #4016 00fab4ce1 Thanks @bholmesdev! - The use of components and JSX expressions in Markdown are no longer supported by default.

    For long term support, migrate to the @astrojs/mdx integration for MDX support (including .mdx pages!).

    Not ready to migrate to MDX? Add the legacy flag to your Astro config to re-enable the previous Markdown support.

    // https://astro.build/config
    export default defineConfig({
      legacy: {
        astroFlavoredMarkdown: true,
      },
    });
    
  • #3986 bccd88f0e Thanks @matthewp! - Move the Markdown component to its own package

    This change moves the Markdown component into its own package where it will be maintained separately. All that needs to change from a user's perspective is the import statement:

    ---
    import { Markdown } from 'astro/components';
    ---
    

    Becomes:

    ---
    import Markdown from '@astrojs/markdown-component';
    ---