deps(deps): bump astro from 5.14.4 to 5.14.6
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.14.4 to 5.14.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/withastro/astro/releases">astro's releases</a>.</em></p>
<blockquote>
<h2>astro@5.14.6</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14562">#14562</a> <a href="https://github.com/withastro/astro/commit/722bba0a57984b6b1c4585627cafa22af64e4251"><code>722bba0</code></a> Thanks <a href="https://github.com/erbierc"><code>@erbierc</code></a>! - Fixes a bug where the behavior of the "muted" HTML attribute was inconsistent with that of other attributes.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14538">#14538</a> <a href="https://github.com/withastro/astro/commit/51ebe6ae9307f5c2124162212493f61152221a43"><code>51ebe6a</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - Improves how Actions are implemented</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14548">#14548</a> <a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> Thanks <a href="https://github.com/ascorbic"><code>@ascorbic</code></a>! - Removes support for the <code>maxAge</code> property in <code>cacheHint</code> objects returned by live loaders.</p>
<h4>:warning: Breaking change for experimental live content collections only</h4>
<p>Feedback showed that this did not make sense to set at the loader level, since the loader does not know how long each individual entry should be cached for.</p>
<p>If your live loader returns cache hints with <code>maxAge</code>, you need to remove this property:</p>
<pre lang="diff"><code>return {
entries: [...],
cacheHint: {
tags: ['my-tag'],
- maxAge: 60,
lastModified: new Date(),
},
};
</code></pre>
<p>The <code>cacheHint</code> object now only supports <code>tags</code> and <code>lastModified</code> properties. If you want to set the max age for a page, you can set the headers manually:</p>
<pre lang="astro"><code>---
Astro.headers.set('cdn-cache-control', 'max-age=3600');
---
</code></pre>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14548">#14548</a> <a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> Thanks <a href="https://github.com/ascorbic"><code>@ascorbic</code></a>! - Adds missing <code>rendered</code> property to experimental live collections entry type</p>
<p>Live collections support a <code>rendered</code> property that allows you to provide pre-rendered HTML for each entry. While this property was documented and implemented, it was missing from the TypeScript types. This could lead to type errors when trying to use it in a TypeScript project.</p>
<p>No changes to your project code are necessary. You can continue to use the <code>rendered</code> property as before, and it will no longer produce TypeScript errors.</p>
</li>
</ul>
<h2>astro@5.14.5</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14525">#14525</a> <a href="https://github.com/withastro/astro/commit/4f5578190dab96ad0cd117b9e9bb96fdd18730ae"><code>4f55781</code></a> Thanks <a href="https://github.com/penx"><code>@penx</code></a>! - Fixes <code>defineLiveCollection()</code> types</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14441">#14441</a> <a href="https://github.com/withastro/astro/commit/62ec8ea14a42c1dba81f68c50e987b111fabcce5"><code>62ec8ea</code></a> Thanks <a href="https://github.com/upsuper"><code>@upsuper</code></a>! - Updates redirect handling to be consistent across <code>static</code> and <code>server</code> output, aligning with the behavior of other adapters.</p>
<p>Previously, the Node.js adapter used default HTML files with meta refresh tags when in <code>static</code> output. This often resulted in an extra flash of the page on redirect, while also not applying the proper status code for redirections. It's also likely less friendly to search engines.</p>
<p>This update ensures that configured redirects are always handled as HTTP redirects regardless of output mode, and the default HTML files for the redirects are no longer generated in <code>static</code> output. It makes the Node.js adapter more consistent with the other official adapters.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md">astro's changelog</a>.</em></p>
<blockquote>
<h2>5.14.6</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14562">#14562</a> <a href="https://github.com/withastro/astro/commit/722bba0a57984b6b1c4585627cafa22af64e4251"><code>722bba0</code></a> Thanks <a href="https://github.com/erbierc"><code>@erbierc</code></a>! - Fixes a bug where the behavior of the "muted" HTML attribute was inconsistent with that of other attributes.</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14538">#14538</a> <a href="https://github.com/withastro/astro/commit/51ebe6ae9307f5c2124162212493f61152221a43"><code>51ebe6a</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - Improves how Actions are implemented</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14548">#14548</a> <a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> Thanks <a href="https://github.com/ascorbic"><code>@ascorbic</code></a>! - Removes support for the <code>maxAge</code> property in <code>cacheHint</code> objects returned by live loaders.</p>
<h4>:warning: Breaking change for experimental live content collections only</h4>
<p>Feedback showed that this did not make sense to set at the loader level, since the loader does not know how long each individual entry should be cached for.</p>
<p>If your live loader returns cache hints with <code>maxAge</code>, you need to remove this property:</p>
<pre lang="diff"><code>return {
entries: [...],
cacheHint: {
tags: ['my-tag'],
- maxAge: 60,
lastModified: new Date(),
},
};
</code></pre>
<p>The <code>cacheHint</code> object now only supports <code>tags</code> and <code>lastModified</code> properties. If you want to set the max age for a page, you can set the headers manually:</p>
<pre lang="astro"><code>---
Astro.headers.set('cdn-cache-control', 'max-age=3600');
---
</code></pre>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14548">#14548</a> <a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> Thanks <a href="https://github.com/ascorbic"><code>@ascorbic</code></a>! - Adds missing <code>rendered</code> property to experimental live collections entry type</p>
<p>Live collections support a <code>rendered</code> property that allows you to provide pre-rendered HTML for each entry. While this property was documented and implemented, it was missing from the TypeScript types. This could lead to type errors when trying to use it in a TypeScript project.</p>
<p>No changes to your project code are necessary. You can continue to use the <code>rendered</code> property as before, and it will no longer produce TypeScript errors.</p>
</li>
</ul>
<h2>5.14.5</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14525">#14525</a> <a href="https://github.com/withastro/astro/commit/4f5578190dab96ad0cd117b9e9bb96fdd18730ae"><code>4f55781</code></a> Thanks <a href="https://github.com/penx"><code>@penx</code></a>! - Fixes <code>defineLiveCollection()</code> types</p>
</li>
<li>
<p><a href="https://redirect.github.com/withastro/astro/pull/14441">#14441</a> <a href="https://github.com/withastro/astro/commit/62ec8ea14a42c1dba81f68c50e987b111fabcce5"><code>62ec8ea</code></a> Thanks <a href="https://github.com/upsuper"><code>@upsuper</code></a>! - Updates redirect handling to be consistent across <code>static</code> and <code>server</code> output, aligning with the behavior of other adapters.</p>
<p>Previously, the Node.js adapter used default HTML files with meta refresh tags when in <code>static</code> output. This often resulted in an extra flash of the page on redirect, while also not applying the proper status code for redirections. It's also likely less friendly to search engines.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/withastro/astro/commit/4f1afc34f4c71740575b129eaa6e4d0a8b58ba52"><code>4f1afc3</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14551">#14551</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/722bba0a57984b6b1c4585627cafa22af64e4251"><code>722bba0</code></a> Fix: add muted to html boolean attributes (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14562">#14562</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/9f0601dfb84e702252a674fd0f4473d7f68dd72e"><code>9f0601d</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/6cdade49c975e717f098bb4aa7f03a7b845d0a7c"><code>6cdade4</code></a> fix: updates types for live collection entries (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14548">#14548</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/af801ca7a33b7c22a1ae0507a9921d4e97a11096"><code>af801ca</code></a> [ci] format</li>
<li><a href="https://github.com/withastro/astro/commit/51ebe6ae9307f5c2124162212493f61152221a43"><code>51ebe6a</code></a> refactor(actions): plugin and virtual modules (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14538">#14538</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/adaaced47135b7360556679e8defefd3c9733b2b"><code>adaaced</code></a> chore: bump biome and errors (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14539">#14539</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/ef7af660978bca38a83145890497b192af3479aa"><code>ef7af66</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14527">#14527</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/62ec8ea14a42c1dba81f68c50e987b111fabcce5"><code>62ec8ea</code></a> feat(node): handle redirects dynamically in static mode (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14441">#14441</a>)</li>
<li><a href="https://github.com/withastro/astro/commit/4f5578190dab96ad0cd117b9e9bb96fdd18730ae"><code>4f55781</code></a> Update content.d.ts astro/loader => loaders (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/14525">#14525</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@5.14.6/packages/astro">compare view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for astro since your current version.</p>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details>
authored by