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 dependency astro to v4.16.18 - autoclosed #304

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 22, 2024

This PR contains the following updates:

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

Release Notes

withastro/astro (astro)

v4.16.18

Compare Source

Patch Changes

v4.16.17

Compare Source

Patch Changes

v4.16.16

Compare Source

Patch Changes

v4.16.15

Compare Source

Patch Changes

v4.16.14

Compare Source

Patch Changes

v4.16.13

Compare Source

Patch Changes
  • #​12436 453ec6b Thanks @​martrapp! - Fixes a potential null access in the clientside router

  • #​12392 0462219 Thanks @​apatel369! - Fixes an issue where scripts were not correctly injected during the build. The issue was triggered when there were injected routes with the same entrypoint and different pattern

v4.16.12

Compare Source

Patch Changes
  • #​12420 acac0af Thanks @​ematipico! - Fixes an issue where the dev server returns a 404 status code when a user middleware returns a valid Response.

v4.16.11

Compare Source

Patch Changes

v4.16.10

Compare Source

Patch Changes

v4.16.9

Compare Source

Patch Changes

v4.16.8

Compare Source

Patch Changes

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

v4.16.1

Compare Source

Patch Changes
  • #​12177 a4ffbfa Thanks @​matthewp! - Ensure we target scripts for execution in the router

    Using document.scripts is unsafe because if the application has a name="scripts" this will shadow the built-in document.scripts. Fix is to use getElementsByTagName to ensure we're only grabbing real scripts.

  • #​12173 2d10de5 Thanks @​ematipico! - Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.

v4.16.0

Compare Source

Minor Changes
  • #​12039 710a1a1 Thanks @​ematipico! - Adds a markdown.shikiConfig.langAlias option that allows aliasing a non-supported code language to a known language. This is useful when the language of your code samples is not a built-in Shiki language, but you want your Markdown source to contain an accurate language while also displaying syntax highlighting.

    The following example configures Shiki to highlight cjs code blocks using the javascript syntax highlighter:

    import { defineConfig } from 'astro/config';
    
    export default defineConfig({
      markdown: {
        shikiConfig: {
          langAlias: {
            cjs: 'javascript',
          },
        },
      },
    });

    Then in your Markdown, you can use the alias as the language for a code block for syntax highlighting:

    ```cjs
    'use strict';
    
    function commonJs() {
      return 'I am a commonjs file';
    }
    ```
  • #​11984 3ac2263 Thanks @​chaegumi! - Adds a new build.concurreny configuration option to specify the number of pages to build in parallel

    In most cases, you should not change the default value of 1.

    Use this option only when other attempts to reduce the overall rendering time (e.g. batch or cache long running tasks like fetch calls or data access) are not possible or are insufficient.

    Use this option only if the refactors are not possible. If the number is set too high, the page rendering may slow down due to insufficient memory resources and because JS is single-threaded.

    [!WARNING]
    This feature is stable and is not considered experimental. However, this feature is only intended to address difficult performance issues, and breaking changes may occur in a minor release to keep this option as performant as possible.

    // astro.config.mjs
    import { defineConfig } from 'astro';
    
    export default defineConfig({
      build: {
        concurrency: 2,
      },
    });
Patch Changes
  • #​12160 c6fd1df Thanks @​louisescher! - Fixes a bug where astro.config.mts and astro.config.cts weren't reloading the dev server upon modifications.

  • #​12130 e96bcae Thanks @​thehansys! - Fixes a bug in the parsing of x-forwarded-\* Request headers, where multiple values assigned to those headers were not correctly parsed.

    Now, headers like x-forwarded-proto: https,http are correctly parsed.

  • #​12147 9db755a Thanks @​ascorbic! - Skips setting statusMessage header for HTTP/2 response

    HTTP/2 doesn't support status message, so setting this was logging a warning.

  • #​12151 bb6d37f Thanks @​ematipico! - Fixes an issue where Astro.currentLocale wasn't incorrectly computed when the defaultLocale belonged to a custom locale path.

  • Updated dependencies [710a1a1]:

v4.15.12

Compare Source

Patch Changes

v4.15.11

Compare Source

Patch Changes
  • #​12097 11d447f Thanks @​ascorbic! - Fixes error where references in content layer schemas sometimes incorrectly report as missing

  • #​12108 918953b Thanks @​lameuler! - Fixes a bug where data URL images were not correctly handled. The bug resulted in an ENAMETOOLONG error.

  • #​12105 42037f3 Thanks @​ascorbic! - Returns custom statusText that has been set in a Response

  • #​12109 ea22558 Thanks @​ematipico! - Fixes a regression that was introduced by an internal refactor of how the middleware is loaded by the Astro application. The regression was introduced by #​11550.

    When the edge middleware feature is opted in, Astro removes the middleware function from the SSR manifest, and this wasn't taken into account during the refactor.

  • #​12106 d3a74da Thanks @​ascorbic! - Handles case where an immutable Response object is returned from an endpoint

  • #​12090 d49a537 Thanks @​markjaquith! - Server islands: changes the server island HTML placeholder comment so that it is much less likely to get removed by HTML minifiers.

v4.15.10

Compare Source

Patch Changes

v4.15.9

Compare Source

Patch Changes
  • #​12034 5b3ddfa Thanks @​ematipico! - Fixes an issue where the middleware wasn't called when a project uses 404.astro.

  • #​12042 243ecb6 Thanks @​ematipico! - Fixes a problem in the Container API, where a polyfill wasn't correctly applied. This caused an issue in some environments where crypto isn't supported.

  • #​12038 26ea5e8 Thanks @​ascorbic! - Resolves image paths in content layer with initial slash as project-relative

    When using the image() schema helper, previously paths with an initial slash were treated as public URLs. This was to match the behavior of markdown images. However this is a change from before, where paths with an initial slash were treated as project-relative. This change restores the previous behavior, so that paths with an initial slash are treated as project-relative.

v4.15.8

Compare Source

Patch Changes

v4.15.7

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.

🔕 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 was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Sep 22, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
joshuakgoldberg-dot-com ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 11, 2025 8:59pm

@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 0ea3ac9 to 239b987 Compare September 23, 2024 17:12
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 239b987 to 076dcb7 Compare September 23, 2024 19:18
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.15.8 chore(deps): update dependency astro to v4.15.9 Sep 26, 2024
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 076dcb7 to ae50bb1 Compare September 26, 2024 23:15
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from ae50bb1 to 43c7058 Compare September 27, 2024 02:01
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 43c7058 to e9d586f Compare September 28, 2024 01:28
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from e9d586f to 72ba08d Compare September 28, 2024 07:20
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 72ba08d to 8e1b017 Compare October 1, 2024 17:21
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 8e1b017 to a657a96 Compare October 1, 2024 18:30
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from a657a96 to 432782e Compare October 1, 2024 18:44
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.15.9 chore(deps): update dependency astro to v4.15.10 Oct 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.15.10 chore(deps): update dependency astro to v4.15.11 Oct 6, 2024
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.15.11 chore(deps): update dependency astro to v4.15.12 Oct 10, 2024
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.15.12 chore(deps): update dependency astro to v4.16.0 Oct 13, 2024
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.0 chore(deps): update dependency astro to v4.16.1 Oct 14, 2024
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.1 chore(deps): update dependency astro to v4.16.2 Oct 15, 2024
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.2 chore(deps): update dependency astro to v4.16.3 Oct 17, 2024
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.3 chore(deps): update dependency astro to v4.16.4 Oct 18, 2024
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 774e1db to fc5b79e Compare November 18, 2024 15:04
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from fc5b79e to ab18073 Compare November 18, 2024 23:02
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.13 chore(deps): update dependency astro to v4.16.14 Nov 24, 2024
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from ab18073 to bfe4726 Compare November 27, 2024 18:19
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from bfe4726 to 3f1ef5b Compare November 27, 2024 22:40
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.14 chore(deps): update dependency astro to v4.16.15 Nov 29, 2024
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 3f1ef5b to b5fae8e Compare November 29, 2024 16:09
Copy link

vercel bot commented Nov 29, 2024

Deployment failed with the following error:

Resource is limited - try again in 2 hours (more than 100, code: "api-deployments-free-per-day").

@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.15 chore(deps): update dependency astro to v4.16.16 Nov 30, 2024
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.16 chore(deps): update dependency astro to v4.16.17 Dec 8, 2024
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from b5fae8e to 1b6586d Compare December 11, 2024 16:14
Copy link

vercel bot commented Dec 11, 2024

Deployment failed with the following error:

Resource is limited - try again in 1 minute (more than 100, code: "api-deployments-free-per-day").

@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 1b6586d to 451309f Compare December 13, 2024 19:36
Copy link

vercel bot commented Dec 13, 2024

Deployment failed with the following error:

Resource is limited - try again in 50 minutes (more than 100, code: "api-deployments-free-per-day").

@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 451309f to 07dad28 Compare December 13, 2024 19:39
Copy link

vercel bot commented Dec 13, 2024

Deployment failed with the following error:

Resource is limited - try again in 47 minutes (more than 100, code: "api-deployments-free-per-day").

@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 07dad28 to 9c053c8 Compare December 13, 2024 20:51
Copy link

vercel bot commented Dec 13, 2024

Deployment failed with the following error:

Resource is limited - try again in 6 minutes (more than 100, code: "api-deployments-free-per-day").

@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from 9c053c8 to b4c9738 Compare December 13, 2024 20:59
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.17 chore(deps): update dependency astro to v4.16.18 Dec 21, 2024
@renovate renovate bot force-pushed the renovate/astro-4.x-lockfile branch from b4c9738 to d3fb5e2 Compare January 11, 2025 20:57
@renovate renovate bot changed the title chore(deps): update dependency astro to v4.16.18 chore(deps): update dependency astro to v4.16.18 - autoclosed Jan 13, 2025
@renovate renovate bot closed this Jan 13, 2025
@renovate renovate bot deleted the renovate/astro-4.x-lockfile branch January 13, 2025 02:54
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