Bump the prod-dependencies group with 4 updates #63

Merged
dependabot[bot] merged 2 commits from dependabot/npm_and_yarn/prod-dependencies-752a23fdcb into main 2024-02-20 00:34:56 +00:00
dependabot[bot] commented 2024-02-19 11:14:57 +00:00 (Migrated from github.com)

Bumps the prod-dependencies group with 4 updates: astro, vite, astro-seo and sass.

Updates astro from 4.3.7 to 4.4.0

Release notes

Sourced from astro's releases.

astro@4.4.0

Minor Changes

  • #9614 d469bebd7b45b060dc41d82ab1cf18ee6de7e051 Thanks @​matthewp! - Improves Node.js streaming performance.

    This uses an AsyncIterable instead of a ReadableStream to do streaming in Node.js. This is a non-standard enhancement by Node, which is done only in that environment.

  • #10001 748b2e87cd44d8bcc1ab9d7e504703057e2000cd Thanks @​bholmesdev! - Removes content collection warning when a configured collection does not have a matching directory name. This should resolve i18n collection warnings for Starlight users.

    This also ensures configured collection names are always included in getCollection() and getEntry() types even when a matching directory is absent. We hope this allows users to discover typos during development by surfacing type information.

  • #10074 7443929381b47db0639c49a4d32aec4177bd9102 Thanks @​Princesseuh! - Add a UI showing the list of found problems when using the audit app in the dev toolbar

  • #10099 b340f8fe3aaa81e38c4f1aa41498b159dc733d86 Thanks @​martrapp! - Fixes a regression where view transition names containing special characters such as spaces or punctuation stopped working.

    Regular use naming your transitions with transition: name is unaffected.

    However, this fix may result in breaking changes if your project relies on the particular character encoding strategy Astro uses to translate transition:name directives into values of the underlying CSS view-transition-name property. For example, Welcome to Astro is now encoded as Welcome_20to_20Astro_2e.

    This mainly affects spaces and punctuation marks but no Unicode characters with codes >= 128.

  • #9976 91f75afbc642b6e73dd4ec18a1fe2c3128c68132 Thanks @​OliverSpeir! - Adds a new optional astro:assets image attribute inferSize for use with remote images.

    Remote images can now have their dimensions inferred just like local images. Setting inferSize to true allows you to use getImage() and the <Image /> and <Picture /> components without setting the width and height properties.

    ---
    import { Image, Picture, getImage } from 'astro:assets';
    const myPic = await getImage({ src: 'https://example.com/example.png', inferSize: true });
    ---
    

    <Image src="https://example.com/example.png" inferSize alt="" /> <Picture src="https://example.com/example.png" inferSize alt="" />

    Read more about using inferSize with remote images in our documentation.

  • #10015 6884b103c8314a43e926c6acdf947cbf812a21f4 Thanks @​Princesseuh! - Adds initial support for performance audits to the dev toolbar

Patch Changes

  • #10116 4bcc249a9f34aaac59658ca626c828bd6dbb8046 Thanks @​lilnasy! - Fixes an issue where the dev server froze when typescript aliases were used.

  • #10096 227cd83a51bbd451dc223fd16f4cf1b87b8e44f8 Thanks @​Fryuni! - Fixes regression on routing priority for multi-layer index pages

    The sorting algorithm positions more specific routes before less specific routes, and considers index pages to be more specific than a dynamic route with a rest parameter inside of it. This means that /blog is considered more specific than /blog/[...slug].

    But this special case was being applied incorrectly to indexes, which could cause a problem in scenarios like the following:

... (truncated)

Changelog

Sourced from astro's changelog.

4.4.0

Minor Changes

  • #9614 d469bebd7b45b060dc41d82ab1cf18ee6de7e051 Thanks @​matthewp! - Improves Node.js streaming performance.

    This uses an AsyncIterable instead of a ReadableStream to do streaming in Node.js. This is a non-standard enhancement by Node, which is done only in that environment.

  • #10001 748b2e87cd44d8bcc1ab9d7e504703057e2000cd Thanks @​bholmesdev! - Removes content collection warning when a configured collection does not have a matching directory name. This should resolve i18n collection warnings for Starlight users.

    This also ensures configured collection names are always included in getCollection() and getEntry() types even when a matching directory is absent. We hope this allows users to discover typos during development by surfacing type information.

  • #10074 7443929381b47db0639c49a4d32aec4177bd9102 Thanks @​Princesseuh! - Add a UI showing the list of found problems when using the audit app in the dev toolbar

  • #10099 b340f8fe3aaa81e38c4f1aa41498b159dc733d86 Thanks @​martrapp! - Fixes a regression where view transition names containing special characters such as spaces or punctuation stopped working.

    Regular use naming your transitions with transition: name is unaffected.

    However, this fix may result in breaking changes if your project relies on the particular character encoding strategy Astro uses to translate transition:name directives into values of the underlying CSS view-transition-name property. For example, Welcome to Astro is now encoded as Welcome_20to_20Astro_2e.

    This mainly affects spaces and punctuation marks but no Unicode characters with codes >= 128.

  • #9976 91f75afbc642b6e73dd4ec18a1fe2c3128c68132 Thanks @​OliverSpeir! - Adds a new optional astro:assets image attribute inferSize for use with remote images.

    Remote images can now have their dimensions inferred just like local images. Setting inferSize to true allows you to use getImage() and the <Image /> and <Picture /> components without setting the width and height properties.

    ---
    import { Image, Picture, getImage } from 'astro:assets';
    const myPic = await getImage({ src: 'https://example.com/example.png', inferSize: true });
    ---
    

    <Image src="https://example.com/example.png" inferSize alt="" /> <Picture src="https://example.com/example.png" inferSize alt="" />

    Read more about using inferSize with remote images in our documentation.

  • #10015 6884b103c8314a43e926c6acdf947cbf812a21f4 Thanks @​Princesseuh! - Adds initial support for performance audits to the dev toolbar

Patch Changes

  • #10116 4bcc249a9f34aaac59658ca626c828bd6dbb8046 Thanks @​lilnasy! - Fixes an issue where the dev server froze when typescript aliases were used.

  • #10096 227cd83a51bbd451dc223fd16f4cf1b87b8e44f8 Thanks @​Fryuni! - Fixes regression on routing priority for multi-layer index pages

    The sorting algorithm positions more specific routes before less specific routes, and considers index pages to be more specific than a dynamic route with a rest parameter inside of it. This means that /blog is considered more specific than /blog/[...slug].

    But this special case was being applied incorrectly to indexes, which could cause a problem in scenarios like the following:

... (truncated)

Commits

Updates vite from 5.1.2 to 5.1.3

Changelog

Sourced from vite's changelog.

5.1.3 (2024-02-15)

Commits

Updates astro-seo from 0.8.0 to 0.8.2

Release notes

Sourced from astro-seo's releases.

v0.8.2

Bug Fixes

  • Add sizes attribute to Link type

v0.8.1

Bug Fixes

Changelog

Sourced from astro-seo's changelog.

0.8.2 (2024-02-19)

Bug Fixes

  • Add sizes attribute to Link type

0.8.1 (2024-02-18)

Bug Fixes

Commits
  • 434e008 chore(release): 0.8.2
  • 9862453 Merge pull request #89 from gvkhna:main
  • 5ba950e test: Add test for extended link sizes attribute
  • aa9f0e1 add sizes override to Link element
  • d2f841d chore(release): 0.8.1
  • 9c4096b Bump CI node version to 18.x
  • be7850c chore: Make CI work again
  • ce3ef0f Test w/ latest Astro version
  • 32f8d29 Merge pull request #83 from Mansi1:main
  • 500b254 Merge pull request #85 from mikeethedude:extended-tag-order
  • Additional commits viewable in compare view

Updates sass from 1.70.0 to 1.71.0

Release notes

Sourced from sass's releases.

Dart Sass 1.71.0

To install Sass 1.71.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

For more information about pkg: importers, see the announcement on the Sass blog.

Command-Line Interface

  • Add a --pkg-importer flag to enable built-in pkg: importers. Currently this only supports the Node.js package resolution algorithm, via --pkg-importer=node. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss.

JavaScript API

  • Add a NodePackageImporter importer that can be passed to the importers option. This loads files using the pkg: URL scheme according to the Node.js package resolution algorithm. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single optional argument, which indicates the base directory to use when locating node_modules directories. It defaults to path.dirname(require.main.filename).

Dart API

  • Add a NodePackageImporter importer that can be passed to the importers option. This loads files using the pkg: URL scheme according to the Node.js package resolution algorithm. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single argument, which indicates the base directory to use when locating node_modules directories.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.71.0

For more information about pkg: importers, see the announcement on the Sass blog.

Command-Line Interface

  • Add a --pkg-importer flag to enable built-in pkg: importers. Currently this only supports the Node.js package resolution algorithm, via --pkg-importer=node. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss.

JavaScript API

  • Add a NodePackageImporter importer that can be passed to the importers option. This loads files using the pkg: URL scheme according to the Node.js package resolution algorithm. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single optional argument, which indicates the base directory to use when locating node_modules directories. It defaults to path.dirname(require.main.filename).

Dart API

  • Add a NodePackageImporter importer that can be passed to the importers option. This loads files using the pkg: URL scheme according to the Node.js package resolution algorithm. For example, @use "pkg:bootstrap" will load node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single argument, which indicates the base directory to use when locating node_modules directories.
Commits

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 commands and options

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Bumps the prod-dependencies group with 4 updates: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite), [astro-seo](https://github.com/jonasmerlin/astro-seo) and [sass](https://github.com/sass/dart-sass). Updates `astro` from 4.3.7 to 4.4.0 <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.4.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9614">#9614</a> <a href="https://github.com/withastro/astro/commit/d469bebd7b45b060dc41d82ab1cf18ee6de7e051"><code>d469bebd7b45b060dc41d82ab1cf18ee6de7e051</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Improves Node.js streaming performance.</p> <p>This uses an <code>AsyncIterable</code> instead of a <code>ReadableStream</code> to do streaming in Node.js. This is a non-standard enhancement by Node, which is done only in that environment.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10001">#10001</a> <a href="https://github.com/withastro/astro/commit/748b2e87cd44d8bcc1ab9d7e504703057e2000cd"><code>748b2e87cd44d8bcc1ab9d7e504703057e2000cd</code></a> Thanks <a href="https://github.com/bholmesdev"><code>@​bholmesdev</code></a>! - Removes content collection warning when a configured collection does not have a matching directory name. This should resolve <code>i18n</code> collection warnings for Starlight users.</p> <p>This also ensures configured collection names are always included in <code>getCollection()</code> and <code>getEntry()</code> types even when a matching directory is absent. We hope this allows users to discover typos during development by surfacing type information.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10074">#10074</a> <a href="https://github.com/withastro/astro/commit/7443929381b47db0639c49a4d32aec4177bd9102"><code>7443929381b47db0639c49a4d32aec4177bd9102</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Add a UI showing the list of found problems when using the audit app in the dev toolbar</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10099">#10099</a> <a href="https://github.com/withastro/astro/commit/b340f8fe3aaa81e38c4f1aa41498b159dc733d86"><code>b340f8fe3aaa81e38c4f1aa41498b159dc733d86</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Fixes a regression where view transition names containing special characters such as spaces or punctuation stopped working.</p> <p>Regular use naming your transitions with <code>transition: name</code> is unaffected.</p> <p>However, this fix may result in breaking changes if your project relies on the particular character encoding strategy Astro uses to translate <code>transition:name</code> directives into values of the underlying CSS <code>view-transition-name</code> property. For example, <code>Welcome to Astro</code> is now encoded as <code>Welcome_20to_20Astro_2e</code>.</p> <p>This mainly affects spaces and punctuation marks but no Unicode characters with codes &gt;= 128.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9976">#9976</a> <a href="https://github.com/withastro/astro/commit/91f75afbc642b6e73dd4ec18a1fe2c3128c68132"><code>91f75afbc642b6e73dd4ec18a1fe2c3128c68132</code></a> Thanks <a href="https://github.com/OliverSpeir"><code>@​OliverSpeir</code></a>! - Adds a new optional <code>astro:assets</code> image attribute <code>inferSize</code> for use with remote images.</p> <p>Remote images can now have their dimensions inferred just like local images. Setting <code>inferSize</code> to <code>true</code> allows you to use <code>getImage()</code> and the <code>&lt;Image /&gt;</code> and <code>&lt;Picture /&gt;</code> components without setting the <code>width</code> and <code>height</code> properties.</p> <pre lang="astro"><code>--- import { Image, Picture, getImage } from 'astro:assets'; const myPic = await getImage({ src: 'https://example.com/example.png', inferSize: true }); --- <p>&lt;Image src=&quot;<a href="https://example.com/example.png">https://example.com/example.png</a>&quot; inferSize alt=&quot;&quot; /&gt; &lt;Picture src=&quot;<a href="https://example.com/example.png">https://example.com/example.png</a>&quot; inferSize alt=&quot;&quot; /&gt; </code></pre></p> <p>Read more about <a href="https://docs.astro.build/en/guides/images/#infersize">using <code>inferSize</code> with remote images</a> in our documentation.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10015">#10015</a> <a href="https://github.com/withastro/astro/commit/6884b103c8314a43e926c6acdf947cbf812a21f4"><code>6884b103c8314a43e926c6acdf947cbf812a21f4</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Adds initial support for performance audits to the dev toolbar</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10116">#10116</a> <a href="https://github.com/withastro/astro/commit/4bcc249a9f34aaac59658ca626c828bd6dbb8046"><code>4bcc249a9f34aaac59658ca626c828bd6dbb8046</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Fixes an issue where the dev server froze when typescript aliases were used.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10096">#10096</a> <a href="https://github.com/withastro/astro/commit/227cd83a51bbd451dc223fd16f4cf1b87b8e44f8"><code>227cd83a51bbd451dc223fd16f4cf1b87b8e44f8</code></a> Thanks <a href="https://github.com/Fryuni"><code>@​Fryuni</code></a>! - Fixes regression on routing priority for multi-layer index pages</p> <p>The sorting algorithm positions more specific routes before less specific routes, and considers index pages to be more specific than a dynamic route with a rest parameter inside of it. This means that <code>/blog</code> is considered more specific than <code>/blog/[...slug]</code>.</p> <p>But this special case was being applied incorrectly to indexes, which could cause a problem in scenarios like the following:</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.4.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9614">#9614</a> <a href="https://github.com/withastro/astro/commit/d469bebd7b45b060dc41d82ab1cf18ee6de7e051"><code>d469bebd7b45b060dc41d82ab1cf18ee6de7e051</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Improves Node.js streaming performance.</p> <p>This uses an <code>AsyncIterable</code> instead of a <code>ReadableStream</code> to do streaming in Node.js. This is a non-standard enhancement by Node, which is done only in that environment.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10001">#10001</a> <a href="https://github.com/withastro/astro/commit/748b2e87cd44d8bcc1ab9d7e504703057e2000cd"><code>748b2e87cd44d8bcc1ab9d7e504703057e2000cd</code></a> Thanks <a href="https://github.com/bholmesdev"><code>@​bholmesdev</code></a>! - Removes content collection warning when a configured collection does not have a matching directory name. This should resolve <code>i18n</code> collection warnings for Starlight users.</p> <p>This also ensures configured collection names are always included in <code>getCollection()</code> and <code>getEntry()</code> types even when a matching directory is absent. We hope this allows users to discover typos during development by surfacing type information.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10074">#10074</a> <a href="https://github.com/withastro/astro/commit/7443929381b47db0639c49a4d32aec4177bd9102"><code>7443929381b47db0639c49a4d32aec4177bd9102</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Add a UI showing the list of found problems when using the audit app in the dev toolbar</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10099">#10099</a> <a href="https://github.com/withastro/astro/commit/b340f8fe3aaa81e38c4f1aa41498b159dc733d86"><code>b340f8fe3aaa81e38c4f1aa41498b159dc733d86</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Fixes a regression where view transition names containing special characters such as spaces or punctuation stopped working.</p> <p>Regular use naming your transitions with <code>transition: name</code> is unaffected.</p> <p>However, this fix may result in breaking changes if your project relies on the particular character encoding strategy Astro uses to translate <code>transition:name</code> directives into values of the underlying CSS <code>view-transition-name</code> property. For example, <code>Welcome to Astro</code> is now encoded as <code>Welcome_20to_20Astro_2e</code>.</p> <p>This mainly affects spaces and punctuation marks but no Unicode characters with codes &gt;= 128.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9976">#9976</a> <a href="https://github.com/withastro/astro/commit/91f75afbc642b6e73dd4ec18a1fe2c3128c68132"><code>91f75afbc642b6e73dd4ec18a1fe2c3128c68132</code></a> Thanks <a href="https://github.com/OliverSpeir"><code>@​OliverSpeir</code></a>! - Adds a new optional <code>astro:assets</code> image attribute <code>inferSize</code> for use with remote images.</p> <p>Remote images can now have their dimensions inferred just like local images. Setting <code>inferSize</code> to <code>true</code> allows you to use <code>getImage()</code> and the <code>&lt;Image /&gt;</code> and <code>&lt;Picture /&gt;</code> components without setting the <code>width</code> and <code>height</code> properties.</p> <pre lang="astro"><code>--- import { Image, Picture, getImage } from 'astro:assets'; const myPic = await getImage({ src: 'https://example.com/example.png', inferSize: true }); --- <p>&lt;Image src=&quot;<a href="https://example.com/example.png">https://example.com/example.png</a>&quot; inferSize alt=&quot;&quot; /&gt; &lt;Picture src=&quot;<a href="https://example.com/example.png">https://example.com/example.png</a>&quot; inferSize alt=&quot;&quot; /&gt; </code></pre></p> <p>Read more about <a href="https://docs.astro.build/en/guides/images/#infersize">using <code>inferSize</code> with remote images</a> in our documentation.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10015">#10015</a> <a href="https://github.com/withastro/astro/commit/6884b103c8314a43e926c6acdf947cbf812a21f4"><code>6884b103c8314a43e926c6acdf947cbf812a21f4</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Adds initial support for performance audits to the dev toolbar</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10116">#10116</a> <a href="https://github.com/withastro/astro/commit/4bcc249a9f34aaac59658ca626c828bd6dbb8046"><code>4bcc249a9f34aaac59658ca626c828bd6dbb8046</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Fixes an issue where the dev server froze when typescript aliases were used.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10096">#10096</a> <a href="https://github.com/withastro/astro/commit/227cd83a51bbd451dc223fd16f4cf1b87b8e44f8"><code>227cd83a51bbd451dc223fd16f4cf1b87b8e44f8</code></a> Thanks <a href="https://github.com/Fryuni"><code>@​Fryuni</code></a>! - Fixes regression on routing priority for multi-layer index pages</p> <p>The sorting algorithm positions more specific routes before less specific routes, and considers index pages to be more specific than a dynamic route with a rest parameter inside of it. This means that <code>/blog</code> is considered more specific than <code>/blog/[...slug]</code>.</p> <p>But this special case was being applied incorrectly to indexes, which could cause a problem in scenarios like the following:</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/141f2fb75749a8be048af100c1308a4ec72cced5"><code>141f2fb</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10109">#10109</a>)</li> <li><a href="https://github.com/withastro/astro/commit/40a2e03ffb86d4b64838ed90a5d464d32db1b589"><code>40a2e03</code></a> chore: move tests to node (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10115">#10115</a>)</li> <li><a href="https://github.com/withastro/astro/commit/0f3d4ae30bdfead23b352c469ce4e6a85b68204f"><code>0f3d4ae</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/8701cfee23535ab1994112cf9c1badaa30807d46"><code>8701cfe</code></a> chore: move <code>css-</code> related tests to <code>node:test</code> (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10114">#10114</a>)</li> <li><a href="https://github.com/withastro/astro/commit/b386d2d7ae5884d3fce5eee186ee28033f7c0cfe"><code>b386d2d</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/91f75afbc642b6e73dd4ec18a1fe2c3128c68132"><code>91f75af</code></a> Add <code>inferSize</code> to getImage so width and height are optional for remote image...</li> <li><a href="https://github.com/withastro/astro/commit/787e6f52470cf07fb50c865948b2bc8fe45a6d31"><code>787e6f5</code></a> Update to Vite 5.1 (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10120">#10120</a>)</li> <li><a href="https://github.com/withastro/astro/commit/e9cedf0bbc6d371c1d484710a212564d1b053951"><code>e9cedf0</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/4bcc249a9f34aaac59658ca626c828bd6dbb8046"><code>4bcc249</code></a> fix(dev): preload matched routes sequentially (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10116">#10116</a>)</li> <li><a href="https://github.com/withastro/astro/commit/51b6ff7403c1223b1c399e88373075972c82c24c"><code>51b6ff7</code></a> Fix invalid URLs being returned from <code>getRegistry</code>, synchronize all copies (#...</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@4.4.0/packages/astro">compare view</a></li> </ul> </details> <br /> Updates `vite` from 5.1.2 to 5.1.3 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->5.1.3 (2024-02-15)<!-- raw HTML omitted --></h2> <ul> <li>fix: cachedTransformMiddleware for direct css requests (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15919">#15919</a>) (<a href="https://github.com/vitejs/vite/commit/5099028">5099028</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/15919">#15919</a></li> <li>refactor(runtime): minor tweaks (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15904">#15904</a>) (<a href="https://github.com/vitejs/vite/commit/63a39c2">63a39c2</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/15904">#15904</a></li> <li>refactor(runtime): seal ES module namespace object instead of feezing (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15914">#15914</a>) (<a href="https://github.com/vitejs/vite/commit/4172f02">4172f02</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/15914">#15914</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/bf3952790495122fd2e4b8584fd892ae838a0cb5"><code>bf39527</code></a> release: v5.1.3</li> <li><a href="https://github.com/vitejs/vite/commit/509902807c841742e0d64ca7ea12c0b44ab54489"><code>5099028</code></a> fix: cachedTransformMiddleware for direct css requests (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15919">#15919</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/4172f02b70a8ae44bb8f3bc22d5fd5cffe458274"><code>4172f02</code></a> refactor(runtime): seal ES module namespace object instead of feezing (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15914">#15914</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/63a39c244b08cf1f2299bc2c3cfddcb82070d05b"><code>63a39c2</code></a> refactor(runtime): minor tweaks (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15904">#15904</a>)</li> <li>See full diff in <a href="https://github.com/vitejs/vite/commits/v5.1.3/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `astro-seo` from 0.8.0 to 0.8.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jonasmerlin/astro-seo/releases">astro-seo's releases</a>.</em></p> <blockquote> <h2>v0.8.2</h2> <h3>Bug Fixes</h3> <ul> <li>Add sizes attribute to Link type</li> </ul> <h2>v0.8.1</h2> <h3>Bug Fixes</h3> <ul> <li><strong><a href="https://redirect.github.com/jonasmerlin/astro-seo/issues/84">#84</a>:</strong> order of properties (<a href="https://github.com/jonasmerlin/astro-seo/commit/da25a509f0f5150f24cfa6ce1f9e654e5fb237d9">da25a50</a>), closes <a href="https://redirect.github.com/jonasmerlin/astro-seo/issues/84">#84</a></li> <li>type issue (<a href="https://github.com/jonasmerlin/astro-seo/commit/3414cb86510930a5b18b2188200a155177af03ef">3414cb8</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jonasmerlin/astro-seo/blob/main/CHANGELOG.md">astro-seo's changelog</a>.</em></p> <blockquote> <h3><a href="https://github.com/jonasmerlin/astro-seo/compare/v0.8.1...v0.8.2">0.8.2</a> (2024-02-19)</h3> <h3>Bug Fixes</h3> <ul> <li>Add sizes attribute to Link type</li> </ul> <h3><a href="https://github.com/jonasmerlin/astro-seo/compare/v0.8.0...v0.8.1">0.8.1</a> (2024-02-18)</h3> <h3>Bug Fixes</h3> <ul> <li><strong><a href="https://redirect.github.com/jonasmerlin/astro-seo/issues/84">#84</a>:</strong> order of properties (<a href="https://github.com/jonasmerlin/astro-seo/commit/da25a509f0f5150f24cfa6ce1f9e654e5fb237d9">da25a50</a>), closes <a href="https://redirect.github.com/jonasmerlin/astro-seo/issues/84">#84</a></li> <li>type issue (<a href="https://github.com/jonasmerlin/astro-seo/commit/3414cb86510930a5b18b2188200a155177af03ef">3414cb8</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/434e0088f55d383b9bbbcc1e1357a7bf59803502"><code>434e008</code></a> chore(release): 0.8.2</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/9862453db9d0215dca9f96220d392e6183806c80"><code>9862453</code></a> Merge pull request <a href="https://redirect.github.com/jonasmerlin/astro-seo/issues/89">#89</a> from gvkhna:main</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/5ba950e9d1a9bf39fabe58359d0beec39fbaf35a"><code>5ba950e</code></a> test: Add test for extended link sizes attribute</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/aa9f0e19a205282a037af4cea4844749ce4bfe1a"><code>aa9f0e1</code></a> add sizes override to Link element</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/d2f841d6d0a1b0ba30627060071fe57ffbf459f1"><code>d2f841d</code></a> chore(release): 0.8.1</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/9c4096b67e65293a89e7eef3f8c6c3d30021bbff"><code>9c4096b</code></a> Bump CI node version to 18.x</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/be7850c2b027d895a223dcf62fdc1f5b76266aa6"><code>be7850c</code></a> chore: Make CI work again</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/ce3ef0fe2fc982067b1f5d4d32d90e5d2660cea0"><code>ce3ef0f</code></a> Test w/ latest Astro version</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/32f8d2914ecd56f3c5c16c1710ae7fb803a77388"><code>32f8d29</code></a> Merge pull request <a href="https://redirect.github.com/jonasmerlin/astro-seo/issues/83">#83</a> from Mansi1:main</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/500b25470cdf3b55f0dd5cf475c685d3e83d5a16"><code>500b254</code></a> Merge pull request <a href="https://redirect.github.com/jonasmerlin/astro-seo/issues/85">#85</a> from mikeethedude:extended-tag-order</li> <li>Additional commits viewable in <a href="https://github.com/jonasmerlin/astro-seo/compare/v0.8.0...v0.8.2">compare view</a></li> </ul> </details> <br /> Updates `sass` from 1.70.0 to 1.71.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sass/dart-sass/releases">sass's releases</a>.</em></p> <blockquote> <h2>Dart Sass 1.71.0</h2> <p>To install Sass 1.71.0, download one of the packages below and <a href="https://katiek2.github.io/path-doc/">add it to your PATH</a>, or see <a href="https://sass-lang.com/install">the Sass website</a> for full installation instructions.</p> <h1>Changes</h1> <p>For more information about <code>pkg:</code> importers, see <a href="https://sass-lang.com/blog/announcing-pkg-importers">the announcement</a> on the Sass blog.</p> <h3>Command-Line Interface</h3> <ul> <li>Add a <code>--pkg-importer</code> flag to enable built-in <code>pkg:</code> importers. Currently this only supports the Node.js package resolution algorithm, via <code>--pkg-importer=node</code>. For example, <code>@use &quot;pkg:bootstrap&quot;</code> will load <code>node_modules/bootstrap/scss/bootstrap.scss</code>.</li> </ul> <h3>JavaScript API</h3> <ul> <li>Add a <code>NodePackageImporter</code> importer that can be passed to the <code>importers</code> option. This loads files using the <code>pkg:</code> URL scheme according to the Node.js package resolution algorithm. For example, <code>@use &quot;pkg:bootstrap&quot;</code> will load <code>node_modules/bootstrap/scss/bootstrap.scss</code>. The constructor takes a single optional argument, which indicates the base directory to use when locating <code>node_modules</code> directories. It defaults to <code>path.dirname(require.main.filename)</code>.</li> </ul> <h3>Dart API</h3> <ul> <li>Add a <code>NodePackageImporter</code> importer that can be passed to the <code>importers</code> option. This loads files using the <code>pkg:</code> URL scheme according to the Node.js package resolution algorithm. For example, <code>@use &quot;pkg:bootstrap&quot;</code> will load <code>node_modules/bootstrap/scss/bootstrap.scss</code>. The constructor takes a single argument, which indicates the base directory to use when locating <code>node_modules</code> directories.</li> </ul> <p>See the <a href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1710">full changelog</a> for changes in earlier releases.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sass/dart-sass/blob/main/CHANGELOG.md">sass's changelog</a>.</em></p> <blockquote> <h2>1.71.0</h2> <p>For more information about <code>pkg:</code> importers, see <a href="https://sass-lang.com/blog/announcing-pkg-importers">the announcement</a> on the Sass blog.</p> <h3>Command-Line Interface</h3> <ul> <li>Add a <code>--pkg-importer</code> flag to enable built-in <code>pkg:</code> importers. Currently this only supports the Node.js package resolution algorithm, via <code>--pkg-importer=node</code>. For example, <code>@use &quot;pkg:bootstrap&quot;</code> will load <code>node_modules/bootstrap/scss/bootstrap.scss</code>.</li> </ul> <h3>JavaScript API</h3> <ul> <li>Add a <code>NodePackageImporter</code> importer that can be passed to the <code>importers</code> option. This loads files using the <code>pkg:</code> URL scheme according to the Node.js package resolution algorithm. For example, <code>@use &quot;pkg:bootstrap&quot;</code> will load <code>node_modules/bootstrap/scss/bootstrap.scss</code>. The constructor takes a single optional argument, which indicates the base directory to use when locating <code>node_modules</code> directories. It defaults to <code>path.dirname(require.main.filename)</code>.</li> </ul> <h3>Dart API</h3> <ul> <li>Add a <code>NodePackageImporter</code> importer that can be passed to the <code>importers</code> option. This loads files using the <code>pkg:</code> URL scheme according to the Node.js package resolution algorithm. For example, <code>@use &quot;pkg:bootstrap&quot;</code> will load <code>node_modules/bootstrap/scss/bootstrap.scss</code>. The constructor takes a single argument, which indicates the base directory to use when locating <code>node_modules</code> directories.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sass/dart-sass/commit/3e6721e79f049dd01880542667380640c2d1eeae"><code>3e6721e</code></a> Fix new static warnings with Dart 3.3 (<a href="https://redirect.github.com/sass/dart-sass/issues/2173">#2173</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/2cab33e2b38771b9e83b5463aff7e73fa190fea6"><code>2cab33e</code></a> Update the language revision in Homebrew on release (<a href="https://redirect.github.com/sass/dart-sass/issues/2171">#2171</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/84ededd3688508acbbbf04c343f44734a8631a19"><code>84ededd</code></a> Use musl support in cli_pkg (<a href="https://redirect.github.com/sass/dart-sass/issues/2172">#2172</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/00571ec531220235a9ca90357670f0b000955a5f"><code>00571ec</code></a> Add a <code>--pkg-importer</code> flag (<a href="https://redirect.github.com/sass/dart-sass/issues/2169">#2169</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/84f31f0defcdcda648e3e11fb345ab4da1588062"><code>84f31f0</code></a> Update pubspec/changelog for <code>pkg:</code> importers (<a href="https://redirect.github.com/sass/dart-sass/issues/2168">#2168</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/9ee5408211f1f2fc3c34e280552f3c3afd899156"><code>9ee5408</code></a> [Package Importer] Dart Implementation (<a href="https://redirect.github.com/sass/dart-sass/issues/2130">#2130</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/9423aa53ae599999f514984fe0d773558aef2be3"><code>9423aa5</code></a> Use macos-14 runner instead of macos-latest-xlarge runner (<a href="https://redirect.github.com/sass/dart-sass/issues/2167">#2167</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/bbf97b4fb4be10b47a6045db9dcaeb3d3e9c2aa6"><code>bbf97b4</code></a> Remove the sass dependency from package.json (<a href="https://redirect.github.com/sass/dart-sass/issues/2162">#2162</a>)</li> <li>See full diff in <a href="https://github.com/sass/dart-sass/compare/1.70.0...1.71.0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details>
changeset-bot[bot] commented 2024-02-19 11:15:02 +00:00 (Migrated from github.com)

🦋 Changeset detected

Latest commit: 1f850db9de

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 6 packages
Name Type
@matthiesenxyz/create-astro-ghostcms Patch
@matthiesenxyz/astro-ghostcms-catppuccin Patch
@matthiesenxyz/astro-ghostcms Patch
@matthiesenxyz/astro-ghostcms-theme-default Patch
@matthiesenxyz/astro-ghostcms-rendercontent Patch
@matthiesenxyz/astro-ghostcms-brutalbyelian Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

### 🦋 Changeset detected Latest commit: 1f850db9de5f8921108370382e63ef6a066ab3f7 **The changes in this PR will be included in the next version bump.** <details><summary>This PR includes changesets to release 6 packages</summary> | Name | Type | | ------------------------------------------- | ----- | | @matthiesenxyz/create-astro-ghostcms | Patch | | @matthiesenxyz/astro-ghostcms-catppuccin | Patch | | @matthiesenxyz/astro-ghostcms | Patch | | @matthiesenxyz/astro-ghostcms-theme-default | Patch | | @matthiesenxyz/astro-ghostcms-rendercontent | Patch | | @matthiesenxyz/astro-ghostcms-brutalbyelian | Patch | </details> Not sure what this means? [Click here to learn what changesets are](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md). [Click here if you're a maintainer who wants to add another changeset to this PR](https://github.com/MatthiesenXYZ/astro-ghostcms/new/dependabot/npm_and_yarn/prod-dependencies-752a23fdcb?filename=.changeset/strange-kiwis-remain.md&value=---%0A%22%40matthiesenxyz%2Fastro-ghostcms-catppuccin%22%3A%20patch%0A%22%40matthiesenxyz%2Fastro-ghostcms-rendercontent%22%3A%20patch%0A%22%40matthiesenxyz%2Fastro-ghostcms-theme-default%22%3A%20patch%0A%22%40matthiesenxyz%2Fastro-ghostcms%22%3A%20patch%0A%22%40matthiesenxyz%2Fcreate-astro-ghostcms%22%3A%20patch%0A%22playground%22%3A%20patch%0A---%0A%0ABump%20the%20prod-dependencies%20group%20with%204%20updates%0A)
Adammatthiesen commented 2024-02-20 00:08:16 +00:00 (Migrated from github.com)

@dependabot rebase

@dependabot rebase
dependabot[bot] commented 2024-02-20 00:08:18 +00:00 (Migrated from github.com)

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry! If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request `@dependabot recreate`.
Adammatthiesen commented 2024-02-20 00:08:54 +00:00 (Migrated from github.com)

@dependabot recreate

@dependabot recreate
Sign in to join this conversation.
No description provided.