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

chore(deps): update astro monorepo #1294

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 3, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/rss (source) 4.0.5 -> 4.0.9 age adoption passing confidence
@astrojs/sitemap (source) 3.1.1 -> 3.2.1 age adoption passing confidence
@astrojs/tailwind (source) 5.1.0 -> 5.1.2 age adoption passing confidence
@astrojs/vue (source) 4.0.8 -> 4.5.2 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/rss)

v4.0.9

Compare Source

Patch Changes

v4.0.8

Compare Source

Patch Changes

v4.0.7

Compare Source

Patch Changes

v4.0.6

Compare Source

Patch Changes
withastro/astro (@​astrojs/sitemap)

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes

v3.1.6

Compare Source

Patch Changes

v3.1.5

Compare Source

Patch Changes

v3.1.4

Compare Source

Patch Changes

v3.1.3

Compare Source

Patch Changes

v3.1.2

Compare Source

Patch Changes
withastro/astro (@​astrojs/tailwind)

v5.1.2

Compare Source

Patch Changes

v5.1.1

Compare Source

Patch Changes
withastro/astro (@​astrojs/vue)

v4.5.2

Compare Source

Patch Changes

v4.5.1

Compare Source

Patch Changes

v4.5.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);
    };

v4.4.0

Compare Source

Minor Changes
  • #​11144 803dd80 Thanks @​ematipico! - The integration now exposes a function called getContainerRenderer, that can be used inside the Container APIs to load the relative renderer.

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import ReactWrapper from '../src/components/ReactWrapper.astro';
    import { loadRenderers } from 'astro:container';
    import { getContainerRenderer } from '@​astrojs/react';
    
    test('ReactWrapper with react renderer', async () => {
      const renderers = await loadRenderers([getContainerRenderer()]);
      const container = await AstroContainer.create({
        renderers,
      });
      const result = await container.renderToString(ReactWrapper);
    
      expect(result).toContain('Counter');
      expect(result).toContain('Count: <!-- -->5');
    });

v4.3.0

Compare Source

Minor Changes
  • #​11055 b92de22 Thanks @​niklas-wortmann! - Updates the devtools type to allow passing VueDevToolsOptions

    For more customization, you can pass options that the Vue DevTools Vite Plugin supports. (Note: appendTo is not supported.) For example, you can set launchEditor to your preferred editor if you are not using Visual Studio Code:

    import { defineConfig } from 'astro/config';
    import vue from '@&#8203;astrojs/vue';
    
    export default defineConfig({
      // ...
      integrations: [
        vue({
          devtools: { launchEditor: 'webstorm' },
        }),
      ],
    });

v4.2.0

Compare Source

Minor Changes
  • #​10929 082abb8 Thanks @​florian-lefebvre! - Adds a devtools option

    You can enable the official Vue DevTools while working in development mode by setting devtools:true in your vue() integration config:

    import { defineConfig } from 'astro/config';
    import vue from '@&#8203;astrojs/vue';
    
    export default defineConfig({
      integrations: [vue({ devtools: true })],
    });

v4.1.0

Compare Source

Minor Changes

v4.0.11

Compare Source

Patch Changes

v4.0.10

Compare Source

Patch Changes

v4.0.9

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - "before 5am every weekday" in timezone Europe/Madrid, Automerge - At any time (no schedule defined).

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

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.

@github-actions github-actions bot requested a review from yacosta738 May 3, 2024 01:13
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from 34c8f50 to 05ac7e9 Compare May 15, 2024 22:47
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from c4adaa4 to e594512 Compare May 23, 2024 17:14
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from e594512 to 4c8060b Compare May 27, 2024 11:38
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from 7bc5c0a to b300015 Compare June 8, 2024 10:15
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from f627025 to d216093 Compare June 17, 2024 15:10
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from e787ee6 to b20c448 Compare June 26, 2024 15:57
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from a7b1211 to 6f96ab1 Compare July 4, 2024 01:01
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from 61a40d9 to c7350c0 Compare July 21, 2024 11:35
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from c7350c0 to 1085667 Compare July 30, 2024 16:54
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 7feea5a to ac744a7 Compare August 22, 2024 21:57
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from d55c02c to 9663175 Compare September 2, 2024 12:31
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 25767c1 to 07bfd47 Compare September 6, 2024 19:44
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 4 times, most recently from 5318c3d to 851cbe8 Compare September 19, 2024 14:02
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from c1816a3 to 804dc6a Compare October 7, 2024 13:49
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 9 times, most recently from ec098f3 to 9aae2d5 Compare October 15, 2024 08:11
Copy link

sonarcloud bot commented Oct 15, 2024

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