Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

fix(deps): update dependency astro to v4.11.3 - autoclosed #17

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 2, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
astro (source) 4.10.2 -> 4.11.3 age adoption passing confidence

Release Notes

withastro/astro (astro)

v4.11.3

Compare Source

Patch Changes

v4.11.2

Compare Source

Patch Changes
  • #​11335 4c4741b Thanks @​ematipico! - Reverts #​11292, which caused a regression to the input type

  • #​11326 41121fb Thanks @​florian-lefebvre! - Fixes a case where running astro sync when using the experimental astro:env feature would fail if environment variables were missing

  • #​11338 9752a0b Thanks @​zaaakher! - Fixes svg icon margin in devtool tooltip title to look coherent in rtl and ltr layouts

  • #​11331 f1b78a4 Thanks @​bluwy! - Removes resolve package and simplify internal resolve check

  • #​11339 8fdbf0e Thanks @​matthewp! - Remove non-fatal errors from telemetry

    Previously we tracked non-fatal errors in telemetry to get a good idea of the types of errors that occur in astro dev. However this has become noisy over time and results in a lot of data that isn't particularly useful. This removes those non-fatal errors from being tracked.

v4.11.1

Compare Source

Patch Changes

v4.11.0

Compare Source

Minor Changes
  • #​11197 4b46bd9 Thanks @​braebo! - Adds ShikiTransformer support to the <Code /> component with a new transformers prop.

    Note that transformers only applies classes and you must provide your own CSS rules to target the elements of your code block.

v4.10.3

Compare Source

Patch Changes
  • #​11213 94ac7ef Thanks @​florian-lefebvre! - Removes the PUBLIC_ prefix constraint for astro:env public variables

  • #​11213 94ac7ef Thanks @​florian-lefebvre! - BREAKING CHANGE to the experimental astro:env feature only

    Server secrets specified in the schema must now be imported from astro:env/server. Using getSecret() is no longer required to use these environment variables in your schema:

    - import { getSecret } from 'astro:env/server'
    - const API_SECRET = getSecret("API_SECRET")
    + import { API_SECRET } from 'astro:env/server'

    Note that using getSecret() with these keys is still possible, but no longer involves any special handling and the raw value will be returned, just like retrieving secrets not specified in your schema.

  • #​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 '@&#8203;astrojs/react/server.js';
    import vueRenderer from '@&#8203;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);
    };
  • #​11249 de60c69 Thanks @​markgaze! - Fixes a performance issue with JSON schema generation

  • #​11242 e4fc2a0 Thanks @​ematipico! - Fixes a case where the virtual module astro:container wasn't resolved

  • #​11236 39bc3a5 Thanks @​ascorbic! - Fixes a case where symlinked content collection directories were not correctly resolved

  • #​11258 d996db6 Thanks @​ascorbic! - Adds a new error RewriteWithBodyUsed that throws when Astro.rewrite is used after the request body has already been read.

  • #​11243 ba2b14c Thanks @​V3RON! - Fixes a prerendering issue for libraries in node_modules when a folder with an underscore is in the path.

  • #​11244 d07d2f7 Thanks @​ematipico! - Improves the developer experience of the custom 500.astro page in development mode.

    Before, in development, an error thrown during the rendering phase would display the default error overlay, even when users had the 500.astro page.

    Now, the development server will display the 500.astro and the original error is logged in the console.

  • #​11240 2851b0a Thanks @​ascorbic! - Ignores query strings in module identifiers when matching ".astro" file extensions in Vite plugin

  • #​11245 e22be22 Thanks @​bluwy! - Refactors prerendering chunk handling to correctly remove unused code during the SSR runtime


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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from dc8568d to 8ba50b7 Compare May 3, 2024 21:47
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.7.1 fix(deps): update dependency astro to v4.7.1 - autoclosed May 3, 2024
@renovate renovate bot closed this May 3, 2024
@renovate renovate bot deleted the renovate/astro-monorepo branch May 3, 2024 21:49
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.7.1 - autoclosed fix(deps): update dependency astro to v4.7.1 May 9, 2024
@renovate renovate bot reopened this May 9, 2024
@renovate renovate bot restored the renovate/astro-monorepo branch May 9, 2024 12:10
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 8ba50b7 to a1d887f Compare May 9, 2024 12:10
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.7.1 fix(deps): update dependency astro to v4.8.0 May 9, 2024
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.8.0 fix(deps): update dependency astro to v4.8.1 May 9, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from a1d887f to f77d71a Compare May 9, 2024 16:42
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.8.1 fix(deps): update dependency astro to v4.8.1 - autoclosed May 9, 2024
@renovate renovate bot closed this May 9, 2024
@renovate renovate bot deleted the renovate/astro-monorepo branch May 9, 2024 18:08
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.8.1 - autoclosed fix(deps): update dependency astro to v4.8.1 May 9, 2024
@renovate renovate bot reopened this May 9, 2024
@renovate renovate bot restored the renovate/astro-monorepo branch May 9, 2024 20:31
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from f77d71a to 4599349 Compare May 9, 2024 20:31
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.8.1 fix(deps): update dependency astro to v4.8.2 May 9, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from 8c50895 to bbb2650 Compare May 13, 2024 12:07
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.8.2 fix(deps): update dependency astro to v4.8.3 May 13, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from bbb2650 to b290a80 Compare May 13, 2024 18:59
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.8.3 fix(deps): update dependency astro to v4.8.4 May 15, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 2 times, most recently from 9eb8c57 to ffa22f3 Compare May 16, 2024 20:39
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 5dceabd to 127b9db Compare June 10, 2024 01:11
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.10.1 fix(deps): update dependency astro to v4.10.2 Jun 11, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 127b9db to 6cf96de Compare June 11, 2024 14:21
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.10.2 fix(deps): update dependency astro to v4.10.2 - autoclosed Jun 12, 2024
@renovate renovate bot closed this Jun 12, 2024
@renovate renovate bot deleted the renovate/astro-monorepo branch June 12, 2024 21:10
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.10.2 - autoclosed fix(deps): update dependency astro to v4.10.2 Jun 17, 2024
@renovate renovate bot reopened this Jun 17, 2024
@renovate renovate bot restored the renovate/astro-monorepo branch June 17, 2024 15:10
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.10.2 fix(deps): update dependency astro to v4.10.3 Jun 17, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 3579cf6 to a2b1a0a Compare June 17, 2024 22:15
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.10.3 fix(deps): update dependency astro to v4.11.0 Jun 20, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 5 times, most recently from 4d72441 to 61bb203 Compare June 24, 2024 19:20
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.11.0 fix(deps): update dependency astro to v4.11.1 Jun 24, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 61bb203 to ea6ab10 Compare June 26, 2024 12:46
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.11.1 fix(deps): update dependency astro to v4.11.2 Jun 26, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from ea6ab10 to 11b8533 Compare June 26, 2024 15:48
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.11.2 fix(deps): update dependency astro to v4.11.3 Jun 26, 2024
@renovate renovate bot changed the title fix(deps): update dependency astro to v4.11.3 fix(deps): update dependency astro to v4.11.3 - autoclosed Jun 26, 2024
@renovate renovate bot closed this Jun 26, 2024
@renovate renovate bot deleted the renovate/astro-monorepo branch June 26, 2024 20:32
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants