Skip to content

fix(deps): update astro monorepo (major)#24

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-astro-monorepo
Open

fix(deps): update astro monorepo (major)#24
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-astro-monorepo

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.0.0^5.0.0 age confidence
@astrojs/tailwind (source) ^5.1.0^6.0.0 age confidence

Release Notes

withastro/astro (@​astrojs/mdx)

v5.0.0

Compare Source

Major Changes
Patch Changes

v4.3.14

Compare Source

Patch Changes

v4.3.13

Compare Source

Patch Changes

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
withastro/astro (@​astrojs/tailwind)

v6.0.2

Compare Source

Patch Changes

v6.0.1

Compare Source

Patch Changes

v6.0.0

Compare Source

Major Changes
  • #​13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.


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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@vercel
Copy link

vercel bot commented Dec 3, 2024

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
resume Error Error Mar 11, 2026 1:20am

@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from fd0c533 to 6afc110 Compare December 5, 2024 22:02
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 6afc110 to 7ba27c3 Compare December 18, 2024 18:24
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 7ba27c3 to d79945b Compare January 30, 2025 13:05
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from d79945b to ba4f6b6 Compare March 13, 2025 09:59
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from ba4f6b6 to 548a0a0 Compare July 21, 2025 19:58
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 548a0a0 to 3417ffe Compare July 22, 2025 22:47
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 3417ffe to c825254 Compare July 23, 2025 20:55
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from c825254 to 89e0512 Compare July 28, 2025 17:26
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 89e0512 to 2d3bad4 Compare July 29, 2025 20:32
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 2d3bad4 to ef8203d Compare July 30, 2025 19:59
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from ef8203d to 0590ee5 Compare August 1, 2025 01:31
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0590ee5 to d77cde5 Compare August 1, 2025 15:37
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from d77cde5 to 0bfd25e Compare August 8, 2025 16:53
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0bfd25e to 62cb19a Compare August 10, 2025 14:56
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 2ec69cf to 96b8347 Compare August 22, 2025 18:26
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 96b8347 to 9fd1d49 Compare August 27, 2025 10:07
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 9fd1d49 to 860caef Compare August 31, 2025 11:10
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 860caef to cb9e624 Compare September 19, 2025 15:55
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from cb9e624 to 24891dd Compare September 22, 2025 09:15
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 24891dd to 6a5ecac Compare September 24, 2025 18:42
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 6a5ecac to 82795fd Compare September 25, 2025 16:11
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 82795fd to 0a5209d Compare September 26, 2025 12:40
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 0a5209d to c024c7f Compare October 9, 2025 15:24
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from c024c7f to 9a812b9 Compare October 10, 2025 16:37
@renovate renovate bot force-pushed the renovate/major-astro-monorepo branch from 9a812b9 to 22b6768 Compare October 11, 2025 00:42
@renovate
Copy link
Contributor Author

renovate bot commented Oct 11, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: resume@0.3.6
npm error Found: astro@4.16.19
npm error node_modules/astro
npm error   astro@"^4.3.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer astro@"^6.0.0-alpha.0" from @astrojs/mdx@5.0.0
npm error node_modules/@astrojs/mdx
npm error   @astrojs/mdx@"^5.0.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-03-11T01_20_26_487Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-03-11T01_20_26_487Z-debug-0.log

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants