fix(website): update astro monorepo (minor) (#35803)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap))
| dependencies | minor | [`3.3.1` ->
`3.4.0`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.3.1/3.4.0)
|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.7.14` ->
`5.8.1`](https://renovatebot.com/diffs/npm/astro/5.7.14/5.8.1) |

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>withastro/astro (@&#8203;astrojs/sitemap)</summary>

###
[`v3.4.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#340)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/sitemap@3.3.1...@astrojs/sitemap@3.4.0)

##### Minor Changes

-
[#&#8203;13753](https://redirect.github.com/withastro/astro/pull/13753)
[`90293de`](https://redirect.github.com/withastro/astro/commit/90293de03320da51965f05cfa6923cbe5521f519)
Thanks [@&#8203;mattyoho](https://redirect.github.com/mattyoho)! -
Customize the filenames of sitemap XML files generated by the
`@astro/sitemap` integration by setting `filenameBase` in the
integration configuration settings. This may be useful when deploying an
Astro site at a path on a domain with preexisting sitemap files.

Generated sitemap files will appear at `/sitemap-0.xml` and
`/sitemap-index.xml` by default, which may conflict with preexisting
files. Set `filenameBase` to a custom value to avoid that if so:

    ```js
    import { defineConfig } from 'astro/config';
    import sitemap from '@&#8203;astrojs/sitemap';

    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          filenameBase: 'astronomy-sitemap',
        }),
      ],
    });
    ```

This will yield sitemap and index files as
`https://example.com/astronomy-sitemap-0.xml` and
`https://example.com/astronomy-sitemap-index.xml`.

</details>

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.8.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#581)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.8.0...astro@5.8.1)

##### Patch Changes

-
[#&#8203;13037](https://redirect.github.com/withastro/astro/pull/13037)
[`de2fc9b`](https://redirect.github.com/withastro/astro/commit/de2fc9b3c406c21683b8a692fafa3cbc77ca552b)
Thanks [@&#8203;nanarino](https://redirect.github.com/nanarino)! - Fixes
rendering of the `popover` attribute when it has a boolean value

-
[#&#8203;13851](https://redirect.github.com/withastro/astro/pull/13851)
[`45ae95a`](https://redirect.github.com/withastro/astro/commit/45ae95a507d5e83b5e38ce1b338c3202ab7e8d76)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Allows disabling default styles for responsive images

This change adds a new `image.experimentalDefaultStyles` option that
allows you to disable the default styles applied to responsive images.

When using experimental responsive images, Astro applies default styles
to ensure the images resize correctly. In most cases this is what you
want – and they are applied with low specificity so your own styles
override them. However in some cases you may want to disable these
default styles entirely. This is particularly useful when using Tailwind
4, because it uses CSS cascade layers to apply styles, making it
difficult to override the default styles.

`image.experimentalDefaultStyles` is a boolean option that defaults to
`true`, so you can change it in your Astro config file like this:

    ```js
    export default {
      image: {
        experimentalDefaultStyles: false,
      },
      experimental: {
        responsiveImages: true,
      },
    };
    ```

-
[#&#8203;13858](https://redirect.github.com/withastro/astro/pull/13858)
[`cb1a168`](https://redirect.github.com/withastro/astro/commit/cb1a1681c844737477670ac42bb051bf93fae0a3)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes the warning shown when client directives are used on Astro
components

-
[#&#8203;12574](https://redirect.github.com/withastro/astro/pull/12574)
[`da266d0`](https://redirect.github.com/withastro/astro/commit/da266d0578c1a603d6f57913c6fa8eefd61a354e)
Thanks [@&#8203;apatel369](https://redirect.github.com/apatel369)! -
Allows using server islands in mdx files

-
[#&#8203;13843](https://redirect.github.com/withastro/astro/pull/13843)
[`fbcfa68`](https://redirect.github.com/withastro/astro/commit/fbcfa683d38f13378678c25b53cd789107752087)
Thanks [@&#8203;z1haze](https://redirect.github.com/z1haze)! - Export
type `AstroSession` to allow use in explicitly typed safe code.

###
[`v5.8.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#580)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.7.14...astro@5.8.0)

##### Minor Changes

-
[#&#8203;13809](https://redirect.github.com/withastro/astro/pull/13809)
[`3c3b492`](https://redirect.github.com/withastro/astro/commit/3c3b492375bd6a63f1fb6cede3685aff999be3c9)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Increases minimum Node.js version to 18.20.8

Node.js 18 has now reached end-of-life and should not be used. For now,
Astro will continue to support Node.js 18.20.8, which is the final LTS
release of Node.js 18, as well as Node.js 20 and Node.js 22 or later. We
will drop support for Node.js 18 in a future release, so we recommend
upgrading to Node.js 22 as soon as possible. See Astro's [Node.js
support policy](https://docs.astro.build/en/upgrade-astro/#support) for
more details.

⚠️ **Important note for users of Cloudflare Pages**: The current
build image for Cloudflare Pages uses Node.js 18.17.1 by default, which
is no longer supported by Astro. If you are using Cloudflare Pages you
should [override the default Node.js
version](https://developers.cloudflare.com/pages/configuration/build-image/#override-default-versions)
to Node.js 22. This does not affect users of Cloudflare Workers, which
uses Node.js 22 by default.

##### Patch Changes

- Updated dependencies
\[[`3c3b492`](https://redirect.github.com/withastro/astro/commit/3c3b492375bd6a63f1fb6cede3685aff999be3c9)]:
-
[@&#8203;astrojs/telemetry](https://redirect.github.com/astrojs/telemetry)[@&#8203;3](https://redirect.github.com/3).3.0
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@&#8203;6](https://redirect.github.com/6).3.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
This commit is contained in:
TrueCharts Bot
2025-05-29 20:47:21 +02:00
committed by GitHub
parent 580f6a825b
commit f20d6a0955
2 changed files with 17 additions and 58 deletions
+15 -56
View File
@@ -9,12 +9,12 @@
"version": "0.0.1",
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/sitemap": "3.3.1",
"@astrojs/sitemap": "3.4.0",
"@astrojs/starlight": "0.31.1",
"@astrojs/starlight-tailwind": "3.0.1",
"@astrojs/tailwind": "5.1.5",
"@playform/compress": "0.1.9",
"astro": "5.7.14",
"astro": "5.8.1",
"astro-better-image-service": "2.1.5",
"astro-integration-lottie": "0.3.2",
"astro-robots-txt": "1.0.0",
@@ -190,9 +190,9 @@
}
},
"node_modules/@astrojs/sitemap": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.3.1.tgz",
"integrity": "sha512-GRnDUCTviBSNfXJ0Jmur+1/C+z3g36jy79VyYggfe1uNyEYSTcmAfTTCmbytrRvJRNyJJnSfB/77Gnm9PiXRRg==",
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@astrojs/sitemap/-/sitemap-3.4.0.tgz",
"integrity": "sha512-C5m/xsKvRSILKM3hy47n5wKtTQtJXn8epoYuUmCCstaE9XBt20yInym3Bz2uNbEiNfv11bokoW0MqeXPIvjFIQ==",
"license": "MIT",
"dependencies": {
"sitemap": "^8.0.0",
@@ -262,9 +262,9 @@
}
},
"node_modules/@astrojs/telemetry": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.2.1.tgz",
"integrity": "sha512-SSVM820Jqc6wjsn7qYfV9qfeQvePtVc1nSofhyap7l0/iakUKywj3hfy3UJAOV4sGV4Q/u450RD4AaCaFvNPlg==",
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@astrojs/telemetry/-/telemetry-3.3.0.tgz",
"integrity": "sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==",
"license": "MIT",
"dependencies": {
"ci-info": "^4.2.0",
@@ -276,7 +276,7 @@
"which-pm-runs": "^1.1.0"
},
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=22.0.0"
"node": "18.20.8 || ^20.3.0 || >=22.0.0"
}
},
"node_modules/@astrojs/yaml2ts": {
@@ -2865,15 +2865,15 @@
}
},
"node_modules/astro": {
"version": "5.7.14",
"resolved": "https://registry.npmjs.org/astro/-/astro-5.7.14.tgz",
"integrity": "sha512-DfuDD49f7mbHB7ygLm8KXEC6QQtpLoNrmoylcMLKdl1ahXNdiw+mgW8ApEMyHTUyVrqEUnr4gZCKSlZ9POCHjQ==",
"version": "5.8.1",
"resolved": "https://registry.npmjs.org/astro/-/astro-5.8.1.tgz",
"integrity": "sha512-lkBg1smMRFW+FQ6i92SgEN53o4+ItRjlRt6Ck+rEjmTcb57Bid7faTNKUQNYuNnxiesTWw3NJDyVPQPbfKDyfw==",
"license": "MIT",
"dependencies": {
"@astrojs/compiler": "^2.11.0",
"@astrojs/internal-helpers": "0.6.1",
"@astrojs/markdown-remark": "6.3.1",
"@astrojs/telemetry": "3.2.1",
"@astrojs/markdown-remark": "6.3.2",
"@astrojs/telemetry": "3.3.0",
"@capsizecss/unpack": "^2.4.0",
"@oslojs/encoding": "^1.1.0",
"@rollup/pluginutils": "^5.1.4",
@@ -2936,7 +2936,7 @@
"astro": "astro.js"
},
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=22.0.0",
"node": "18.20.8 || ^20.3.0 || >=22.0.0",
"npm": ">=9.6.5",
"pnpm": ">=7.1.0"
},
@@ -3020,47 +3020,6 @@
"zod": "^3.22.2"
}
},
"node_modules/astro/node_modules/@astrojs/markdown-remark": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/@astrojs/markdown-remark/-/markdown-remark-6.3.1.tgz",
"integrity": "sha512-c5F5gGrkczUaTVgmMW9g1YMJGzOtRvjjhw6IfGuxarM6ct09MpwysP10US729dy07gg8y+ofVifezvP3BNsWZg==",
"license": "MIT",
"dependencies": {
"@astrojs/internal-helpers": "0.6.1",
"@astrojs/prism": "3.2.0",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^2.0.3",
"hast-util-to-text": "^4.0.2",
"import-meta-resolve": "^4.1.0",
"js-yaml": "^4.1.0",
"mdast-util-definitions": "^6.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-smartypants": "^3.0.2",
"shiki": "^3.0.0",
"smol-toml": "^1.3.1",
"unified": "^11.0.5",
"unist-util-remove-position": "^5.0.0",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.1",
"vfile": "^6.0.3"
}
},
"node_modules/astro/node_modules/@astrojs/prism": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@astrojs/prism/-/prism-3.2.0.tgz",
"integrity": "sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==",
"license": "MIT",
"dependencies": {
"prismjs": "^1.29.0"
},
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=22.0.0"
}
},
"node_modules/astro/node_modules/@img/sharp-darwin-arm64": {
"version": "0.33.5",
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz",
+2 -2
View File
@@ -18,12 +18,12 @@
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/sitemap": "3.3.1",
"@astrojs/sitemap": "3.4.0",
"@astrojs/starlight": "0.31.1",
"@astrojs/starlight-tailwind": "3.0.1",
"@astrojs/tailwind": "5.1.5",
"@playform/compress": "0.1.9",
"astro": "5.7.14",
"astro": "5.8.1",
"astro-better-image-service": "2.1.5",
"astro-integration-lottie": "0.3.2",
"astro-robots-txt": "1.0.0",