Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 3, 2024

This PR contains the following updates:

Package Change Age Confidence
@astrojs/mdx (source) ^3.1.9 -> ^4.0.0 age confidence

Release Notes

withastro/astro (@​astrojs/mdx)

v4.3.12

Compare Source

Patch Changes

v4.3.11

Compare Source

Patch Changes

v4.3.10

Compare Source

Patch Changes
  • #​14715 3d55c5d Thanks @​ascorbic! - Adds support for client hydration in getContainerRenderer()

    The getContainerRenderer() function is exported by Astro framework integrations to simplify the process of rendering framework components when using the experimental Container API inside a Vite or Vitest environment. This update adds the client hydration entrypoint to the returned object, enabling client-side interactivity for components rendered using this function. Previously this required users to manually call container.addClientRenderer() with the appropriate client renderer entrypoint.

    See the container-with-vitest demo for a usage example, and the Container API documentation for more information on using framework components with the experimental Container API.

v4.3.9

Patch Changes

v4.3.8

Patch Changes
  • #​14591 3e887ec Thanks @​matthewp! - Adds TypeScript support for the components prop on MDX Content component when using await render(). Developers now get proper IntelliSense and type checking when passing custom components to override default MDX element rendering.

  • #​14598 7b45c65 Thanks @​delucis! - Reduces terminal text styling dependency size by switching from kleur to picocolors

v4.3.7

Compare Source

Patch Changes

v4.3.6

Compare Source

Patch Changes

v4.3.5

Compare Source

Patch Changes

v4.3.4

Compare Source

Patch Changes

v4.3.3

Compare Source

Patch Changes

v4.3.2

Compare Source

Patch Changes

v4.3.1

Compare Source

Patch Changes

v4.3.0

Compare Source

Minor Changes
  • #​13809 3c3b492 Thanks @​ascorbic! - Increases minimum Node.js version to 18.20.8

    Node.js 18 has now reached end-of-life and should not be used. For now, Astro will continue to support Node.js 18.20.8, which is the final LTS release of Node.js 18, as well as Node.js 20 and Node.js 22 or later. We will drop support for Node.js 18 in a future release, so we recommend upgrading to Node.js 22 as soon as possible. See Astro's Node.js support policy for more details.

    ⚠️ Important note for users of Cloudflare Pages: The current build image for Cloudflare Pages uses Node.js 18.17.1 by default, which is no longer supported by Astro. If you are using Cloudflare Pages you should override the default Node.js version to Node.js 22. This does not affect users of Cloudflare Workers, which uses Node.js 22 by default.

Patch Changes

v4.2.6

Compare Source

Patch Changes

v4.2.5

Compare Source

Patch Changes

v4.2.4

Compare Source

Patch Changes

v4.2.3

Compare Source

Patch Changes

v4.2.2

Patch Changes

v4.2.1

Patch Changes

v4.2.0

Compare Source

Minor Changes
  • #​13352 cb886dc Thanks @​delucis! - Adds support for a new experimental.headingIdCompat flag

    By 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 rehypeHeadingIds plugin 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,
        ],
      },
    });
Patch Changes

v4.1.1

Compare Source

Patch Changes

v4.1.0

Compare Source

Minor Changes
  • #​13254 1e11f5e Thanks @​p0lyw0lf! - Adds the ability to process and optimize remote images in Markdown syntax in MDX files.

    Previously, Astro only allowed local images to be optimized when included using ![]() syntax. Astro's image service could only display remote images without any processing.

    Now, Astro's image service can also optimize remote images written in standard Markdown syntax. This allows you to enjoy the benefits of Astro's image processing when your images are stored externally, for example in a CMS or digital asset manager.

    No additional configuration is required to use this feature! Any existing remote images written in Markdown will now automatically be optimized. To opt-out of this processing, write your images in Markdown using the JSX <img/> tag instead. Note that images located in your public/ folder are still never processed.

Patch Changes

v4.0.8

Compare Source

Patch Changes

v4.0.7

Compare Source

Patch Changes

v4.0.6

Compare Source

Patch Changes

v4.0.5

Compare Source

Patch Changes

v4.0.4

Compare Source

Patch Changes
  • #​12921 aeb7e1a Thanks @​ascorbic! - Fixes a bug that caused Image component to be imported on MDX pages that did not include images

  • #​12913 9a3b48c Thanks @​bluwy! - Makes internal check() function a no-op to allow faster component renders and prevent React 19 component warnings

v4.0.3

Compare Source

Patch Changes

v4.0.2

Compare Source

Patch Changes

v4.0.1

Compare Source

Patch Changes

v4.0.0

Compare Source

Major Changes
  • #​12231 90ae100 Thanks @​bluwy! - Handles the breaking change in Astro where content pages (including .mdx pages located within src/pages/) no longer respond with charset=utf-8 in the Content-Type header.

    For MDX pages without layouts, @astrojs/mdx will automatically add the <meta charset="utf-8"> tag to the page by default. This reduces the boilerplate needed to write with non-ASCII characters. If your MDX pages have a layout, the layout component should include the <meta charset="utf-8"> tag.

    If you require charset=utf-8 to render your page correctly, make sure that your layout components have the <meta charset="utf-8"> tag added.

  • #​12008 5608338 Thanks @​Princesseuh! - Welcome to the Astro 5 beta! This release has no changes from the latest alpha of this package, but it does bring us one step closer to the final, stable release.

    Starting from this release, no breaking changes will be introduced unless absolutely necessary.

    To learn how to upgrade, check out the Astro v5.0 upgrade guide in our beta docs site.

Minor Changes
  • #​12539 827093e Thanks @​bluwy! - Drops node 21 support

  • #​11741 6617491 Thanks @​bluwy! - Updates adapter server entrypoint to use @astrojs/mdx/server.js

    This is an internal change. Handling JSX in your .mdx files has been moved from Astro internals and is now the responsibility of this integration. You should not notice a change in your project, and no update to your code is required.

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot had a problem deploying to cloudflare-pages December 3, 2024 14:22 Failure
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from d585d00 to bd5c997 Compare December 26, 2024 09:01
@renovate renovate bot had a problem deploying to cloudflare-pages December 26, 2024 09:01 Failure
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from bd5c997 to 5f59392 Compare December 26, 2024 09:16
@renovate renovate bot had a problem deploying to cloudflare-pages December 26, 2024 09:16 Failure
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 5f59392 to 97b7689 Compare January 23, 2025 10:17
@renovate renovate bot had a problem deploying to cloudflare-pages January 23, 2025 10:17 Failure
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 97b7689 to d88b725 Compare January 23, 2025 11:22
@renovate renovate bot had a problem deploying to cloudflare-pages January 23, 2025 11:22 Failure
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from d88b725 to 3d957b8 Compare February 6, 2025 09:49
@renovate renovate bot had a problem deploying to cloudflare-pages February 6, 2025 09:49 Failure
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 3d957b8 to ea8792c Compare April 10, 2025 13:56
@renovate renovate bot had a problem deploying to cloudflare-pages April 10, 2025 13:56 Failure
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from ea8792c to 0766774 Compare April 10, 2025 16:40
@renovate renovate bot temporarily deployed to cloudflare-pages April 10, 2025 16:40 Inactive
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Apr 10, 2025

Deploying auth-wiki with  Cloudflare Pages  Cloudflare Pages

Latest commit: dd54ab4
Status: ✅  Deploy successful!
Preview URL: https://b8a15319.auth-wiki.pages.dev
Branch Preview URL: https://renovate-major-astro-monorep.auth-wiki.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0766774 to 0a676e2 Compare June 30, 2025 07:19
@renovate renovate bot temporarily deployed to cloudflare-pages June 30, 2025 07:19 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0a676e2 to d207a2a Compare July 21, 2025 23:44
@renovate renovate bot temporarily deployed to cloudflare-pages July 21, 2025 23:44 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from d207a2a to 0c8619f Compare July 22, 2025 22:39
@renovate renovate bot temporarily deployed to cloudflare-pages July 22, 2025 22:39 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0c8619f to ff0e956 Compare July 23, 2025 21:40
@renovate renovate bot temporarily deployed to cloudflare-pages July 23, 2025 21:40 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from ff0e956 to 0ce9af4 Compare July 28, 2025 13:56
@renovate renovate bot temporarily deployed to cloudflare-pages July 28, 2025 13:56 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0ce9af4 to e8cfdd5 Compare July 29, 2025 17:55
@renovate renovate bot temporarily deployed to cloudflare-pages July 29, 2025 17:55 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from e8cfdd5 to 46f40a7 Compare July 30, 2025 14:53
@renovate renovate bot temporarily deployed to cloudflare-pages July 30, 2025 14:53 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0c46a5b to 188e110 Compare September 24, 2025 17:34
@renovate renovate bot temporarily deployed to cloudflare-pages September 24, 2025 17:34 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 188e110 to a574ba3 Compare September 25, 2025 21:34
@renovate renovate bot temporarily deployed to cloudflare-pages September 25, 2025 21:34 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from a574ba3 to 1fd5713 Compare September 26, 2025 12:40
@renovate renovate bot temporarily deployed to cloudflare-pages September 26, 2025 12:40 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 1fd5713 to ee76769 Compare October 9, 2025 15:31
@renovate renovate bot temporarily deployed to cloudflare-pages October 9, 2025 15:43 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from ee76769 to dc454d8 Compare October 10, 2025 17:41
@renovate renovate bot temporarily deployed to cloudflare-pages October 10, 2025 17:41 Inactive
@renovate renovate bot changed the title chore(deps): update astro monorepo (major) chore(deps): update dependency @astrojs/mdx to v4 Oct 11, 2025
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from dc454d8 to d140538 Compare October 11, 2025 01:26
@renovate renovate bot temporarily deployed to cloudflare-pages October 11, 2025 01:26 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from d140538 to 4d06e11 Compare October 21, 2025 17:11
@renovate renovate bot temporarily deployed to cloudflare-pages October 21, 2025 17:11 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 4d06e11 to 07ca760 Compare October 23, 2025 13:37
@renovate renovate bot temporarily deployed to cloudflare-pages October 23, 2025 13:37 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 07ca760 to 0eb17ca Compare October 28, 2025 16:12
@renovate renovate bot temporarily deployed to cloudflare-pages October 28, 2025 16:13 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0eb17ca to 0c14323 Compare November 6, 2025 18:01
@renovate renovate bot temporarily deployed to cloudflare-pages November 6, 2025 18:01 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0c14323 to d4610df Compare November 10, 2025 17:35
@renovate renovate bot temporarily deployed to cloudflare-pages November 10, 2025 17:35 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from d4610df to 6ec41ba Compare November 18, 2025 06:02
@renovate renovate bot temporarily deployed to cloudflare-pages November 18, 2025 06:02 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 6ec41ba to 245e84b Compare November 20, 2025 13:36
@renovate renovate bot temporarily deployed to cloudflare-pages November 20, 2025 13:36 Inactive
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 245e84b to dd54ab4 Compare December 3, 2025 18:49
@renovate renovate bot temporarily deployed to cloudflare-pages December 3, 2025 18:49 Inactive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant