Commit Graph

169 Commits

Author SHA1 Message Date
TrueCharts Bot 3f11d75e07 fix(website): update sharp 0.34.3 → 0.34.4 (#39655)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [sharp](https://sharp.pixelplumbing.com)
([source](https://redirect.github.com/lovell/sharp),
[changelog](https://redirect.github.com/lovell/sharp/blob/main/docs/src/content/docs/changelog.md))
| [`0.34.3` ->
`0.34.4`](https://renovatebot.com/diffs/npm/sharp/0.34.3/0.34.4) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/sharp/0.34.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sharp/0.34.3/0.34.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

<details>
<summary>lovell/sharp (sharp)</summary>

###
[`v0.34.4`](https://redirect.github.com/lovell/sharp/releases/tag/v0.34.4)

[Compare
Source](https://redirect.github.com/lovell/sharp/compare/v0.34.3...v0.34.4)

- Upgrade to libvips v8.17.2 for upstream bug fixes.

- Ensure TIFF `subifd` and OpenSlide `level` input options are respected
(regression in 0.34.3).

- Ensure `autoOrient` occurs before non-90 angle rotation.
  [#&#8203;4425](https://redirect.github.com/lovell/sharp/issues/4425)

- Ensure `autoOrient` removes existing metadata after shrink-on-load.
  [#&#8203;4431](https://redirect.github.com/lovell/sharp/issues/4431)

- TypeScript: Ensure `KernelEnum` includes `linear`.
  [#&#8203;4441](https://redirect.github.com/lovell/sharp/pull/4441)
  [@&#8203;BayanBennett](https://redirect.github.com/BayanBennett)

- Ensure `unlimited` flag is passed upstream when reading TIFF images.
  [#&#8203;4446](https://redirect.github.com/lovell/sharp/issues/4446)

- Support Electron memory cage when reading XMP metadata (regression in
0.34.3).
  [#&#8203;4451](https://redirect.github.com/lovell/sharp/issues/4451)

- Add sharp-libvips rpath for yarn v5 support.
  [#&#8203;4452](https://redirect.github.com/lovell/sharp/pull/4452)
  [@&#8203;arcanis](https://redirect.github.com/arcanis)

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-17 18:31:24 +02:00
TrueCharts Bot 7b3eedface fix(website): update @astrojs/sitemap 3.5.1 → 3.6.0 (#39648)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
|
[@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap))
| [`3.5.1` ->
`3.6.0`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.5.1/3.6.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2fsitemap/3.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2fsitemap/3.5.1/3.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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.6.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#360)

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

##### Minor Changes

-
[#&#8203;14285](https://redirect.github.com/withastro/astro/pull/14285)
[`bedc31b`](https://redirect.github.com/withastro/astro/commit/bedc31ba7318dd89545503eaeeac4e0615843834)
Thanks [@&#8203;jdcolombo](https://redirect.github.com/jdcolombo)! -
Adds a new configuration option `namespaces` for more control over XML
namespaces used in sitemap generation

Excluding unused namespaces can help create cleaner, more focused
sitemaps that are faster for search engines to parse and use less
bandwidth. If your site doesn't have news content, videos, or multiple
languages, you can exclude those namespaces to reduce XML bloat.

The `namespaces` option allows you to configure `news`, `xhtml`,
`image`, and `video` namespaces independently. All namespaces are
enabled by default for backward compatibility and no change to existing
projects is necessary. But now, you can choose to streamline your XML
and avoid unnecessary code.

For example, to exclude the video namespace from your sitemap, set
`video: false` in your configuration:

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

  export default {
    integrations: [
      sitemap({
        namespaces: {
          video: false,
          // other namespaces remain enabled by default
        }
      })
    ]
  };
  ```

  The generated XML will not include the `xmlns:video` namespace:

  ```
  <?xml version="1.0" encoding="UTF-8"?>
  <urlset
    xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
    xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
    xmlns:xhtml="http://www.w3.org/1999/xhtml"
    xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
  >
    <!-- ... -->
  </urlset>
  ```

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-09-17 12:29:02 +02:00
TrueCharts Bot 72cea72115 fix(website): update astro 5.13.7 → 5.13.8 (#39644)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.13.7` ->
`5.13.8`](https://renovatebot.com/diffs/npm/astro/5.13.7/5.13.8) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.13.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.13.7/5.13.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14300](https://redirect.github.com/withastro/astro/pull/14300)
[`bd4a70b`](https://redirect.github.com/withastro/astro/commit/bd4a70bde3c8e0c04e2754cf26d222aa36d3c3c8)
Thanks [@&#8203;louisescher](https://redirect.github.com/louisescher)! -
Adds Vite version & integration versions to output of `astro info`

-
[#&#8203;14341](https://redirect.github.com/withastro/astro/pull/14341)
[`f75fd99`](https://redirect.github.com/withastro/astro/commit/f75fd9977f0f3f8afd1128cc3616205edec0a11c)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Fixes
support for declarative Shadow DOM when using the `<ClientRouter>`
component

-
[#&#8203;14350](https://redirect.github.com/withastro/astro/pull/14350)
[`f59581f`](https://redirect.github.com/withastro/astro/commit/f59581f2d4566c684c587af816e22763440ded19)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Improves error reporting for content collections by adding logging for
configuration errors that had previously been silently ignored. Also
adds a new error that is thrown if a live collection is used in
`content.config.ts` rather than `live.config.ts`.

-
[#&#8203;14343](https://redirect.github.com/withastro/astro/pull/14343)
[`13f7d36`](https://redirect.github.com/withastro/astro/commit/13f7d36688042cdb5644786d795fc921841da76a)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a regression in non node runtimes

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-17 12:27:15 +02:00
TrueCharts Bot ce9487c142 fix(website): update astro 5.13.6 → 5.13.7 (#39352)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.13.6` ->
`5.13.7`](https://renovatebot.com/diffs/npm/astro/5.13.6/5.13.7) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.13.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.13.6/5.13.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14330](https://redirect.github.com/withastro/astro/pull/14330)
[`72e14ab`](https://redirect.github.com/withastro/astro/commit/72e14abed6e20d31b1cd2caeeaa7e43703bf3aa3)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Removes pinned package that is no longer needed.

-
[#&#8203;14335](https://redirect.github.com/withastro/astro/pull/14335)
[`17c7b03`](https://redirect.github.com/withastro/astro/commit/17c7b0395c00a0ea29dad9517b60bad3bd3a87a1)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Bumps `sharp` minimal version to `0.34.0`

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-09 21:19:56 +02:00
TrueCharts Bot 47e519af99 fix(website): update astro 5.13.5 → 5.13.6 (#39297)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.13.5` ->
`5.13.6`](https://renovatebot.com/diffs/npm/astro/5.13.5/5.13.6) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.13.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.13.5/5.13.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14294](https://redirect.github.com/withastro/astro/pull/14294)
[`e005855`](https://redirect.github.com/withastro/astro/commit/e0058553b2a6bb03fd864d77a1f07c25c60f7d91)
Thanks [@&#8203;martrapp](https://redirect.github.com/martrapp)! -
Restores the ability to use Google Analytics `History change trigger`
with the `<ClientRouter />`.

-
[#&#8203;14326](https://redirect.github.com/withastro/astro/pull/14326)
[`c24a8f4`](https://redirect.github.com/withastro/astro/commit/c24a8f42a17410ea78fc2d68ff0105b931a381eb)
Thanks [@&#8203;jsparkdev](https://redirect.github.com/jsparkdev)! -
Updates `vite` version to fix CVE

-
[#&#8203;14108](https://redirect.github.com/withastro/astro/pull/14108)
[`218e070`](https://redirect.github.com/withastro/astro/commit/218e07054f4fe7a16e13479861dc162f6d886edc)
Thanks
[@&#8203;JusticeMatthew](https://redirect.github.com/JusticeMatthew)! -
Updates dynamic route split regex to avoid infinite retries/exponential
complexity

-
[#&#8203;14327](https://redirect.github.com/withastro/astro/pull/14327)
[`c1033be`](https://redirect.github.com/withastro/astro/commit/c1033beafa331bbd67f0ee76b47303deb3db806f)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Pins
simple-swizzle to avoid compromised version

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-09-08 20:37:09 +02:00
TrueCharts Bot 8fab10b232 fix(website): update astro monorepo (patch) (#38750)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
|
[@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap))
| [`3.5.0` ->
`3.5.1`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.5.0/3.5.1)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2fsitemap/3.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2fsitemap/3.5.0/3.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.13.2` ->
`5.13.3`](https://renovatebot.com/diffs/npm/astro/5.13.2/5.13.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.13.2/5.13.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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.5.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#351)

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

##### Patch Changes

-
[#&#8203;14233](https://redirect.github.com/withastro/astro/pull/14233)
[`896886c`](https://redirect.github.com/withastro/astro/commit/896886cc6e60954d8d5ac80a4b2560df92cfdc5b)
Thanks
[@&#8203;gouravkhunger](https://redirect.github.com/gouravkhunger)! -
Fixes the issue with the option `lastmod` where if it is defined it
applies correctly to `<url>` entries in each `sitemap-${i}.xml` file but
not the `<sitemap>` entries in the root `sitemap-index.xml` file.

</details>

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

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

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

##### Patch Changes

-
[#&#8203;14239](https://redirect.github.com/withastro/astro/pull/14239)
[`d7d93e1`](https://redirect.github.com/withastro/astro/commit/d7d93e19fbfa52cf74dee40f5af6b7ea6a7503d2)
Thanks [@&#8203;wtchnm](https://redirect.github.com/wtchnm)! - Fixes a
bug where the types for the live content collections were not being
generated correctly in dev mode

-
[#&#8203;14221](https://redirect.github.com/withastro/astro/pull/14221)
[`eadc9dd`](https://redirect.github.com/withastro/astro/commit/eadc9dd277d0075d7bff0e33c7a86f3fb97fdd61)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Fixes
JSON schema support for content collections using the `file()` loader

-
[#&#8203;14229](https://redirect.github.com/withastro/astro/pull/14229)
[`1a9107a`](https://redirect.github.com/withastro/astro/commit/1a9107a4049f43c1e4e9f40e07033f6bfe4398e4)
Thanks
[@&#8203;jonmichaeldarby](https://redirect.github.com/jonmichaeldarby)!
- Ensures `Astro.currentLocale` returns the correct locale during SSG
for pages that use a locale param (such as `[locale].astro` or
`[locale]/index.astro`, which produce `[locale].html`)

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi41IiwidXBkYXRlZEluVmVyIjoiNDEuODIuNSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-08-29 20:24:12 +00:00
TrueCharts Bot 794ba315d7 fix(website): update astro 5.13.0 → 5.13.2 (#38469)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.13.0` ->
`5.13.2`](https://renovatebot.com/diffs/npm/astro/5.13.0/5.13.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.13.0/5.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[`4d16de7`](https://redirect.github.com/withastro/astro/commit/4d16de7f95db5d1ec1ce88610d2a95e606e83820)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Improves the detection of remote paths in the `_image` endpoint. Now
`href` parameters that start with `//` are considered remote paths.

- Updated dependencies
\[[`4d16de7`](https://redirect.github.com/withastro/astro/commit/4d16de7f95db5d1ec1ce88610d2a95e606e83820)]:
-
[@&#8203;astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)@&#8203;0.7.2
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)@&#8203;6.3.6

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

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

##### Patch Changes

-
[#&#8203;14225](https://redirect.github.com/withastro/astro/pull/14225)
[`f2490ab`](https://redirect.github.com/withastro/astro/commit/f2490aba420a8999c0e8d12b9e1e69d4e33ae29e)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Fixes
the `experimental.chromeDevtoolsWorkspace` feature.

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS43Mi4xIiwidXBkYXRlZEluVmVyIjoiNDEuNzIuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-08-15 17:34:34 +02:00
TrueCharts Bot 2665aafb39 fix(website): update astro monorepo (minor) (#38410)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
|
[@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap))
| [`3.4.2` ->
`3.5.0`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.4.2/3.5.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2fsitemap/3.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2fsitemap/3.4.2/3.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.12.9` ->
`5.13.0`](https://renovatebot.com/diffs/npm/astro/5.12.9/5.13.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.12.9/5.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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.5.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#350)

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

##### Minor Changes

-
[#&#8203;13682](https://redirect.github.com/withastro/astro/pull/13682)
[`5824b32`](https://redirect.github.com/withastro/astro/commit/5824b32c5cc5d58c1138e408a05d1be18924c711)
Thanks
[@&#8203;gouravkhunger](https://redirect.github.com/gouravkhunger)! -
Adds a `customSitemaps` option to include extra sitemaps in the
`sitemap-index.xml` file generated by Astro.

This is useful for multi-framework setups on the same domain as your
Astro site (`example.com`), such as a blog at `example.com/blog` whose
sitemap is generated by another framework.

The following example shows configuring your Astro site to include
sitemaps for an externally-generated blog and help center along with the
generated sitemap entries in `sitemap-index.xml`:

  Example:

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

  export default defineConfig({
    site: 'https://example.com',
    integrations: [
      sitemap({
        customSitemaps: [
          'https://example.com/blog/sitemap.xml',
          'https://example.com/helpcenter/sitemap.xml',
        ],
      }),
    ],
  });
  ```

Learn more in the [`@astrojs/sitemap` configuration
documentation](https://docs.astro.build/en/guides/integrations-guide/sitemap/#configuration).

</details>

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

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

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

##### Minor Changes

-
[#&#8203;14173](https://redirect.github.com/withastro/astro/pull/14173)
[`39911b8`](https://redirect.github.com/withastro/astro/commit/39911b823d4617d99cc95e4b7584e9e4b7b90038)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Adds an experimental flag `staticImportMetaEnv` to disable the
replacement of `import.meta.env` values with `process.env` calls and
their coercion of environment variable values. This supersedes the
`rawEnvValues` experimental flag, which is now removed.

Astro allows you to configure a [type-safe schema for your environment
variables](https://docs.astro.build/en/guides/environment-variables/#type-safe-environment-variables),
and converts variables imported via `astro:env` into the expected type.
This is the recommended way to use environment variables in Astro, as it
allows you to easily see and manage whether your variables are public or
secret, available on the client or only on the server at build time, and
the data type of your values.

However, you can still access environment variables through
`process.env` and `import.meta.env` directly when needed. This was the
only way to use environment variables in Astro before `astro:env` was
added in Astro 5.0, and Astro's default handling of `import.meta.env`
includes some logic that was only needed for earlier versions of Astro.

The `experimental.staticImportMetaEnv` flag updates the behavior of
`import.meta.env` to align with [Vite's handling of environment
variables](https://vite.dev/guide/env-and-mode.html#env-variables) and
for better ease of use with Astro's current implementations and
features. **This will become the default behavior in Astro 6.0**, and
this early preview is introduced as an experimental feature.

Currently, non-public `import.meta.env` environment variables are
replaced by a reference to `process.env`. Additionally, Astro may also
convert the value type of your environment variables used through
`import.meta.env`, which can prevent access to some values such as the
strings `"true"` (which is converted to a boolean value), and `"1"`
(which is converted to a number).

The `experimental.staticImportMetaEnv` flag simplifies Astro's default
behavior, making it easier to understand and use. Astro will no longer
replace any `import.meta.env` environment variables with a `process.env`
call, nor will it coerce values.

To enable this feature, add the experimental flag in your Astro config
and remove `rawEnvValues` if it was enabled:

  ```diff
  // astro.config.mjs
  import { defineConfig } from "astro/config";

  export default defineConfig({
  +  experimental: {
  +    staticImportMetaEnv: true
  -    rawEnvValues: false
  +  }
  });
  ```

##### Updating your project

If you were relying on Astro's default coercion, you may need to update
your project code to apply it manually:

```diff
// src/components/MyComponent.astro
- const enabled: boolean = import.meta.env.ENABLED;
+ const enabled: boolean = import.meta.env.ENABLED === "true";
```

If you were relying on the transformation into `process.env` calls, you
may need to update your project code to apply it manually:

```diff
// src/components/MyComponent.astro
- const enabled: boolean = import.meta.env.DB_PASSWORD;
+ const enabled: boolean = process.env.DB_PASSWORD;
```

You may also need to update types:

```diff
// src/env.d.ts
interface ImportMetaEnv {
  readonly PUBLIC_POKEAPI: string;
-  readonly DB_PASSWORD: string;
-  readonly ENABLED: boolean;
+  readonly ENABLED: string;
}

interface ImportMeta {
  readonly env: ImportMetaEnv;
}

+ namespace NodeJS {
+  interface ProcessEnv {
+    DB_PASSWORD: string;
+  }
+ }
```

See the [experimental static `import.meta.env`
documentation](https://docs.astro.build/en/reference/experimental-flags/static-import-meta-env/)
for more information about this feature. You can learn more about using
environment variables in Astro, including `astro:env`, in the
[environment variables
documentation](https://docs.astro.build/en/guides/environment-variables/).

-
[#&#8203;14122](https://redirect.github.com/withastro/astro/pull/14122)
[`41ed3ac`](https://redirect.github.com/withastro/astro/commit/41ed3ac54adf1025a38031757ee0bfaef8504092)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
experimental support for automatic [Chrome DevTools workspace
folders](https://developer.chrome.com/docs/devtools/workspaces)

This feature allows you to edit files directly in the browser and have
those changes reflected in your local file system via a connected
workspace folder. This allows you to apply edits such as CSS tweaks
without leaving your browser tab!

With this feature enabled, the Astro dev server will automatically
configure a Chrome DevTools workspace for your project. Your project
will then appear as a workspace source, ready to connect. Then, changes
that you make in the "Sources" panel are automatically saved to your
project source code.

To enable this feature, add the experimental flag
`chromeDevtoolsWorkspace` to your Astro config:

  ```js
  // astro.config.mjs
  import { defineConfig } from 'astro/config';

  export default defineConfig({
    experimental: {
      chromeDevtoolsWorkspace: true,
    },
  });
  ```

See the [experimental Chrome DevTools workspace feature
documentation](https://docs.astro.build/en/reference/experimental-flags/chrome-devtools-workspace/)
for more information.

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-08-14 15:50:08 +02:00
TrueCharts Bot f1ba2a4e9a fix(website): update astro 5.12.8 → 5.12.9 (#38202)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.12.8` ->
`5.12.9`](https://renovatebot.com/diffs/npm/astro/5.12.8/5.12.9) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.12.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.12.8/5.12.9?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14020](https://redirect.github.com/withastro/astro/pull/14020)
[`9518975`](https://redirect.github.com/withastro/astro/commit/951897553921c1419fb96aef74d42ec99976d8be)
Thanks [@&#8203;jp-knj](https://redirect.github.com/jp-knj) and
[@&#8203;asieradzk](https://redirect.github.com/asieradzk)! - Prevent
double-prefixed redirect paths when using fallback and
redirectToDefaultLocale together

Fixes an issue where i18n fallback routes would generate double-prefixed
paths (e.g., `/es/es/test/item1/`) when `fallback` and
`redirectToDefaultLocale` configurations were used together. The fix
adds proper checks to prevent double prefixing in route generation.

-
[#&#8203;14199](https://redirect.github.com/withastro/astro/pull/14199)
[`3e4cb8e`](https://redirect.github.com/withastro/astro/commit/3e4cb8e52a83974cc2671d13fb1b4595fe65085d)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that prevented HMR from working with inline styles

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-08-09 17:57:48 +02:00
TrueCharts Bot abef1885d2 fix(website): update astro 5.12.7 → 5.12.8 (#38027)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.12.7` ->
`5.12.8`](https://renovatebot.com/diffs/npm/astro/5.12.7/5.12.8) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.12.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.12.7/5.12.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[`0567fb7`](https://redirect.github.com/withastro/astro/commit/0567fb7b50c0c452be387dd7c7264b96bedab48f)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
`//` to list of internal path prefixes that do not have automated
trailing slash handling

-
[#&#8203;13894](https://redirect.github.com/withastro/astro/pull/13894)
[`b36e72f`](https://redirect.github.com/withastro/astro/commit/b36e72f11fbcc0f3d5826f2b1939084f1fb1e3a8)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Removes Astro Studio commands from the CLI help

- Updated dependencies
\[[`0567fb7`](https://redirect.github.com/withastro/astro/commit/0567fb7b50c0c452be387dd7c7264b96bedab48f)]:
-
[@&#8203;astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)@&#8203;0.7.1
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)@&#8203;6.3.5

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-08-01 21:01:13 +02:00
TrueCharts Bot 642f4d11fc fix(website): update astro 5.12.6 → 5.12.7 (#38011)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.12.6` ->
`5.12.7`](https://renovatebot.com/diffs/npm/astro/5.12.6/5.12.7) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.12.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.12.6/5.12.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14169](https://redirect.github.com/withastro/astro/pull/14169)
[`f4e8889`](https://redirect.github.com/withastro/astro/commit/f4e8889c10c25aeb7650b389c35a70780d5ed172)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Skips
trailing slash handling for paths that start with `/.`.

-
[#&#8203;14170](https://redirect.github.com/withastro/astro/pull/14170)
[`34e6b3a`](https://redirect.github.com/withastro/astro/commit/34e6b3a87dd3e9be4886059d1c0efee4c5fa3cda)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes an issue where static redirects couldn't correctly generate a
redirect when the destination is a prerendered route, and the `output`
is set to `"server"`.

-
[#&#8203;14169](https://redirect.github.com/withastro/astro/pull/14169)
[`f4e8889`](https://redirect.github.com/withastro/astro/commit/f4e8889c10c25aeb7650b389c35a70780d5ed172)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that prevented images from being displayed in dev when using the
Netlify adapter with `trailingSlash` set to `always`

- Updated dependencies
\[[`f4e8889`](https://redirect.github.com/withastro/astro/commit/f4e8889c10c25aeb7650b389c35a70780d5ed172)]:
-
[@&#8203;astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)@&#8203;0.7.0
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)@&#8203;6.3.4

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-07-31 20:34:49 +02:00
TrueCharts Bot c46721982e fix(website): update typescript 5.8.3 → 5.9.2 (#38014)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [typescript](https://www.typescriptlang.org/)
([source](https://redirect.github.com/microsoft/TypeScript)) | [`5.8.3`
-> `5.9.2`](https://renovatebot.com/diffs/npm/typescript/5.8.3/5.9.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.8.3/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

<details>
<summary>microsoft/TypeScript (typescript)</summary>

###
[`v5.9.2`](https://redirect.github.com/microsoft/TypeScript/releases/tag/v5.9.2):
TypeScript 5.9

[Compare
Source](https://redirect.github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2)

<!---
For release notes, check out the [release announcement]().
For new features, check out the [What's new in TypeScript v5.9.2]().
For the complete list of fixed issues, check out the
* [fixed issues query for TypeScript
v5.9.2](https://redirect.github.com/microsoft/TypeScript/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A%22TypeScript+3.3%22+is%3Aclosed+).
Downloads are available on:
* [npm](https://www.npmjs.com/package/typescript)
-->

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-07-31 20:34:32 +02:00
TrueCharts Bot 4c77887f14 fix(website): update astro 5.12.5 → 5.12.6 (#37992)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.12.5` ->
`5.12.6`](https://renovatebot.com/diffs/npm/astro/5.12.5/5.12.6) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.12.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.12.5/5.12.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14153](https://redirect.github.com/withastro/astro/pull/14153)
[`29e9283`](https://redirect.github.com/withastro/astro/commit/29e928391a90844f8b701a581c4f163e0b6c46db)
Thanks [@&#8203;jp-knj](https://redirect.github.com/jp-knj)! - Fixes a
regression introduced by a recent optimisation of how SVG images are
emitted during the build.

-
[#&#8203;14156](https://redirect.github.com/withastro/astro/pull/14156)
[`592f08d`](https://redirect.github.com/withastro/astro/commit/592f08d1b4a3e03c61b34344e36cb772bd67709a)
Thanks [@&#8203;TheOtterlord](https://redirect.github.com/TheOtterlord)!
- Fix the client router not submitting forms if the active URL contained
a hash

-
[#&#8203;14160](https://redirect.github.com/withastro/astro/pull/14160)
[`d2e25c6`](https://redirect.github.com/withastro/astro/commit/d2e25c6e9d52160d4f8d8cbf7bc44e6794483f20)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that meant some remote image URLs could cause invalid filenames to
be used for processed images

-
[#&#8203;14167](https://redirect.github.com/withastro/astro/pull/14167)
[`62bd071`](https://redirect.github.com/withastro/astro/commit/62bd0717ab810c049ed7f3f63029895dfb402797)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that prevented destroyed sessions from being deleted from storage
unless the session had been loaded

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-07-30 20:24:11 +02:00
TrueCharts Bot 477ea3b198 fix(website): update astro 5.12.4 → 5.12.5 (#37914)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.12.4` ->
`5.12.5`](https://renovatebot.com/diffs/npm/astro/5.12.4/5.12.5) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.12.4/5.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14059](https://redirect.github.com/withastro/astro/pull/14059)
[`19f53eb`](https://redirect.github.com/withastro/astro/commit/19f53eb59dfeeff08078cec0a903c8722b5650ca)
Thanks [@&#8203;benosmac](https://redirect.github.com/benosmac)! - Fixes
a bug in i18n implementation, where Astro didn't emit the correct pages
when `fallback` is enabled, and a locale uses a catch-all route, e.g.
`src/pages/es/[...catchAll].astro`

-
[#&#8203;14155](https://redirect.github.com/withastro/astro/pull/14155)
[`31822c3`](https://redirect.github.com/withastro/astro/commit/31822c3f0c8401e20129d0fc6bf8d1d670249265)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that caused an error "serverEntrypointModule\[\_start] is not a
function" in some adapters

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-07-29 20:28:28 +02:00
TrueCharts Bot d27ec23543 fix(website): update astro 5.11.2 → 5.12.4 (#37880)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.11.2` ->
`5.12.4`](https://renovatebot.com/diffs/npm/astro/5.11.2/5.12.4) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.11.2/5.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14031](https://redirect.github.com/withastro/astro/pull/14031)
[`e9206c1`](https://redirect.github.com/withastro/astro/commit/e9206c192fc4a4dbf2d02f921fa540f987ccbe89)
Thanks [@&#8203;jp-knj](https://redirect.github.com/jp-knj)! - Optimized
the build pipeline for SVG images. Now, Astro doesn't reprocess images
that have already been processed.

-
[#&#8203;14132](https://redirect.github.com/withastro/astro/pull/14132)
[`976879a`](https://redirect.github.com/withastro/astro/commit/976879a400af9f44aee52c9112a7bd9788163588)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where the property
`Astro.routePattern`/`context.routePattern` wasn't updated when using a
rewrite via middleware.

-
[#&#8203;14131](https://redirect.github.com/withastro/astro/pull/14131)
[`aafc4d7`](https://redirect.github.com/withastro/astro/commit/aafc4d7f8b3f198ace24a8a7f6cc9298771542da)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a case where an error occurring in a middleware would show the
dev overlay instead of the custom `500.astro` page

-
[#&#8203;14127](https://redirect.github.com/withastro/astro/pull/14127)
[`2309ada`](https://redirect.github.com/withastro/astro/commit/2309ada1c6d96c75815eda0760656147de435ba2)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Upgrades zod

-
[#&#8203;14134](https://redirect.github.com/withastro/astro/pull/14134)
[`186c201`](https://redirect.github.com/withastro/astro/commit/186c201a1bd83593c880ab784d79f69245b445c2)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Throws a more helpful error in dev if trying to use a server island
without an adapter

-
[#&#8203;14129](https://redirect.github.com/withastro/astro/pull/14129)
[`3572d85`](https://redirect.github.com/withastro/astro/commit/3572d85ba89ef9c374f3631654eee704adf00e73)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where the CSP headers was incorrectly added to a page when
using an adapter.

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

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

##### Patch Changes

-
[#&#8203;14119](https://redirect.github.com/withastro/astro/pull/14119)
[`14807a4`](https://redirect.github.com/withastro/astro/commit/14807a4581b5ba2e61bc63ef9ef9f14848564edd)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that caused builds to fail if a client directive was mistakenly
added to an Astro component

-
[#&#8203;14001](https://redirect.github.com/withastro/astro/pull/14001)
[`4b03d9c`](https://redirect.github.com/withastro/astro/commit/4b03d9c9d9237d9af38425062559eafdfc27f76f)
Thanks [@&#8203;dnek](https://redirect.github.com/dnek)! - Fixes an
issue where `getImage()` assigned the resized base URL to the srcset URL
of `ImageTransform`, which matched the width, height, and format of the
original image.

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

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

##### Patch Changes

-
[#&#8203;14071](https://redirect.github.com/withastro/astro/pull/14071)
[`d2cb35d`](https://redirect.github.com/withastro/astro/commit/d2cb35d2b7ff999fea8aa39c79f9f048c3500aeb)
Thanks [@&#8203;Grisoly](https://redirect.github.com/Grisoly)! - Exposes
the `Code` component `lang` prop type:

  ```ts
  import type { CodeLanguage } from 'astro';
  ```

-
[#&#8203;14111](https://redirect.github.com/withastro/astro/pull/14111)
[`5452ee6`](https://redirect.github.com/withastro/astro/commit/5452ee67f95f51dcfdca8c1988b29f89553efe1c)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that prevented "key" from being used as a prop for Astro
components in MDX

-
[#&#8203;14106](https://redirect.github.com/withastro/astro/pull/14106)
[`b5b39e4`](https://redirect.github.com/withastro/astro/commit/b5b39e4d4bf5e5816bccf7fbfd9a48e4d8ee302a)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Exits
with non-zero exit code when config has an error

-
[#&#8203;14112](https://redirect.github.com/withastro/astro/pull/14112)
[`37458b3`](https://redirect.github.com/withastro/astro/commit/37458b31aeee23df0b5a8ab9e319a23ee4eddc6d)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that meant that SVG components could no longer be serialized with
`JSON.stringify`

-
[#&#8203;14061](https://redirect.github.com/withastro/astro/pull/14061)
[`c7a7dd5`](https://redirect.github.com/withastro/astro/commit/c7a7dd5f612b302f02a0ff468beeadd8e142a5ad)
Thanks [@&#8203;jonasgeiler](https://redirect.github.com/jonasgeiler)! -
Add module declaration for `?no-inline` asset imports

-
[#&#8203;14109](https://redirect.github.com/withastro/astro/pull/14109)
[`5a08fa2`](https://redirect.github.com/withastro/astro/commit/5a08fa22b4023810fea45876f62152bd196e6062)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Throw
a more helpful error if defineLiveCollection is used outside of a
live.config file

-
[#&#8203;14110](https://redirect.github.com/withastro/astro/pull/14110)
[`e7dd4e1`](https://redirect.github.com/withastro/astro/commit/e7dd4e1116103892ddc6a83052c8f1ba25d8abdc)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Warn
if duplicate IDs are found by file loader

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

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

##### Patch Changes

-
[#&#8203;14094](https://redirect.github.com/withastro/astro/pull/14094)
[`22e9087`](https://redirect.github.com/withastro/astro/commit/22e90873f85d7b5b5d556f456362656f04b32341)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Correct types to allow `priority` on all images

-
[#&#8203;14091](https://redirect.github.com/withastro/astro/pull/14091)
[`26c6b6d`](https://redirect.github.com/withastro/astro/commit/26c6b6db264f9cbd98ddf97c3f7a34ec7f488095)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that caused a type error when defining session options without a
driver

-
[#&#8203;14082](https://redirect.github.com/withastro/astro/pull/14082)
[`93322cb`](https://redirect.github.com/withastro/astro/commit/93322cbe36c40401256eea2a9e34f5fbe13a28ec)
Thanks [@&#8203;louisescher](https://redirect.github.com/louisescher)! -
Fixes an issue where Astro's default 404 route would incorrectly match
routes containing "/404" in dev

-
[#&#8203;14089](https://redirect.github.com/withastro/astro/pull/14089)
[`687d253`](https://redirect.github.com/withastro/astro/commit/687d25365a41ff8a9e6da155d3527f841abb70dd)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a case where `astro:env` would not load the right environments
variables in dev

-
[#&#8203;14092](https://redirect.github.com/withastro/astro/pull/14092)
[`6692c71`](https://redirect.github.com/withastro/astro/commit/6692c71ed609690ebf6a697d88582130a5cbfdfb)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Improves error handling in live collections

-
[#&#8203;14074](https://redirect.github.com/withastro/astro/pull/14074)
[`144a950`](https://redirect.github.com/withastro/astro/commit/144a950b55f22c2beeff710e5672e9fa611520b3)
Thanks [@&#8203;abcfy2](https://redirect.github.com/abcfy2)! - Fixes a
bug that caused some image service builds to fail

-
[#&#8203;14092](https://redirect.github.com/withastro/astro/pull/14092)
[`6692c71`](https://redirect.github.com/withastro/astro/commit/6692c71ed609690ebf6a697d88582130a5cbfdfb)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a case where zod could not be imported from `astro:content` virtual
module in live collection config

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

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

##### Minor Changes

-
[#&#8203;13971](https://redirect.github.com/withastro/astro/pull/13971)
[`fe35ee2`](https://redirect.github.com/withastro/astro/commit/fe35ee2835997e7e6c3e1975dc6dacfa1052a765)
Thanks [@&#8203;adamhl8](https://redirect.github.com/adamhl8)! - Adds an
experimental flag `rawEnvValues` to disable coercion of
`import.meta.env` values (e.g. converting strings to other data types)
that are populated from `process.env`

Astro allows you to configure a [type-safe schema for your environment
variables](https://docs.astro.build/en/guides/environment-variables/#type-safe-environment-variables),
and converts variables imported via `astro:env` into the expected type.

However, Astro also converts your environment variables used through
`import.meta.env` in some cases, and this can prevent access to some
values such as the strings `"true"` (which is converted to a boolean
value), and `"1"` (which is converted to a number).

The `experimental.rawEnvValues` flag disables coercion of
`import.meta.env` values that are populated from `process.env`, allowing
you to use the raw value.

To enable this feature, add the experimental flag in your Astro config:

  ```diff
  import { defineConfig } from "astro/config"

  export default defineConfig({
  +  experimental: {
  +    rawEnvValues: true,
  +  }
  })
  ```

If you were relying on this coercion, you may need to update your
project code to apply it manually:

  ```ts diff
  - const enabled: boolean = import.meta.env.ENABLED
  + const enabled: boolean = import.meta.env.ENABLED === "true"
  ```

See the [experimental raw environment variables reference
docs](https://docs.astro.build/en/reference/experimental-flags/raw-env-values/)
for more information.

-
[#&#8203;13941](https://redirect.github.com/withastro/astro/pull/13941)
[`6bd5f75`](https://redirect.github.com/withastro/astro/commit/6bd5f75806cb4df39d9e4e9b1f2225dcfdd724b0)
Thanks [@&#8203;aditsachde](https://redirect.github.com/aditsachde)! -
Adds support for TOML files to Astro's built-in `glob()` and `file()`
content loaders.

In Astro 5.2, Astro added support for using TOML frontmatter in Markdown
files instead of YAML. However, if you wanted to use TOML files as local
content collection entries themselves, you needed to write your own
loader.

Astro 5.12 now directly supports loading data from TOML files in content
collections in both the `glob()` and the `file()` loaders.

If you had added your own TOML content parser for the `file()` loader,
you can now remove it as this functionality is now included:

  ```diff
  // src/content.config.ts
  import { defineCollection } from "astro:content";
  import { file } from "astro/loaders";
  - import { parse as parseToml } from "toml";
  const dogs = defineCollection({
- loader: file("src/data/dogs.toml", { parser: (text) => parseToml(text)
}),
  + loader: file("src/data/dogs.toml")
    schema: /* ... */
  })
  ```

Note that TOML does not support top-level arrays. Instead, the `file()`
loader considers each top-level table to be an independent entry. The
table header is populated in the `id` field of the entry object.

See Astro's [content collections
guide](https://docs.astro.build/en/guides/content-collections/#built-in-loaders)
for more information on using the built-in content loaders.

##### Patch Changes

- Updated dependencies
\[[`6bd5f75`](https://redirect.github.com/withastro/astro/commit/6bd5f75806cb4df39d9e4e9b1f2225dcfdd724b0)]:
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)@&#8203;6.3.3

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-07-28 20:42:50 +02:00
TrueCharts Bot 6d01298c21 fix(website): update @astrojs/sitemap 3.4.1 → 3.4.2 (#37875)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
|
[@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap))
| [`3.4.1` ->
`3.4.2`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.4.1/3.4.2)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2fsitemap/3.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2fsitemap/3.4.1/3.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

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.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#342)

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

##### Patch Changes

-
[#&#8203;14127](https://redirect.github.com/withastro/astro/pull/14127)
[`2309ada`](https://redirect.github.com/withastro/astro/commit/2309ada1c6d96c75815eda0760656147de435ba2)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Upgrades zod

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-07-28 20:21:08 +02:00
TrueCharts Bot 0a4d2a2580 fix(website): update astro 5.11.1 → 5.11.2 (#37660)
This PR contains the following updates:

| Package | Change | Age | Confidence |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| [`5.11.1` ->
`5.11.2`](https://renovatebot.com/diffs/npm/astro/5.11.1/5.11.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.11.1/5.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14064](https://redirect.github.com/withastro/astro/pull/14064)
[`2eb77d8`](https://redirect.github.com/withastro/astro/commit/2eb77d8f54be3faea38370693d33fb220231ea84)
Thanks [@&#8203;jp-knj](https://redirect.github.com/jp-knj)! - Allows
using `tsconfig` `compilerOptions.paths` without setting
`compilerOptions.baseUrl`

-
[#&#8203;14068](https://redirect.github.com/withastro/astro/pull/14068)
[`10189c0`](https://redirect.github.com/withastro/astro/commit/10189c0b44881fd22bac69acc182834d597d9603)
Thanks [@&#8203;jsparkdev](https://redirect.github.com/jsparkdev)! -
Fixes the incorrect CSS import path shown in the terminal message during
Tailwind integration setup.

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-07-28 12:43:25 +00:00
TrueCharts Bot 03b3376635 fix(website): update astro 5.11.0 → 5.11.1 (#37527) 2025-07-14 14:12:04 +02:00
TrueCharts Bot d1ce6a8aeb fix(website): update astro-better-image-service 2.1.7 → 2.1.8 (#37350) 2025-07-10 14:11:49 +02:00
TrueCharts Bot 011dc670c4 fix(website): update sharp 0.34.2 → 0.34.3 (#37351) 2025-07-10 14:11:46 +02:00
TrueCharts Bot 8b9208c18f fix(website): update astro 5.10.2 → 5.11.0 (#36895) 2025-07-03 14:08:57 +02:00
TrueCharts Bot f026f14622 fix(website): update astro 5.10.1 → 5.10.2 (#36848)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.10.1` ->
`5.10.2`](https://renovatebot.com/diffs/npm/astro/5.10.1/5.10.2) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;14000](https://redirect.github.com/withastro/astro/pull/14000)
[`3cbedae`](https://redirect.github.com/withastro/astro/commit/3cbedae129579b93f5c18c900ae66c6c11c46da5)
Thanks [@&#8203;feelixe](https://redirect.github.com/feelixe)! - Fix
routePattern JSDoc examples to show correct return values

-
[#&#8203;13990](https://redirect.github.com/withastro/astro/pull/13990)
[`de6cfd6`](https://redirect.github.com/withastro/astro/commit/de6cfd6dc8e53911190b2b5788e0508e557f86eb)
Thanks [@&#8203;isVivek99](https://redirect.github.com/isVivek99)! -
Fixes a case where `astro:config/client` and `astro:config/server`
virtual modules would not contain config passed to integrations
`updateConfig()` during the build

-
[#&#8203;14019](https://redirect.github.com/withastro/astro/pull/14019)
[`a160d1e`](https://redirect.github.com/withastro/astro/commit/a160d1e8b711b7a214e54406fdf85be2b7338ed2)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Removes the requirement to set `type: 'live'` when defining experimental
live content collections

Previously, live collections required a `type` and `loader` configured.
Now, Astro can determine that your collection is a `live` collection
without defining it explicitly.

This means it is now safe to remove `type: 'live'` from your collections
defined in `src/live.config.ts`:

    ```diff
    import { defineLiveCollection } from 'astro:content';
    import { storeLoader } from '@&#8203;mystore/astro-loader';

    const products = defineLiveCollection({
    -  type: 'live',
      loader: storeLoader({
        apiKey: process.env.STORE_API_KEY,
        endpoint: 'https://api.mystore.com/v1',
      }),
    });

    export const collections = { products };
    ```

This is not a breaking change: your existing live collections will
continue to work even if you still include `type: 'live'`. However, we
suggest removing this line at your earliest convenience for future
compatibility when the feature becomes stable and this config option may
be removed entirely.

-
[#&#8203;13966](https://redirect.github.com/withastro/astro/pull/13966)
[`598da21`](https://redirect.github.com/withastro/astro/commit/598da21746a6b9cda023c818804b32dc37b9819b)
Thanks [@&#8203;msamoylov](https://redirect.github.com/msamoylov)! -
Fixes a broken link on the default 404 page in development

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-07-01 14:13:10 +02:00
TrueCharts Bot 99579763c2 fix(website): update prettier 3.6.1 → 3.6.2 (#36680)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [prettier](https://prettier.io)
([source](https://redirect.github.com/prettier/prettier)) | dependencies
| patch | [`3.6.1` ->
`3.6.2`](https://renovatebot.com/diffs/npm/prettier/3.6.1/3.6.2) |

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

---

### Release Notes

<details>
<summary>prettier/prettier (prettier)</summary>

###
[`v3.6.2`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#362)

[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.6.1...3.6.2)


[diff](https://redirect.github.com/prettier/prettier/compare/3.6.1...3.6.2)

##### Markdown: Add missing blank line around code block
([#&#8203;17675](https://redirect.github.com/prettier/prettier/pull/17675)
by [@&#8203;fisker](https://redirect.github.com/fisker))

<!-- prettier-ignore -->

````md
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List
````

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-27 08:13:00 +02:00
TrueCharts Bot 99709c438a fix(website): update prettier 3.6.0 → 3.6.1 (#36650) 2025-06-25 14:17:51 +02:00
TrueCharts Bot 9a6b7539ab fix(website): update astro 5.10.0 → 5.10.1 (#36564)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.10.0` ->
`5.10.1`](https://renovatebot.com/diffs/npm/astro/5.10.0/5.10.1) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;13988](https://redirect.github.com/withastro/astro/pull/13988)
[`609044c`](https://redirect.github.com/withastro/astro/commit/609044ca6a6254b1db11bb3fc8e0bb54213eab8e)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug in live collections that caused it to incorrectly complain about
the collection being defined in the wrong file

-
[#&#8203;13909](https://redirect.github.com/withastro/astro/pull/13909)
[`b258d86`](https://redirect.github.com/withastro/astro/commit/b258d86d47086d3a17d6d9e6b79ac21f9770f765)
Thanks [@&#8203;isVivek99](https://redirect.github.com/isVivek99)! -
Fixes rendering of special boolean attributes for custom elements

-
[#&#8203;13983](https://redirect.github.com/withastro/astro/pull/13983)
[`e718375`](https://redirect.github.com/withastro/astro/commit/e718375c1714a631eba75f70118653cf93a4326d)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a case where the toolbar audit would incorrectly flag images
processed by Astro in content collections documents

-
[#&#8203;13999](https://redirect.github.com/withastro/astro/pull/13999)
[`f077b68`](https://redirect.github.com/withastro/astro/commit/f077b68f4debe8d716a8610e561b4fe17b1245b3)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
`lastModified` field to experimental live collection cache hints

Live loaders can now set a `lastModified` field in the cache hints for
entries and collections to indicate when the data was last modified.
This is then available in the `cacheHint` field returned by
`getCollection` and `getEntry`.

-
[#&#8203;13987](https://redirect.github.com/withastro/astro/pull/13987)
[`08f34b1`](https://redirect.github.com/withastro/astro/commit/08f34b19c8953426ce35093414a27ecd8d405309)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds an informative message in dev mode when the CSP feature is enabled.

-
[#&#8203;14005](https://redirect.github.com/withastro/astro/pull/14005)
[`82aad62`](https://redirect.github.com/withastro/astro/commit/82aad62efd2b817cc9cff46b606fedaa64e0c922)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where inline styles and scripts didn't work when CSP was
enabled. Now when adding `<styles>` elements inside an Astro component,
their hashes care correctly computed.

-
[#&#8203;13985](https://redirect.github.com/withastro/astro/pull/13985)
[`0b4c641`](https://redirect.github.com/withastro/astro/commit/0b4c641b22b31d0dea15911c0daba995a48261a9)
Thanks [@&#8203;jsparkdev](https://redirect.github.com/jsparkdev)! -
Updates wrong link

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-23 14:09:41 +02:00
TrueCharts Bot 655d2e4cf8 fix(website): update prettier 3.5.3 → 3.6.0 (#36561)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [prettier](https://prettier.io)
([source](https://redirect.github.com/prettier/prettier)) | dependencies
| minor | [`3.5.3` ->
`3.6.0`](https://renovatebot.com/diffs/npm/prettier/3.5.3/3.6.0) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

<details>
<summary>prettier/prettier (prettier)</summary>

###
[`v3.6.0`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#360)

[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.5.3...3.6.0)


[diff](https://redirect.github.com/prettier/prettier/compare/3.5.3...3.6.0)

🔗 [Release Notes](https://prettier.io/blog/2025/06/23/3.6.0)

</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.

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

---

- [ ] <!-- 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=-->
2025-06-23 08:08:10 +02:00
TrueCharts Bot 524c85e11c fix(website): update astro-better-image-service 2.1.6 → 2.1.7 (#36522)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[astro-better-image-service](https://redirect.github.com/risu729/astro-better-image-service)
| dependencies | patch | [`2.1.6` ->
`2.1.7`](https://renovatebot.com/diffs/npm/astro-better-image-service/2.1.6/2.1.7)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

<details>
<summary>risu729/astro-better-image-service
(astro-better-image-service)</summary>

###
[`v2.1.7`](https://redirect.github.com/risu729/astro-better-image-service/releases/tag/v2.1.7)

[Compare
Source](https://redirect.github.com/risu729/astro-better-image-service/compare/v2.1.6...v2.1.7)

##### Bug Fixes

- **deps:** update dependency svgo to v4
([#&#8203;1478](https://redirect.github.com/risu729/astro-better-image-service/issues/1478))
([f7cb0ae](https://redirect.github.com/risu729/astro-better-image-service/commit/f7cb0ae4d3bf55573737f0388be68ddcb4f91dc4))

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-21 20:32:31 +02:00
TrueCharts Bot 359ece2fdf fix(website): update astro 5.9.4 → 5.10.0 (#36468)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.9.4` ->
`5.10.0`](https://renovatebot.com/diffs/npm/astro/5.9.4/5.10.0) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Minor Changes

-
[#&#8203;13917](https://redirect.github.com/withastro/astro/pull/13917)
[`e615216`](https://redirect.github.com/withastro/astro/commit/e615216c55bca5d61b8c5c1b49d62671f0238509)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
a new `priority` attribute for Astro's image components.

This change introduces a new `priority` option for the `<Image />` and
`<Picture />` components, which automatically sets the `loading`,
`decoding`, and `fetchpriority` attributes to their optimal values for
above-the-fold images which should be loaded immediately.

It is a boolean prop, and you can use the shorthand syntax by simply
adding `priority` as a prop to the `<Image />` or `<Picture />`
component. When set, it will apply the following attributes:

    -   `loading="eager"`
    -   `decoding="sync"`
    -   `fetchpriority="high"`

The individual attributes can still be set manually if you need to
customize your images further.

By default, the Astro [`<Image />`
component](https://docs.astro.build/en/guides/images/#display-optimized-images-with-the-image--component)
generates `<img>` tags that lazy-load their content by setting
`loading="lazy"` and `decoding="async"`. This improves performance by
deferring the loading of images that are not immediately visible in the
viewport, and gives the best scores in performance audits like
Lighthouse.

The new `priority` attribute will override those defaults and
automatically add the best settings for your high-priority assets.

This option was previously available for experimental responsive images,
but now it is a standard feature for all images.

</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.

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

---

- [ ] <!-- 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=-->
2025-06-19 14:22:52 +02:00
TrueCharts Bot d7e6f56f17 fix(website): update astro 5.9.3 → 5.9.4 (#36385)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.9.3` ->
`5.9.4`](https://renovatebot.com/diffs/npm/astro/5.9.3/5.9.4) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;13951](https://redirect.github.com/withastro/astro/pull/13951)
[`7eb88f1`](https://redirect.github.com/withastro/astro/commit/7eb88f1e9113943b47e35e9f0033ab516f0a4f40)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a issue that caused errors when using an adapter-provided session driver
with custom options

-
[#&#8203;13953](https://redirect.github.com/withastro/astro/pull/13953)
[`448bddc`](https://redirect.github.com/withastro/astro/commit/448bddc49492c6a92a23735cd29a93baec0dda48)
Thanks
[@&#8203;zaitovalisher](https://redirect.github.com/zaitovalisher)! -
Fixes a bug where quotes were not added to the 'strict-dynamic' CSP
directive

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-17 20:33:07 +02:00
TrueCharts Bot d2fae3b35a fix(website): update astro 5.9.2 → 5.9.3 (#36310) 2025-06-13 14:11:42 +02:00
TrueCharts Bot 697d1b9917 fix(website): update @playform/compress 0.1.9 → 0.2.0 (#36182)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@playform/compress](https://redirect.github.com/PlayForm/Compress) |
dependencies | minor | [`0.1.9` ->
`0.2.0`](https://renovatebot.com/diffs/npm/@playform%2fcompress/0.1.9/0.2.0)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

<details>
<summary>PlayForm/Compress (@&#8203;playform/compress)</summary>

###
[`v0.2.0`](https://redirect.github.com/PlayForm/Compress/blob/HEAD/CHANGELOG.md#020)

[Compare
Source](https://redirect.github.com/PlayForm/Compress/compare/5779505b555a047fc83db6fa34d9fbc78c06a1b9...887f5cb328d5441e0aeae1c9eeef30547b13e3c8)

##### Breaking Change

- Updated `commander` dependency from 13.1.0 → 14.0.0 (major version
update)

##### Change

- Updated contact information in package.json to use `PlayForm.Cloud`
domain
-   Updated dependencies to latest versions:
    -   `astro` (wildcard → ^5.9.2)
    -   `lightningcss` (1.29.3 → 1.30.1)
    -   `sharp` (0.33.5 → 0.34.2)
    -   `terser` (5.39.0 → 5.42.0)
    -   `@playform/build` (0.2.1 → 0.2.4)
    -   `browserslist` (4.24.4 → 4.25.0)
- Refactored option interfaces to use `Partial<>` type for more flexible
    configuration
-   Improved code organization in:
    -   Image processing module (Writesharp.ts)
    -   Core integration logic (Integration.ts)

##### Add

- Enhanced JSON compression options with configurable `replacer` and
`space`
    parameters for `JSON.stringify`

</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.

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

---

- [ ] <!-- 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=-->
2025-06-10 14:09:33 +02:00
TrueCharts Bot 32b31b81ea fix(website): update astro 5.9.1 → 5.9.2 (#36143)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.9.1` ->
`5.9.2`](https://renovatebot.com/diffs/npm/astro/5.9.1/5.9.2) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;13919](https://redirect.github.com/withastro/astro/pull/13919)
[`423fe60`](https://redirect.github.com/withastro/astro/commit/423fe6048dfb4c24d198611f60a5815459efacd3)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where Astro added quotes to the CSP resources.

Only certain resources require quotes (e.g. `'self'` but not
`https://cdn.example.com`), so Astro no longer adds quotes to any
resources. You must now provide the quotes yourself for resources such
as `'self'` when necessary:

    ```diff
    export default defineConfig({
      experimental: {
        csp: {
          styleDirective: {
            resources: [
    -          "self",
    +          "'self'",
              "https://cdn.example.com"
            ]
          }
        }
      }
    })
    ```

-
[#&#8203;13914](https://redirect.github.com/withastro/astro/pull/13914)
[`76c5480`](https://redirect.github.com/withastro/astro/commit/76c5480ac0ab1f64df38c23a848f8d28f7640562)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
**BREAKING CHANGE to the experimental Content Security Policy feature
only**

Removes support for experimental Content Security Policy (CSP) when
using the `<ClientRouter />` component for view transitions.

It is no longer possible to enable experimental CSP while using Astro's
view transitions. Support was already unstable with the `<ClientRouter
/>` because CSP required making its underlying implementation
asynchronous. This caused breaking changes for several users and
therefore, this PR removes support completely.

If you are currently using the component for view transitions, please
remove the experimental CSP flag as they cannot be used together.

    ```diff
    import { defineConfig } from 'astro/config';

    export default defineConfig({
      experimental: {
    -   csp: true
       }
    });
    ```

Alternatively, to continue using experimental CSP in your project, you
can [consider migrating to the browser native View Transition
API](https://events-3bg.pages.dev/jotter/astro-view-transitions/) and
remove the `<ClientRouter />` from your project. You may be able to
achieve similar results if you are not using Astro's enhancements to the
native View Transitions and Navigation APIs.

Support might be reintroduced in future releases. You can follow this
experimental feature's development in [the CSP
RFC](https://redirect.github.com/withastro/roadmap/blob/feat/rfc-csp/proposals/0055-csp.md).

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-10 00:11:37 +00:00
TrueCharts Bot 9bc7f53e96 fix(website): update @astrojs/tailwind 5.1.5 → 6.0.2 (#36163)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[@astrojs/tailwind](https://docs.astro.build/en/guides/integrations-guide/tailwind/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind))
| dependencies | major | [`5.1.5` ->
`6.0.2`](https://renovatebot.com/diffs/npm/@astrojs%2ftailwind/5.1.5/6.0.2)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

###
[`v6.0.2`](https://redirect.github.com/withastro/astro/releases/tag/%40astrojs/tailwind%406.0.2)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/tailwind@6.0.1...@astrojs/tailwind@6.0.2)

##### Patch Changes

-
[#&#8203;13505](https://redirect.github.com/withastro/astro/pull/13505)
[`a98ae5b`](https://redirect.github.com/withastro/astro/commit/a98ae5b8f5c33900379012e9e253a755c0a8927e)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Updates the dependency `vite` to the latest.

###
[`v6.0.1`](https://redirect.github.com/withastro/astro/releases/tag/%40astrojs/tailwind%406.0.1)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/tailwind@6.0.0...@astrojs/tailwind@6.0.1)

##### Patch Changes

-
[#&#8203;13471](https://redirect.github.com/withastro/astro/pull/13471)
[`020c542`](https://redirect.github.com/withastro/astro/commit/020c54247909fadc2c80c89b226ba59565d12cbf)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Updates
the README to indicate that the Tailwind integration is deprecated

###
[`v6.0.0`](https://redirect.github.com/withastro/astro/releases/tag/%40astrojs/tailwind%406.0.0)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/tailwind@5.1.5...@astrojs/tailwind@6.0.0)

##### Major Changes

-
[#&#8203;13049](https://redirect.github.com/withastro/astro/pull/13049)
[`2ed4bd9`](https://redirect.github.com/withastro/astro/commit/2ed4bd90f25a3e5a183d0bc862e3b359b8289b93)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Deprecates the integration

Tailwind CSS now offers a Vite plugin which is the preferred way to use
Tailwind 4 in Astro. Please uninstall `@astrojs/tailwind` and follow the
[Tailwind documentation for manual
installation](https://tailwindcss.com/docs/installation/framework-guides/astro).

This updated major version is only provided as a convenience for
existing projects until they are able to migrate to the new plugin. It
offers no additional functionality and is no longer recommended, but may
continue to be used in your projects until it is removed entirely.

</details>

---

### 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.

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=-->
2025-06-09 20:30:21 +02:00
TrueCharts Bot 00ea2fcdd9 fix(website): update astro-better-image-service 2.1.5 → 2.1.6 (#36144) 2025-06-09 20:14:51 +02:00
TrueCharts Bot 6ac4275a90 fix(website): update astro 5.9.0 → 5.9.1 (#36068)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.9.0` ->
`5.9.1`](https://renovatebot.com/diffs/npm/astro/5.9.0/5.9.1) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;13899](https://redirect.github.com/withastro/astro/pull/13899)
[`7a1303d`](https://redirect.github.com/withastro/astro/commit/7a1303dbcebe0f0b5c8c3278669af5577115c0a3)
Thanks [@&#8203;reknih](https://redirect.github.com/reknih)! - Fix bug
where error pages would return invalid bodies if the upstream response
was compressed

-
[#&#8203;13902](https://redirect.github.com/withastro/astro/pull/13902)
[`051bc30`](https://redirect.github.com/withastro/astro/commit/051bc3025523756474ff5be350a7680e9fed3384)
Thanks [@&#8203;arHSM](https://redirect.github.com/arHSM)! - Fixes a bug
where vite virtual module ids were incorrectly added in the dev server

-
[#&#8203;13905](https://redirect.github.com/withastro/astro/pull/13905)
[`81f71ca`](https://redirect.github.com/withastro/astro/commit/81f71ca6fd8b313b055eb4659c02a8e0e0335204)
Thanks [@&#8203;jsparkdev](https://redirect.github.com/jsparkdev)! -
Fixes wrong contents in CSP meta tag.

-
[#&#8203;13907](https://redirect.github.com/withastro/astro/pull/13907)
[`8246bcc`](https://redirect.github.com/withastro/astro/commit/8246bcc0008880a49d9374136ec44488b629a2c3)
Thanks [@&#8203;martrapp](https://redirect.github.com/martrapp)! - Fixes
a bug that caused view transition names to be lost.

-
[#&#8203;13901](https://redirect.github.com/withastro/astro/pull/13901)
[`37fa0a2`](https://redirect.github.com/withastro/astro/commit/37fa0a228cdfdaf20dd135835fdc84337f2d9637)
Thanks [@&#8203;ansg191](https://redirect.github.com/ansg191)! - fix
fallback not being removed when server island is rendered

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-07 14:09:53 +02:00
TrueCharts Bot 2c56e1b3e7 fix(website): update astro 5.8.2 → 5.9.0 (#35979)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.8.2` ->
`5.9.0`](https://renovatebot.com/diffs/npm/astro/5.8.2/5.9.0) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Minor Changes

-
[#&#8203;13802](https://redirect.github.com/withastro/astro/pull/13802)
[`0eafe14`](https://redirect.github.com/withastro/astro/commit/0eafe14b08c627b116842ea0a5299a00f9baa3d1)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds experimental Content Security Policy (CSP) support

CSP is an important feature to provide fine-grained control over
resources that can or cannot be downloaded and executed by a document.
In particular, it can help protect against [cross-site scripting
(XSS)](https://developer.mozilla.org/en-US/docs/Glossary/Cross-site_scripting)
attacks.

Enabling this feature adds additional security to Astro's handling of
processed and bundled scripts and styles by default, and allows you to
further configure these, and additional, content types. This new
experimental feature has been designed to work in every Astro rendering
environment (static pages, dynamic pages and single page applications),
while giving you maximum flexibility and with type-safety in mind.

It is compatible with most of Astro's features such as client islands,
and server islands, although Astro's view transitions using the
`<ClientRouter />` are not yet fully supported. Inline scripts are not
supported out of the box, but you can provide your own hashes for
external and inline scripts.

To enable this feature, add the experimental flag in your Astro config:

    ```js
    // astro.config.mjs
    import { defineConfig } from 'astro/config';

    export default defineConfig({
      experimental: {
        csp: true,
      },
    });
    ```

For more information on enabling and using this feature in your project,
see the [Experimental CSP
docs](https://docs.astro.build/en/reference/experimental-flags/csp/).

For a complete overview, and to give feedback on this experimental API,
see the [Content Security Policy
RFC](https://redirect.github.com/withastro/roadmap/blob/feat/rfc-csp/proposals/0055-csp.md).

-
[#&#8203;13850](https://redirect.github.com/withastro/astro/pull/13850)
[`1766d22`](https://redirect.github.com/withastro/astro/commit/1766d222e7bb4adb6d15090e2d6331a0d8978303)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Provides a Markdown renderer to content loaders

When creating a content loader, you will now have access to a
`renderMarkdown` function that allows you to render Markdown content
directly within your loaders. It uses the same settings and plugins as
the renderer used for Markdown files in Astro, and follows any Markdown
settings you have configured in your Astro project.

This allows you to render Markdown content from various sources, such as
a CMS or other data sources, directly in your loaders without needing to
preprocess the Markdown content separately.

    ```ts
    import type { Loader } from 'astro/loaders';
    import { loadFromCMS } from './cms';

    export function myLoader(settings): Loader {
      return {
        name: 'my-loader',
        async load({ renderMarkdown, store }) {
          const entries = await loadFromCMS();

          store.clear();

          for (const entry of entries) {
// Assume each entry has a 'content' field with markdown content
            store.set(entry.id, {
              id: entry.id,
              data: entry,
              rendered: await renderMarkdown(entry.content),
            });
          }
        },
      };
    }
    ```

The return value of `renderMarkdown` is an object with two properties:
`html` and `metadata`. These match the `rendered` property of content
entries in content collections, so you can use them to render the
content in your components or pages.

</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.

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

---

- [ ] <!-- 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=-->
2025-06-06 06:33:38 +00:00
TrueCharts Bot ea846e9115 fix(website): update astro monorepo (patch) (#35959)
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 | patch | [`3.4.0` ->
`3.4.1`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.4.0/3.4.1)
|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.8.1` ->
`5.8.2`](https://renovatebot.com/diffs/npm/astro/5.8.1/5.8.2) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#341)

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

##### Patch Changes

-
[#&#8203;13871](https://redirect.github.com/withastro/astro/pull/13871)
[`8a1e849`](https://redirect.github.com/withastro/astro/commit/8a1e8499dbd1ed98e971635e86eb89f910f0ce78)
Thanks [@&#8203;blimmer](https://redirect.github.com/blimmer)! -
Uncaught errors in the `filter` method will now bubble, causing the
astro build to fail.

</details>

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

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

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

##### Patch Changes

-
[#&#8203;13877](https://redirect.github.com/withastro/astro/pull/13877)
[`5a7797f`](https://redirect.github.com/withastro/astro/commit/5a7797fdd6ad3f1377e2719c79da9486a232dfcd)
Thanks [@&#8203;yuhang-dong](https://redirect.github.com/yuhang-dong)! -
Fixes a bug that caused `Astro.rewrite` to fail when used in `sequence`d
middleware

-
[#&#8203;13872](https://redirect.github.com/withastro/astro/pull/13872)
[`442b841`](https://redirect.github.com/withastro/astro/commit/442b8413dc9d29892499cfa97e54798a3a6ee136)
Thanks [@&#8203;isVivek99](https://redirect.github.com/isVivek99)! -
Fixes rendering of the `download` attribute when it has a boolean value

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-06-04 14:10:07 +02:00
TrueCharts Bot f20d6a0955 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=-->
2025-05-29 20:47:21 +02:00
TrueCharts Bot 3b30b32e5a fix(website): update @astrojs/starlight-tailwind 3.0.0 → 3.0.1 (#35725)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@astrojs/starlight-tailwind](https://starlight.astro.build)
([source](https://redirect.github.com/withastro/starlight/tree/HEAD/packages/tailwind))
| dependencies | patch | [`3.0.0` ->
`3.0.1`](https://renovatebot.com/diffs/npm/@astrojs%2fstarlight-tailwind/3.0.0/3.0.1)
|

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

---

### Release Notes

<details>
<summary>withastro/starlight
(@&#8203;astrojs/starlight-tailwind)</summary>

###
[`v3.0.1`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/tailwind/CHANGELOG.md#301)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight-tailwind@3.0.0...@astrojs/starlight-tailwind@3.0.1)

##### Patch Changes

-
[#&#8203;2991](https://redirect.github.com/withastro/starlight/pull/2991)
[`b8a4800`](https://redirect.github.com/withastro/starlight/commit/b8a480054aba2b39414ef7942db1a6110b800540)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Adds support for `@astrojs/tailwind` v6

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-05-28 23:09:48 +02:00
TrueCharts Bot 586437efcb fix(website): update lottie-web 5.12.2 → 5.13.0 (#35584)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [lottie-web](https://redirect.github.com/airbnb/lottie-web) |
dependencies | minor | [`5.12.2` ->
`5.13.0`](https://renovatebot.com/diffs/npm/lottie-web/5.12.2/5.13.0) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

<details>
<summary>airbnb/lottie-web (lottie-web)</summary>

###
[`v5.13.0`](https://redirect.github.com/airbnb/lottie-web/blob/HEAD/CHANGELOG.md#V-5130)

[Compare
Source](https://redirect.github.com/airbnb/lottie-web/compare/v5.12.2...bede03d25d232826e0c9dca1733d542d8a7754fb)

- FIX: rollup config updated to prevent lottie-web from running in
Server-Side Rendering contexts
- FIX: fixed renderGradient() cache invalidation issue so that both
start and end points are checked for changes
- IMPROVEMENT: avoid recalculating static transform matrices, results in
a significant performance improvement
- FIX: reloadShapes() no longer has the side effect of creating
duplicate styles
-   FEATURE: Web Worker supports resetSegments
- FIX: hidden styles were forcibly set as visible when using
searchShapes()
-   IMPROVEMENT: expressions can access unidimensional values by index
-   IMPROVEMENT: expression support for thisProperty.name

</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.

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

---

- [ ] <!-- 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=-->
2025-05-21 20:58:19 +02:00
TrueCharts Bot 4072c91b42 fix(website): update astro 5.7.12 → 5.7.14 (#35582)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.7.12` ->
`5.7.14`](https://renovatebot.com/diffs/npm/astro/5.7.12/5.7.14) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;13773](https://redirect.github.com/withastro/astro/pull/13773)
[`3aa5337`](https://redirect.github.com/withastro/astro/commit/3aa5337eaf01dbcc987dee9413c6985514ef7d6b)
Thanks [@&#8203;sijad](https://redirect.github.com/sijad)! - Ignores
lightningcss unsupported pseudo-class warning.

-
[#&#8203;13833](https://redirect.github.com/withastro/astro/pull/13833)
[`5a6d2ae`](https://redirect.github.com/withastro/astro/commit/5a6d2aede4b397227be5acecfa9bfefb9a1af0f8)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
an issue where session modules would fail to resolve in Node.js < 20.6

-
[#&#8203;13383](https://redirect.github.com/withastro/astro/pull/13383)
[`f7f712c`](https://redirect.github.com/withastro/astro/commit/f7f712cc29f80c4f8096489d7368c2fda223e097)
Thanks [@&#8203;Haberkamp](https://redirect.github.com/Haberkamp)! -
Stop toolbar settings from overflowing

-
[#&#8203;13794](https://redirect.github.com/withastro/astro/pull/13794)
[`85b19d8`](https://redirect.github.com/withastro/astro/commit/85b19d87b6416957c245bd3e239fbf6da2038075)
Thanks
[@&#8203;alexcarpenter](https://redirect.github.com/alexcarpenter)! -
Exclude pre tags from `a11y-no-noninteractive-tabindex` audit check.

-
[#&#8203;13373](https://redirect.github.com/withastro/astro/pull/13373)
[`50ef568`](https://redirect.github.com/withastro/astro/commit/50ef568413b5fe7add36c089b77f9f180739f43f)
Thanks [@&#8203;jpwienekus](https://redirect.github.com/jpwienekus)! -
Fixes a bug where highlights and tooltips render over the audit list
window.

-
[#&#8203;13769](https://redirect.github.com/withastro/astro/pull/13769)
[`e9fc456`](https://redirect.github.com/withastro/astro/commit/e9fc456b58511da3ae2f932256217b3db4c42998)
Thanks [@&#8203;romanstetsyk](https://redirect.github.com/romanstetsyk)!
- Expand ActionError codes to include all IANA-registered HTTP error
codes.

-
[#&#8203;13668](https://redirect.github.com/withastro/astro/pull/13668)
[`866285a`](https://redirect.github.com/withastro/astro/commit/866285a5fb3e4ba9d8ca6aadb129d3a6ed2b0f69)
Thanks [@&#8203;sapphi-red](https://redirect.github.com/sapphi-red)! -
Replaces internal CSS chunking behavior for Astro components' scoped
styles to use Vite's `cssScopeTo` feature. The feature is a port of
Astro's implementation so this should not change the behavior.

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

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

##### Patch Changes

-
[#&#8203;13761](https://redirect.github.com/withastro/astro/pull/13761)
[`a2e8463`](https://redirect.github.com/withastro/astro/commit/a2e84631ad0a8dbc466d1301cc07a031334ffe5b)
Thanks [@&#8203;jp-knj](https://redirect.github.com/jp-knj)! - Adds new
content collections errors

-
[#&#8203;13788](https://redirect.github.com/withastro/astro/pull/13788)
[`7d0b7ac`](https://redirect.github.com/withastro/astro/commit/7d0b7acb38d5140939d9660b2cf5718e9a8b2c15)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a case where an error would not be thrown when using the `<Font
/>` component from the experimental fonts API without adding fonts in
the Astro config

-
[#&#8203;13784](https://redirect.github.com/withastro/astro/pull/13784)
[`d7a1889`](https://redirect.github.com/withastro/astro/commit/d7a188988427d1b157d27b789f918c208ece41f7)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes the experimental fonts API to correctly take `config.base`,
`config.build.assets` and `config.build.assetsPrefix` into account

-
[#&#8203;13777](https://redirect.github.com/withastro/astro/pull/13777)
[`a56b8ea`](https://redirect.github.com/withastro/astro/commit/a56b8eaec486d26cbc61a7c94c152f4ee8cabc7a)
Thanks [@&#8203;L4Ph](https://redirect.github.com/L4Ph)! - Fixed an
issue where looping GIF animation would stop when converted to WebP

-
[#&#8203;13566](https://redirect.github.com/withastro/astro/pull/13566)
[`0489d8f`](https://redirect.github.com/withastro/astro/commit/0489d8fe96fb8ee90284277358e38f55c8e0ab1d)
Thanks [@&#8203;TheOtterlord](https://redirect.github.com/TheOtterlord)!
- Fix build errors being ignored when build.concurrency > 1

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-05-21 20:44:11 +02:00
TrueCharts Bot 3c63bb1952 fix(website): update sharp 0.34.1 → 0.34.2 (#35565)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [sharp](https://sharp.pixelplumbing.com)
([source](https://redirect.github.com/lovell/sharp),
[changelog](https://redirect.github.com/lovell/sharp/blob/main/docs/changelog.md))
| dependencies | patch | [`0.34.1` ->
`0.34.2`](https://renovatebot.com/diffs/npm/sharp/0.34.1/0.34.2) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

<details>
<summary>lovell/sharp (sharp)</summary>

###
[`v0.34.2`](https://redirect.github.com/lovell/sharp/compare/v0.34.1...v0.34.2)

[Compare
Source](https://redirect.github.com/lovell/sharp/compare/v0.34.1...v0.34.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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-05-21 09:06:28 +02:00
TrueCharts Bot f7ad67122f fix(website): update astro 5.7.11 → 5.7.12 (#35176)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.7.11` ->
`5.7.12`](https://renovatebot.com/diffs/npm/astro/5.7.11/5.7.12) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;13752](https://redirect.github.com/withastro/astro/pull/13752)
[`a079c21`](https://redirect.github.com/withastro/astro/commit/a079c21629ecf95b7539d9afdf90831266d00daf)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Improves handling of font URLs not ending with a file extension when
using the experimental fonts API

-
[#&#8203;13750](https://redirect.github.com/withastro/astro/pull/13750)
[`7d3127d`](https://redirect.github.com/withastro/astro/commit/7d3127db9191556d2ead8a1ea35acb972ee67ec3)
Thanks [@&#8203;martrapp](https://redirect.github.com/martrapp)! -
Allows the ClientRouter to open new tabs or windows when submitting
forms by clicking while holding the Cmd, Ctrl, or Shift key.

-
[#&#8203;13765](https://redirect.github.com/withastro/astro/pull/13765)
[`d874fe0`](https://redirect.github.com/withastro/astro/commit/d874fe08f903a44cd8017313accbc02bcf9cb7d9)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a case where font sources with relative protocol URLs would fail
when using the experimental fonts API

-
[#&#8203;13640](https://redirect.github.com/withastro/astro/pull/13640)
[`5e582e7`](https://redirect.github.com/withastro/astro/commit/5e582e7b4d56425d622c97ad933b1da0e7434155)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Allows inferring `weight` and `style` when using the local provider of
the experimental fonts API

If you want Astro to infer those properties directly from your local
font files, leave them undefined:

    ```js
    {
      // No weight specified: infer
      style: 'normal'; // Do not infer
    }
    ```

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-05-08 20:44:33 +02:00
TrueCharts Bot 8db77683fc fix(website): update astro 5.7.10 → 5.7.11 (#35114)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.7.10` ->
`5.7.11`](https://renovatebot.com/diffs/npm/astro/5.7.10/5.7.11) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;13734](https://redirect.github.com/withastro/astro/pull/13734)
[`30aec73`](https://redirect.github.com/withastro/astro/commit/30aec7372b630649e1e484d9453842d3c36eaa26)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Loosen content layer schema types

-
[#&#8203;13751](https://redirect.github.com/withastro/astro/pull/13751)
[`5816b8a`](https://redirect.github.com/withastro/astro/commit/5816b8a6d1295b297c9562ec245db6c60c37f1b1)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Updates `unifont` to support subsets when using the `google` provider
with the experimental fonts API

-
[#&#8203;13756](https://redirect.github.com/withastro/astro/pull/13756)
[`d4547ba`](https://redirect.github.com/withastro/astro/commit/d4547bafef559b4f9ecd6e407d531aa51c46f7be)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Adds a terminal warning when a remote provider returns no data for a
family when using the experimental fonts API

-
[#&#8203;13742](https://redirect.github.com/withastro/astro/pull/13742)
[`f599463`](https://redirect.github.com/withastro/astro/commit/f5994639120552e38e65c5d4d9688c1a3aa92f90)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes optimized fallback css generation to properly add a `src` when
using the experimental fonts API

-
[#&#8203;13740](https://redirect.github.com/withastro/astro/pull/13740)
[`6935540`](https://redirect.github.com/withastro/astro/commit/6935540e44e5c75fd2106e3ae37add5e8ae7c67f)
Thanks [@&#8203;vixalien](https://redirect.github.com/vixalien)! - Fix
cookies set after middleware did a rewrite with `next(url)` not being
applied

-
[#&#8203;13759](https://redirect.github.com/withastro/astro/pull/13759)
[`4a56d0a`](https://redirect.github.com/withastro/astro/commit/4a56d0a44fb472ef2e3a9999c1b69a52da1afed3)
Thanks [@&#8203;jp-knj](https://redirect.github.com/jp-knj)! - Improved
the error handling of certain error cases.

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-05-06 20:23:10 +02:00
TrueCharts Bot 4ffd7eb8e3 fix(website): update astro 5.7.9 → 5.7.10 (#34914) 2025-04-30 20:20:20 +02:00
TrueCharts Bot 1cef11800a fix(website): update astro 5.7.8 → 5.7.9 (#34898) 2025-04-29 20:19:19 +02:00
TrueCharts Bot 657051351b fix(website): update astro 5.7.7 → 5.7.8 (#34886)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.7.7` ->
`5.7.8`](https://renovatebot.com/diffs/npm/astro/5.7.7/5.7.8) |

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;13715](https://redirect.github.com/withastro/astro/pull/13715)
[`b32dffa`](https://redirect.github.com/withastro/astro/commit/b32dffab6e16388c87fb5e8bb423ed02d88586bb)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Updates `unifont` to fix a case where a `unicodeRange` related error
would be thrown when using the experimental fonts API

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-04-29 02:42:34 +02:00
TrueCharts Bot 4bf250455b fix(website): update astro 5.7.6 → 5.7.7 (#34878)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.7.6` ->
`5.7.7`](https://renovatebot.com/diffs/npm/astro/5.7.6/5.7.7) |

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

---

### Release Notes

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

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

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

##### Patch Changes

-
[#&#8203;13705](https://redirect.github.com/withastro/astro/pull/13705)
[`28f8716`](https://redirect.github.com/withastro/astro/commit/28f8716ceef8b30ebb4da8c6ef32acc72405c1e6)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Updates unifont to latest and adds support for `fetch` options from
remote providers when using the experimental fonts API

-
[#&#8203;13692](https://redirect.github.com/withastro/astro/pull/13692)
[`60d5be4`](https://redirect.github.com/withastro/astro/commit/60d5be4af49a72e3739f74424c3d5c423f98c133)
Thanks [@&#8203;Le0Developer](https://redirect.github.com/Le0Developer)!
- Fixes a bug where Astro couldn't probably use `inferSize` for images
that contain apostrophe `'` in their name.

-
[#&#8203;13698](https://redirect.github.com/withastro/astro/pull/13698)
[`ab98f88`](https://redirect.github.com/withastro/astro/commit/ab98f884f2f8639a8f385cdbc919bc829014f64d)
Thanks [@&#8203;sarah11918](https://redirect.github.com/sarah11918)! -
Improves the configuration reference docs for the `adapter` entry with
more relevant text and links.

-
[#&#8203;13706](https://redirect.github.com/withastro/astro/pull/13706)
[`b4929ae`](https://redirect.github.com/withastro/astro/commit/b4929ae9e77f74bde251e81abc0a80e160de774a)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
typechecking for content config schema

-
[#&#8203;13653](https://redirect.github.com/withastro/astro/pull/13653)
[`a7b2dc6`](https://redirect.github.com/withastro/astro/commit/a7b2dc60ca94f42a66575feb190e8b0f36b48e7c)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Reduces the amount of preloaded files for the local provider when
using the experimental fonts API

-
[#&#8203;13653](https://redirect.github.com/withastro/astro/pull/13653)
[`a7b2dc6`](https://redirect.github.com/withastro/astro/commit/a7b2dc60ca94f42a66575feb190e8b0f36b48e7c)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a case where invalid CSS was emitted when using an experimental
fonts API family name containing a space

</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.

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

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-04-28 20:37:44 +02:00
TrueCharts Bot 0868d77458 fix(website): update astro 5.7.5 → 5.7.6 (#34867) 2025-04-28 14:27:59 +02:00
TrueCharts Bot aede45b7ca fix(website): update astro monorepo (patch) (#34700)
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 | patch | [`3.3.0` ->
`3.3.1`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.3.0/3.3.1)
|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.7.4` ->
`5.7.5`](https://renovatebot.com/diffs/npm/astro/5.7.4/5.7.5) |

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.3.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#331)

##### Patch Changes

-
[#&#8203;13591](https://redirect.github.com/withastro/astro/pull/13591)
[`5dd2d3f`](https://redirect.github.com/withastro/astro/commit/5dd2d3fde8a138ed611dedf39ffa5dfeeed315f8)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Removes unused code

</details>

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

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

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

##### Patch Changes

-
[#&#8203;13660](https://redirect.github.com/withastro/astro/pull/13660)
[`620d15d`](https://redirect.github.com/withastro/astro/commit/620d15d8483dfb1822cd47833bc1653e0b704ccb)
Thanks [@&#8203;mingjunlu](https://redirect.github.com/mingjunlu)! -
Adds `server.allowedHosts` docs comment to `AstroUserConfig`

-
[#&#8203;13591](https://redirect.github.com/withastro/astro/pull/13591)
[`5dd2d3f`](https://redirect.github.com/withastro/astro/commit/5dd2d3fde8a138ed611dedf39ffa5dfeeed315f8)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Removes unused code

-
[#&#8203;13669](https://redirect.github.com/withastro/astro/pull/13669)
[`73f24d4`](https://redirect.github.com/withastro/astro/commit/73f24d400acdc48462a7bc5277b8cee2bcf97580)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes an issue where `Astro.originPathname` wasn't returning the correct
value when using rewrites.

-
[#&#8203;13674](https://redirect.github.com/withastro/astro/pull/13674)
[`42388b2`](https://redirect.github.com/withastro/astro/commit/42388b24d6eb866a3129118d22b2f6c71071d0bd)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes a case where an experimental fonts API error would be thrown
when using another `astro:assets` API

-
[#&#8203;13654](https://redirect.github.com/withastro/astro/pull/13654)
[`4931457`](https://redirect.github.com/withastro/astro/commit/49314575a76b52b43e491a0a33c0ccaf9cafb058)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Fixes `fontProviders.google()` so it can forward options to the
unifont provider, when using the experimental fonts API

- Updated dependencies
\[[`5dd2d3f`](https://redirect.github.com/withastro/astro/commit/5dd2d3fde8a138ed611dedf39ffa5dfeeed315f8)]:
-
[@&#8203;astrojs/telemetry](https://redirect.github.com/astrojs/telemetry)[@&#8203;3](https://redirect.github.com/3).2.1

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-04-23 14:21:03 +02:00