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

Merged
merged 1 commit into from
Oct 23, 2024
Merged

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
astro (source) 4.16.1 -> 4.16.7 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
withastro/astro (astro)

v4.16.7

Compare Source

Patch Changes

v4.16.6

Compare Source

Patch Changes
  • #​11823 a3d30a6 Thanks @​DerTimonius! - fix: improve error message when inferSize is used in local images with the Image component

  • #​12227 8b1a641 Thanks @​florian-lefebvre! - Fixes a case where environment variables would not be refreshed when using astro:env

  • #​12239 2b6daa5 Thanks @​ematipico! - BREAKING CHANGE to the experimental Container API only

    Changes the default page rendering behavior of Astro components in containers, and adds a new option partial: false to render full Astro pages as before.

    Previously, the Container API was rendering all Astro components as if they were full Astro pages containing <!DOCTYPE html> by default. This was not intended, and now by default, all components will render as page partials: only the contents of the components without a page shell.

    To render the component as a full-fledged Astro page, pass a new option called partial: false to renderToString() and renderToResponse():

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import Card from '../src/components/Card.astro';
    
    const container = AstroContainer.create();
    
    await container.renderToString(Card); // the string will not contain `<!DOCTYPE html>`
    await container.renderToString(Card, { partial: false }); // the string will contain `<!DOCTYPE html>`

v4.16.5

Compare Source

Patch Changes

v4.16.4

Compare Source

Patch Changes
  • #​12223 79ffa5d Thanks @​ArmandPhilippot! - Fixes a false positive reported by the dev toolbar Audit app where a label was considered missing when associated with a button

    The button element can be used with a label (e.g. to create a switch) and should not be reported as an accessibility issue when used as a child of a label.

  • #​12199 c351352 Thanks @​ematipico! - Fixes a regression in the computation of Astro.currentLocale

  • #​12222 fb55695 Thanks @​ematipico! - Fixes an issue where the edge middleware couldn't correctly compute the client IP address when calling ctx.clientAddress()

v4.16.3

Compare Source

Patch Changes

v4.16.2

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 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 10 times, most recently from 9aae2d5 to 84225b1 Compare October 15, 2024 19:15
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 6 times, most recently from 37a915a to 0f9e380 Compare October 22, 2024 21:23
@yacosta738 yacosta738 enabled auto-merge (squash) October 23, 2024 07:14
Copy link

sonarcloud bot commented Oct 23, 2024

@yacosta738 yacosta738 merged commit b1cd229 into main Oct 23, 2024
8 checks passed
@yacosta738 yacosta738 deleted the renovate/astro-monorepo branch October 23, 2024 07:16
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.

1 participant