Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 5.8.0 to 5.8.1. <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>[email protected]</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13037">#13037</a> <a href="https://github.com/withastro/astro/commit/de2fc9b3c406c21683b8a692fafa3cbc77ca552b"><code>de2fc9b</code></a> Thanks <a href="https://github.com/nanarino"><code>@nanarino</code></a>! - Fixes rendering of the <code>popover</code> attribute when it has a boolean value</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13851">#13851</a> <a href="https://github.com/withastro/astro/commit/45ae95a507d5e83b5e38ce1b338c3202ab7e8d76"><code>45ae95a</code></a> Thanks <a href="https://github.com/ascorbic"><code>@ascorbic</code></a>! - Allows disabling default styles for responsive images</p> <p>This change adds a new <code>image.experimentalDefaultStyles</code> option that allows you to disable the default styles applied to responsive images.</p> <p>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.</p> <p><code>image.experimentalDefaultStyles</code> is a boolean option that defaults to <code>true</code>, so you can change it in your Astro config file like this:</p> <pre lang="js"><code>export default { image: { experimentalDefaultStyles: false, }, experimental: { responsiveImages: true, }, }; </code></pre> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13858">#13858</a> <a href="https://github.com/withastro/astro/commit/cb1a1681c844737477670ac42bb051bf93fae0a3"><code>cb1a168</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - Fixes the warning shown when client directives are used on Astro components</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12574">#12574</a> <a href="https://github.com/withastro/astro/commit/da266d0578c1a603d6f57913c6fa8eefd61a354e"><code>da266d0</code></a> Thanks <a href="https://github.com/apatel369"><code>@apatel369</code></a>! - Allows using server islands in mdx files</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13843">#13843</a> <a href="https://github.com/withastro/astro/commit/fbcfa683d38f13378678c25b53cd789107752087"><code>fbcfa68</code></a> Thanks <a href="https://github.com/z1haze"><code>@z1haze</code></a>! - Export type <code>AstroSession</code> to allow use in explicitly typed safe code.</p> </li> </ul> </blockquote> </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.8.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13037">#13037</a> <a href="https://github.com/withastro/astro/commit/de2fc9b3c406c21683b8a692fafa3cbc77ca552b"><code>de2fc9b</code></a> Thanks <a href="https://github.com/nanarino"><code>@nanarino</code></a>! - Fixes rendering of the <code>popover</code> attribute when it has a boolean value</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13851">#13851</a> <a href="https://github.com/withastro/astro/commit/45ae95a507d5e83b5e38ce1b338c3202ab7e8d76"><code>45ae95a</code></a> Thanks <a href="https://github.com/ascorbic"><code>@ascorbic</code></a>! - Allows disabling default styles for responsive images</p> <p>This change adds a new <code>image.experimentalDefaultStyles</code> option that allows you to disable the default styles applied to responsive images.</p> <p>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.</p> <p><code>image.experimentalDefaultStyles</code> is a boolean option that defaults to <code>true</code>, so you can change it in your Astro config file like this:</p> <pre lang="js"><code>export default { image: { experimentalDefaultStyles: false, }, experimental: { responsiveImages: true, }, }; </code></pre> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13858">#13858</a> <a href="https://github.com/withastro/astro/commit/cb1a1681c844737477670ac42bb051bf93fae0a3"><code>cb1a168</code></a> Thanks <a href="https://github.com/florian-lefebvre"><code>@florian-lefebvre</code></a>! - Fixes the warning shown when client directives are used on Astro components</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12574">#12574</a> <a href="https://github.com/withastro/astro/commit/da266d0578c1a603d6f57913c6fa8eefd61a354e"><code>da266d0</code></a> Thanks <a href="https://github.com/apatel369"><code>@apatel369</code></a>! - Allows using server islands in mdx files</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/13843">#13843</a> <a href="https://github.com/withastro/astro/commit/fbcfa683d38f13378678c25b53cd789107752087"><code>fbcfa68</code></a> Thanks <a href="https://github.com/z1haze"><code>@z1haze</code></a>! - Export type <code>AstroSession</code> to allow use in explicitly typed safe code.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/0c50c316c883f87b4ed3d269daf67952d70ee39b"><code>0c50c31</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13845">#13845</a>)</li> <li><a href="https://github.com/withastro/astro/commit/9dbe7eac92d346e21184e468e92b458cdb71529c"><code>9dbe7ea</code></a> chore: fix name in jsdoc (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13869">#13869</a>)</li> <li><a href="https://github.com/withastro/astro/commit/de2fc9b3c406c21683b8a692fafa3cbc77ca552b"><code>de2fc9b</code></a> Fixes attribute rendering for <code>popover</code> (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13037">#13037</a>)</li> <li><a href="https://github.com/withastro/astro/commit/45ae95a507d5e83b5e38ce1b338c3202ab7e8d76"><code>45ae95a</code></a> feat: allow disabling of default responsive image styles (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13851">#13851</a>)</li> <li><a href="https://github.com/withastro/astro/commit/cb1a1681c844737477670ac42bb051bf93fae0a3"><code>cb1a168</code></a> fix: client directive on astro component warning (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13858">#13858</a>)</li> <li><a href="https://github.com/withastro/astro/commit/df75aca3cece4a58642566c1c8dcbffc118fe3ba"><code>df75aca</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/da266d0578c1a603d6f57913c6fa8eefd61a354e"><code>da266d0</code></a> feat: add server islands support for <code>MDX</code> (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12574">#12574</a>)</li> <li><a href="https://github.com/withastro/astro/commit/fbcfa683d38f13378678c25b53cd789107752087"><code>fbcfa68</code></a> fix(astro): Export AstroSession type (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/13843">#13843</a>)</li> <li>See full diff in <a href="https://github.com/withastro/astro/commits/[email protected]/packages/astro">compare view</a></li> </ul> </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>
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by dependabot[bot] and has received 2 comments.