Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update astro monorepo #363

Merged
merged 1 commit into from
Oct 18, 2024
Merged

fix(deps): update astro monorepo #363

merged 1 commit into from
Oct 18, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 17, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/mdx (source) 3.1.0 -> 3.1.8 age adoption passing confidence
@astrojs/solid-js (source) 4.3.0 -> 4.4.2 age adoption passing confidence
@astrojs/tailwind (source) 5.1.0 -> 5.1.2 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/mdx)

v3.1.8

Compare Source

Patch Changes

v3.1.7

Compare Source

Patch Changes

v3.1.6

Compare Source

Patch Changes

v3.1.5

Compare Source

Patch Changes
  • #​11818 88ef1d0 Thanks @​bluwy! - Fixes CSS in the layout component to be ordered first before any other components in the MDX file

v3.1.4

Compare Source

Patch Changes

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes

v3.1.1

Compare Source

Patch Changes
withastro/astro (@​astrojs/solid-js)

v4.4.2

Compare Source

Patch Changes

v4.4.1

Compare Source

Patch Changes
  • #​11624 7adb350 Thanks @​bluwy! - Prevents throwing errors when checking if a component is a Solid component in runtime

v4.4.0

Compare Source

Minor Changes
  • #​11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@​astrojs/react/server.js';
    import vueRenderer from '@​astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    
    export const GET: APIRoute = async (ctx) => {
      const container = await experimental_AstroContainer.create();
      container.addServerRenderer({ renderer: reactRenderer });
      container.addServerRenderer({ renderer: vueRenderer });
      container.addServerRenderer({ renderer: customRenderer });
      // You can pass a custom name too
      container.addServerRenderer({
        name: 'customRenderer',
        renderer: customRenderer,
      });
      const vueComponent = await container.renderToString(VueComponent);
      return await container.renderToResponse(Component);
    };
withastro/astro (@​astrojs/tailwind)

v5.1.2

Compare Source

Patch Changes

v5.1.1

Compare Source

Patch Changes

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 force-pushed the renovate/astro-monorepo branch 11 times, most recently from 2da2bb6 to cbbc67a Compare June 24, 2024 18:41
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from e680a1a to 2e765a8 Compare June 26, 2024 13:45
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from f46004c to 5f0e51e Compare July 8, 2024 21:02
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 6 times, most recently from a8c92ca to 4f51b1b Compare July 19, 2024 17:15
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 2bc067a to aa08a32 Compare July 30, 2024 16:51
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from b058154 to 0e94ed0 Compare August 8, 2024 04:02
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from ced977b to c7e72d6 Compare September 6, 2024 19:33
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from c17d3c1 to dd7c878 Compare September 13, 2024 21:12
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from f71af92 to 295c5c7 Compare September 20, 2024 13:27
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 6955eed to aa7804e Compare September 27, 2024 22:01
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 6 times, most recently from 029602a to abcf3ad Compare October 8, 2024 16:31
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from 57d6513 to 30e140f Compare October 14, 2024 09:23
@renovate renovate bot merged commit 04b55be into main Oct 18, 2024
9 checks passed
@renovate renovate bot deleted the renovate/astro-monorepo branch October 18, 2024 09:40
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