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

Update astro monorepo #15

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

Update astro monorepo #15

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 17, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/mdx (source) 3.1.7 -> 3.1.9 age adoption passing confidence
@astrojs/rss (source) 4.0.7 -> 4.0.9 age adoption passing confidence
@astrojs/sitemap (source) 3.2.0 -> 3.2.1 age adoption passing confidence
astro (source) 4.15.11 -> 4.16.9 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/mdx)

v3.1.9

Compare Source

Patch Changes

v3.1.8

Compare Source

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

v4.0.9

Compare Source

Patch Changes

v4.0.8

Compare Source

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

v3.2.1

Compare Source

Patch Changes
withastro/astro (astro)

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

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.

👻 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 from 71d20e0 to 873a97e Compare July 18, 2024 16:19
@renovate renovate bot changed the title Update dependency astro to v4.11.6 Update astro monorepo Jul 18, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch 3 times, most recently from 8f43f6a to 374c4e6 Compare July 21, 2024 13:48
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 374c4e6 to 2e77124 Compare July 30, 2024 18:16
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 2e77124 to d776f1e Compare August 1, 2024 10:47
@renovate renovate bot changed the title Update astro monorepo Update astro monorepo - autoclosed Aug 1, 2024
@renovate renovate bot closed this Aug 1, 2024
@renovate renovate bot deleted the renovate/astro-monorepo branch August 1, 2024 11:17
@renovate renovate bot changed the title Update astro monorepo - autoclosed Update astro monorepo Aug 2, 2024
@renovate renovate bot restored the renovate/astro-monorepo branch August 2, 2024 13:55
@renovate renovate bot reopened this Aug 2, 2024
@renovate renovate bot changed the title Update astro monorepo Update dependency astro to v4.13.1 Aug 2, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from d776f1e to 05b87ad Compare August 2, 2024 13:55
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 05b87ad to 2a36626 Compare August 8, 2024 14:09
@renovate renovate bot changed the title Update dependency astro to v4.13.1 Update dependency astro to v4.13.2 Aug 8, 2024
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 2a36626 to e59c58e Compare August 9, 2024 22:45
@renovate renovate bot changed the title Update dependency astro to v4.13.2 Update dependency astro to v4.13.3 Aug 9, 2024
@renovate renovate bot changed the title Update dependency astro to v4.13.3 Update dependency astro to v4.13.4 Aug 14, 2024
@renovate renovate bot changed the title Update dependency astro to v4.13.4 Update dependency astro to v4.14.0 Aug 15, 2024
@renovate renovate bot changed the title Update astro monorepo Update astro monorepo - autoclosed Sep 11, 2024
@renovate renovate bot closed this Sep 11, 2024
@renovate renovate bot deleted the renovate/astro-monorepo branch September 11, 2024 14:12
@renovate renovate bot changed the title Update astro monorepo - autoclosed Update astro monorepo Sep 13, 2024
@renovate renovate bot restored the renovate/astro-monorepo branch September 13, 2024 13:22
@renovate renovate bot reopened this Sep 13, 2024
@renovate renovate bot changed the title Update astro monorepo Update astro monorepo - autoclosed Oct 3, 2024
@renovate renovate bot closed this Oct 3, 2024
@renovate renovate bot deleted the renovate/astro-monorepo branch October 3, 2024 15:44
@renovate renovate bot restored the renovate/astro-monorepo branch October 7, 2024 16:22
@renovate renovate bot changed the title Update astro monorepo - autoclosed Update astro monorepo Oct 7, 2024
@renovate renovate bot reopened this Oct 7, 2024
| datasource | package | from    | to      |
| ---------- | ------- | ------- | ------- |
| npm        | astro   | 4.15.11 | 4.15.12 |
@renovate renovate bot changed the title Update astro monorepo Update dependency astro to v4.15.12 Oct 7, 2024
@renovate renovate bot changed the title Update dependency astro to v4.15.12 Update astro monorepo Oct 10, 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