Skip to content

[deps]: Update astro monorepo (major) - autoclosed#101

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

[deps]: Update astro monorepo (major) - autoclosed#101
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-astro-monorepo

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 28, 2025

This PR contains the following updates:

Package Change Age Confidence
@astrojs/mdx (source) 4.0.35.0.4 age confidence
@astrojs/tailwind (source) 5.1.46.0.2 age confidence

Release Notes

withastro/astro (@​astrojs/mdx)

v5.0.4

Compare Source

Patch Changes

v5.0.3

Compare Source

Patch Changes

v5.0.2

Compare Source

Patch Changes

v5.0.1

Compare Source

Patch Changes

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

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.

v5.1.5

Compare Source

Patch Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every 2nd week starting on the 2 week of the year before 4am on Monday"
  • 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.

@renovate renovate Bot requested a review from a team as a code owner April 28, 2025 00:45
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch from 6f6e4d3 to c6a4def Compare August 20, 2025 00:04
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch from c6a4def to 8ffba47 Compare October 13, 2025 17:13
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch from 8ffba47 to 851aaf6 Compare October 21, 2025 19:14
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from f9692c2 to a6b9529 Compare November 14, 2025 17:41
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch from a6b9529 to 173db6a Compare November 19, 2025 23:05
@renovate renovate Bot added the major-update label Dec 3, 2025
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch from 173db6a to ce2c6fb Compare December 31, 2025 18:30
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch from ce2c6fb to f8e743a Compare February 2, 2026 15:56
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from 7a508aa to 7517a7f Compare February 17, 2026 18:05
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from 8b99f09 to ca9a8b2 Compare March 17, 2026 10:42
@renovate renovate Bot changed the title [deps]: Update @astrojs/tailwind to v6 [deps]: Update astro monorepo (major) Mar 17, 2026
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch 5 times, most recently from 9b2fdab to 65be92c Compare March 23, 2026 15:14
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch 3 times, most recently from 89fc05c to 98effbc Compare March 31, 2026 19:08
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch 4 times, most recently from d5678d3 to dda569c Compare April 8, 2026 22:02
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch 2 times, most recently from fcce245 to adafce2 Compare April 15, 2026 19:17
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch from adafce2 to f8b37d8 Compare April 20, 2026 18:07
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch 3 times, most recently from 067d141 to d2f1cb2 Compare April 27, 2026 20:36
@renovate renovate Bot force-pushed the renovate/major-astro-monorepo branch from d2f1cb2 to c21fc08 Compare April 29, 2026 17:34
@renovate renovate Bot changed the title [deps]: Update astro monorepo (major) [deps]: Update astro monorepo (major) - autoclosed May 1, 2026
@renovate renovate Bot closed this May 1, 2026
@renovate renovate Bot deleted the renovate/major-astro-monorepo branch May 1, 2026 18:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants