Skip to content

Commit 8039bab

Browse files
chore(deps): bump astro from 4.7.0 to 4.16.4 (#104)
Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 4.7.0 to 4.16.4. <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@4.16.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12223">#12223</a> <a href="https://github.com/withastro/astro/commit/79ffa5d9f75c16465134aa4ed4a3d1d59908ba8b"><code>79ffa5d</code></a> Thanks <a href="https://github.com/ArmandPhilippot"><code>@​ArmandPhilippot</code></a>! - Fixes a false positive reported by the dev toolbar Audit app where a label was considered missing when associated with a button</p> <p>The <code>button</code> element can be <a href="https://www.w3.org/TR/2011/WD-html5-author-20110809/forms.html#category-label">used with a label</a> (e.g. to create a switch) and should not be reported as an accessibility issue when used as a child of a <code>label</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12199">#12199</a> <a href="https://github.com/withastro/astro/commit/c3513523608f319b43c050e391be08e68b801329"><code>c351352</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes a regression in the computation of <code>Astro.currentLocale</code></p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12222">#12222</a> <a href="https://github.com/withastro/astro/commit/fb5569583b11ef585cd0a79e97e7e9dc653f6afa"><code>fb55695</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes an issue where the edge middleware couldn't correctly compute the client IP address when calling <code>ctx.clientAddress()</code></p> </li> </ul> <h2>astro@4.16.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12220">#12220</a> <a href="https://github.com/withastro/astro/commit/b0493596dc338377198d0a39efc813dad515b624"><code>b049359</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Fixes accidental internal <code>setOnSetGetEnv</code> parameter rename that caused runtime errors</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12197">#12197</a> <a href="https://github.com/withastro/astro/commit/2aa2dfd05dc7b7e6ad13451e6cc2afa9b1c92a32"><code>2aa2dfd</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fix a regression where a port was incorrectly added to the <code>Astro.url</code></p> </li> </ul> <h2>astro@4.16.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/12206">#12206</a> <a href="https://github.com/withastro/astro/commit/12b00225067445629e5ae451d763d03f70065f88"><code>12b0022</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Reverts <a href="https://redirect.github.com/withastro/astro/pull/12173">withastro/astro#12173</a> which caused <code>Can't modify immutable headers</code> warnings and 500 errors on Cloudflare Pages</li> </ul> <h2>astro@4.16.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12177">#12177</a> <a href="https://github.com/withastro/astro/commit/a4ffbfaa5cb460c12bd486fd75e36147f51d3e5e"><code>a4ffbfa</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Ensure we target scripts for execution in the router</p> <p>Using <code>document.scripts</code> is unsafe because if the application has a <code>name=&quot;scripts&quot;</code> this will shadow the built-in <code>document.scripts</code>. Fix is to use <code>getElementsByTagName</code> to ensure we're only grabbing real scripts.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12173">#12173</a> <a href="https://github.com/withastro/astro/commit/2d10de5f212323e6e19c7ea379826dcc18fe739c"><code>2d10de5</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.</p> </li> </ul> <h2>astro@4.16.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12039">#12039</a> <a href="https://github.com/withastro/astro/commit/710a1a11f488ff6ed3da6d3e0723b2322ccfe27b"><code>710a1a1</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Adds a <code>markdown.shikiConfig.langAlias</code> option that allows <a href="https://shiki.style/guide/load-lang#custom-language-aliases">aliasing a non-supported code language to a known language</a>. This is useful when the language of your code samples is not <a href="https://shiki.style/languages">a built-in Shiki language</a>, but you want your Markdown source to contain an accurate language while also displaying syntax highlighting.</p> <p>The following example configures Shiki to highlight <code>cjs</code> code blocks using the <code>javascript</code> syntax highlighter:</p> <pre lang="js"><code>import { defineConfig } from 'astro/config'; <p>export default defineConfig({ markdown: { shikiConfig: { langAlias: { cjs: 'javascript', }, }, }, </code></pre></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>4.16.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12223">#12223</a> <a href="https://github.com/withastro/astro/commit/79ffa5d9f75c16465134aa4ed4a3d1d59908ba8b"><code>79ffa5d</code></a> Thanks <a href="https://github.com/ArmandPhilippot"><code>@​ArmandPhilippot</code></a>! - Fixes a false positive reported by the dev toolbar Audit app where a label was considered missing when associated with a button</p> <p>The <code>button</code> element can be <a href="https://www.w3.org/TR/2011/WD-html5-author-20110809/forms.html#category-label">used with a label</a> (e.g. to create a switch) and should not be reported as an accessibility issue when used as a child of a <code>label</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12199">#12199</a> <a href="https://github.com/withastro/astro/commit/c3513523608f319b43c050e391be08e68b801329"><code>c351352</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes a regression in the computation of <code>Astro.currentLocale</code></p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12222">#12222</a> <a href="https://github.com/withastro/astro/commit/fb5569583b11ef585cd0a79e97e7e9dc653f6afa"><code>fb55695</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes an issue where the edge middleware couldn't correctly compute the client IP address when calling <code>ctx.clientAddress()</code></p> </li> </ul> <h2>4.16.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12220">#12220</a> <a href="https://github.com/withastro/astro/commit/b0493596dc338377198d0a39efc813dad515b624"><code>b049359</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Fixes accidental internal <code>setOnSetGetEnv</code> parameter rename that caused runtime errors</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12197">#12197</a> <a href="https://github.com/withastro/astro/commit/2aa2dfd05dc7b7e6ad13451e6cc2afa9b1c92a32"><code>2aa2dfd</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fix a regression where a port was incorrectly added to the <code>Astro.url</code></p> </li> </ul> <h2>4.16.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/12206">#12206</a> <a href="https://github.com/withastro/astro/commit/12b00225067445629e5ae451d763d03f70065f88"><code>12b0022</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Reverts <a href="https://redirect.github.com/withastro/astro/pull/12173">withastro/astro#12173</a> which caused <code>Can't modify immutable headers</code> warnings and 500 errors on Cloudflare Pages</li> </ul> <h2>4.16.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12177">#12177</a> <a href="https://github.com/withastro/astro/commit/a4ffbfaa5cb460c12bd486fd75e36147f51d3e5e"><code>a4ffbfa</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Ensure we target scripts for execution in the router</p> <p>Using <code>document.scripts</code> is unsafe because if the application has a <code>name=&quot;scripts&quot;</code> this will shadow the built-in <code>document.scripts</code>. Fix is to use <code>getElementsByTagName</code> to ensure we're only grabbing real scripts.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12173">#12173</a> <a href="https://github.com/withastro/astro/commit/2d10de5f212323e6e19c7ea379826dcc18fe739c"><code>2d10de5</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.</p> </li> </ul> <h2>4.16.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/12039">#12039</a> <a href="https://github.com/withastro/astro/commit/710a1a11f488ff6ed3da6d3e0723b2322ccfe27b"><code>710a1a1</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Adds a <code>markdown.shikiConfig.langAlias</code> option that allows <a href="https://shiki.style/guide/load-lang#custom-language-aliases">aliasing a non-supported code language to a known language</a>. This is useful when the language of your code samples is not <a href="https://shiki.style/languages">a built-in Shiki language</a>, but you want your Markdown source to contain an accurate language while also displaying syntax highlighting.</p> <p>The following example configures Shiki to highlight <code>cjs</code> code blocks using the <code>javascript</code> syntax highlighter:</p> <pre lang="js"><code>import { defineConfig } from 'astro/config'; <p>export default defineConfig({ markdown: { shikiConfig: { </code></pre></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/6df5bba870001ccaf7eee5ad7707ba6c90f955c4"><code>6df5bba</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12225">#12225</a>)</li> <li><a href="https://github.com/withastro/astro/commit/64bb796c0fee551b8b2349b5246946f60080565b"><code>64bb796</code></a> Use real filesystem for unit testing (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12172">#12172</a>)</li> <li><a href="https://github.com/withastro/astro/commit/5ab2d980aae8c92e71e01a8bd21c8d771e576085"><code>5ab2d98</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12218">#12218</a>)</li> <li><a href="https://github.com/withastro/astro/commit/79ffa5d9f75c16465134aa4ed4a3d1d59908ba8b"><code>79ffa5d</code></a> fix(dev-toolbar): false positive in Audit with a11y check on labels (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12223">#12223</a>)</li> <li><a href="https://github.com/withastro/astro/commit/fb5569583b11ef585cd0a79e97e7e9dc653f6afa"><code>fb55695</code></a> fix(middleware): compute client address (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12222">#12222</a>)</li> <li><a href="https://github.com/withastro/astro/commit/d6f03e405d142363083db5f42b836aacdad561b4"><code>d6f03e4</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/c3513523608f319b43c050e391be08e68b801329"><code>c351352</code></a> fix(i18n): correctly compute the current locale (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12199">#12199</a>)</li> <li><a href="https://github.com/withastro/astro/commit/a33804110df32a7b5d1ae5b77c5a2e050541de79"><code>a338041</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12221">#12221</a>)</li> <li><a href="https://github.com/withastro/astro/commit/59a2fbc2132f34c4be3b2d80b0fb70e90bd081c4"><code>59a2fbc</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/2aa2dfd05dc7b7e6ad13451e6cc2afa9b1c92a32"><code>2aa2dfd</code></a> fix: revert regression of port computation (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12197">#12197</a>)</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@4.16.4/packages/astro">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astro&package-manager=npm_and_yarn&previous-version=4.7.0&new-version=4.16.4)](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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/jargonsdev/jargons.dev/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b1a6d8d commit 8039bab

2 files changed

Lines changed: 796 additions & 790 deletions

File tree

0 commit comments

Comments
 (0)