Bump the prod-dependencies group with 11 updates #79

Closed
dependabot[bot] wants to merge 1 commits from dependabot/npm_and_yarn/prod-dependencies-268fc9be2d into main
dependabot[bot] commented 2024-03-04 11:57:06 +00:00 (Migrated from github.com)

Bumps the prod-dependencies group with 11 updates:

Package From To
@astrojs/sitemap 3.0.5 3.1.1
@ts-ghost/core-api 5.1.2 6.0.0
astro 4.4.0 4.4.10
package-json 9.0.0 10.0.0
vite 5.1.3 5.1.4
ultrahtml 1.5.2 1.5.3
@fontsource-variable/inter 5.0.16 5.0.17
astro-seo 0.8.2 0.8.3
sass 1.71.0 1.71.1
@astrojs/starlight 0.19.0 0.21.1
sharp 0.32.6 0.33.2

Updates @astrojs/sitemap from 3.0.5 to 3.1.1

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.1.1

Patch Changes

@​astrojs/sitemap@​3.1.0

Minor Changes

  • #9846 9b78c992750cdb99c40a89a00ea2a0d1c00877d7 Thanks @​ktym4a! - Adds a new configuration option prefix that allows you to change the default sitemap-*.xml file name.

    By default, running astro build creates both sitemap-index.xml and sitemap-0.xml in your output directory.

    To change the names of these files (e.g. to astrosite-index.xml and astrosite-0.xml), set the prefix option in your sitemap integration configuration:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          prefix: 'astrosite-',
        }),
      ],
    });
    

    This option is useful when Google Search Console is unable to fetch your default sitemap files, but can read renamed files.

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.1.1

Patch Changes

3.1.0

Minor Changes

  • #9846 9b78c992750cdb99c40a89a00ea2a0d1c00877d7 Thanks @​ktym4a! - Adds a new configuration option prefix that allows you to change the default sitemap-*.xml file name.

    By default, running astro build creates both sitemap-index.xml and sitemap-0.xml in your output directory.

    To change the names of these files (e.g. to astrosite-index.xml and astrosite-0.xml), set the prefix option in your sitemap integration configuration:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          prefix: 'astrosite-',
        }),
      ],
    });
    

    This option is useful when Google Search Console is unable to fetch your default sitemap files, but can read renamed files.

Commits

Updates @ts-ghost/core-api from 5.1.2 to 6.0.0

Release notes

Sourced from @​ts-ghost/core-api's releases.

@​ts-ghost/core-api@​6.0.0

Major Changes

  • 5544e8a: API Composer now require an HTTPClientFactory instead of a HTTPClient.

    Passing directly an instanciated HTTPClient was creating a lot of issues with the HttpClient lifecycle. Now, you need to pass a factory that will be used to create a new HttpClient for each request.

    The HTTPClientFactory takes the same parameters as the HttpClient constructor, so you can pass the same configuration.

    export type HTTPClientOptions = {
      key: string;
      version: APICredentials["version"];
      url: APICredentials["url"];
      endpoint: "content" | "admin";
    };
    

    export interface IHTTPClientFactory { create(config: HTTPClientOptions): HTTPClient; }

    export class HTTPClientFactory implements IHTTPClientFactory { constructor(private config: HTTPClientOptions) {}

    public create() { return new HTTPClient(this.config); } }

Minor Changes

  • 5544e8a: Internals change of the API Composer instantiation to use the new HTTPClientFactory instead of direct instances. There is no user-level change required.
Commits
  • f229dec Version Packages (#215)
  • 5544e8a fix bugs when reusing the same instance of the inner HTTPClient (#214)
  • bf08d91 chore(deps): update all non-major dependencies (#211)
  • 8d89e93 chore(deps): update typescript-eslint monorepo to v7 (#212)
  • 1b5e861 chore(deps): update all non-major dependencies (#209)
  • 792dbb8 chore(deps): update pnpm/action-setup action to v3 (#210)
  • 8c22aaf chore(deps): update all non-major dependencies (#207)
  • f93794f chore(deps): update all non-major dependencies (#205)
  • 367e47d chore(deps): update all non-major dependencies (#204)
  • c900d9c fix(deps): update all non-major dependencies (#203)
  • Additional commits viewable in compare view

Updates astro from 4.4.0 to 4.4.10

Release notes

Sourced from astro's releases.

astro@4.4.10

Patch Changes

astro@4.4.9

Patch Changes

astro@4.4.8

Patch Changes

astro@4.4.7

Patch Changes

astro@4.4.6

Patch Changes

astro@4.4.5

Patch Changes

... (truncated)

Changelog

Sourced from astro's changelog.

4.4.10

Patch Changes

4.4.9

Patch Changes

4.4.8

Patch Changes

4.4.7

Patch Changes

4.4.6

Patch Changes

4.4.5

... (truncated)

Commits

Updates package-json from 9.0.0 to 10.0.0

Release notes

Sourced from package-json's releases.

v10.0.0

Breaking

Improvements

  • Improve handling of default options (#79) c554238

Fixes

  • Fix types (#80) f217ebe

https://github.com/sindresorhus/package-json/compare/v9.0.0...v10.0.0

Commits

Updates vite from 5.1.3 to 5.1.4

Changelog

Sourced from vite's changelog.

5.1.4 (2024-02-21)

Commits

Updates ultrahtml from 1.5.2 to 1.5.3

Release notes

Sourced from ultrahtml's releases.

v1.5.3

Patch Changes

  • ebc97e0: upgrades dts-bundle-generator to 9.2.1, fixing an issue with .d.ts generation which led methods prefixed with two underscores to be incorrectly made private in the generated declaration file.
Changelog

Sourced from ultrahtml's changelog.

1.5.3

Patch Changes

  • ebc97e0: upgrades dts-bundle-generator to 9.2.1, fixing an issue with .d.ts generation which led methods prefixed with two underscores to be incorrectly made private in the generated declaration file.
Commits
  • 93a1273 Merge pull request #68 from natemoo-re/changeset-release/main
  • 8d42d8d [ci] release
  • 007824d Merge pull request #65 from michaelhthomas/chore/upgrade-dts-bundle-generator
  • efc44dc Merge pull request #67 from natemoo-re/fix-test
  • a59ac92 This Fixes script.test.ts, Mozilla.org updated the website being tested fro...
  • ebc97e0 chore: add changeset
  • 2f6c0da chore: upgrade dts-bundle-generator 8.0.1 -> 9.2.1
  • See full diff in compare view

Updates @fontsource-variable/inter from 5.0.16 to 5.0.17

Commits

Updates astro-seo from 0.8.2 to 0.8.3

Release notes

Sourced from astro-seo's releases.

v0.8.3

0.8.3 (2024-03-03)

  • improvement: re-export Props as SEOProps
Changelog

Sourced from astro-seo's changelog.

0.8.3 (2024-03-03)

Commits
  • 7d3387a chore(release): 0.8.3
  • 9278a17 improvement: re-export Props as SEOProps
  • 6974c40 test: Delete trailing slash from test
  • 3c16c64 Update all GH actions to latest version
  • 8e3f440 chore: Update Cypress GH action to v6
  • 47c2378 Update CHANGELOG
  • See full diff in compare view

Updates sass from 1.71.0 to 1.71.1

Release notes

Sourced from sass's releases.

Dart Sass 1.71.1

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

Changes

Command-Line Interface

  • Ship the musl Linux release with the proper Dart executable.

JavaScript API

  • Export the NodePackageImporter class in ESM mode.

  • Allow NodePackageImporter to locate a default directory even when the entrypoint is an ESM module.

Dart API

  • Make passing a null argument to NodePackageImporter() a static error rather than just a runtime error.

Embedded Sass

  • In the JS Embedded Host, properly install the musl Linux embedded compiler when running on musl Linux.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.71.1

Command-Line Interface

  • Ship the musl Linux release with the proper Dart executable.

JavaScript API

  • Export the NodePackageImporter class in ESM mode.

  • Allow NodePackageImporter to locate a default directory even when the entrypoint is an ESM module.

Dart API

  • Make passing a null argument to NodePackageImporter() a static error rather than just a runtime error.

Embedded Sass

  • In the JS Embedded Host, properly install the musl Linux embedded compiler when running on musl Linux.
Commits

Updates @astrojs/starlight from 0.19.0 to 0.21.1

Release notes

Sourced from @​astrojs/starlight's releases.

@​astrojs/starlight@​0.21.1

Patch Changes

@​astrojs/starlight@​0.21.0

Minor Changes

@​astrojs/starlight@​0.20.1

Patch Changes

@​astrojs/starlight@​0.20.0

Minor Changes

  • #1541 1043052f Thanks @​hippotastic! - Updates astro-expressive-code dependency to the latest minor release (0.33).

    This unlocks support for word wrap and line numbers, as well as updating the syntax highlighter to the latest Shiki release, which includes new and updated language grammars.

    See the Expressive Code release notes for more information including details of potentially breaking changes.

Patch Changes

@​astrojs/starlight@​0.19.1

Patch Changes

  • #1527 163bc84 Thanks @​HiDeoo! - Exports the StarlightPageProps TypeScript type representing the props expected by the <StarlightPage /> component.

... (truncated)

Changelog

Sourced from @​astrojs/starlight's changelog.

0.21.1

Patch Changes

0.21.0

Minor Changes

0.20.1

Patch Changes

0.20.0

Minor Changes

  • #1541 1043052f Thanks @​hippotastic! - Updates astro-expressive-code dependency to the latest minor release (0.33).

    This unlocks support for word wrap and line numbers, as well as updating the syntax highlighter to the latest Shiki release, which includes new and updated language grammars.

    See the Expressive Code release notes for more information including details of potentially breaking changes.

Patch Changes

... (truncated)

Commits

Updates sharp from 0.32.6 to 0.33.2

Changelog

Sourced from sharp's changelog.

v0.33.2 - 12th January 2024

  • Upgrade to libvips v8.15.1 for upstream bug fixes.

  • TypeScript: add definition for keepMetadata. #3914 @​abhi0498

  • Ensure extend operation stays sequential when copying (regression in 0.32.0). #3928

  • Improve error handling for unsupported multi-page rotation. #3940

v0.33.1 - 17th December 2023

  • Add support for Yarn Plug'n'Play filesystem layout. #3888

  • Emit warning when attempting to use invalid ICC profiles. #3895

  • Ensure VIPS_NOVECTOR environment variable is respected. #3897 @​icetee

v0.33.0 - 29th November 2023

  • Drop support for Node.js 14 and 16, now requires Node.js ^18.17.0 or >= 20.3.0

  • Prebuilt binaries distributed via npm registry and installed via package manager.

  • Building from source requires dependency on node-addon-api.

  • Remove sharp.vendor.

  • Partially deprecate withMetadata(), use withExif() and withIccProfile().

  • Add experimental support for WebAssembly-based runtimes. @​RReverser

  • Options for trim operation must be an Object, add new lineArt option. #2363

  • Improve luminance of tint operation with weighting function. #3338 @​jcupitt

  • Ensure all Error objects contain a stack property. #3653

... (truncated)

Commits
Bumps the prod-dependencies group with 11 updates: | Package | From | To | | --- | --- | --- | | [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.0.5` | `3.1.1` | | [@ts-ghost/core-api](https://github.com/PhilDL/ts-ghost) | `5.1.2` | `6.0.0` | | [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.4.0` | `4.4.10` | | [package-json](https://github.com/sindresorhus/package-json) | `9.0.0` | `10.0.0` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.1.3` | `5.1.4` | | [ultrahtml](https://github.com/natemoo-re/ultrahtml) | `1.5.2` | `1.5.3` | | [@fontsource-variable/inter](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/inter) | `5.0.16` | `5.0.17` | | [astro-seo](https://github.com/jonasmerlin/astro-seo) | `0.8.2` | `0.8.3` | | [sass](https://github.com/sass/dart-sass) | `1.71.0` | `1.71.1` | | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.19.0` | `0.21.1` | | [sharp](https://github.com/lovell/sharp) | `0.32.6` | `0.33.2` | Updates `@astrojs/sitemap` from 3.0.5 to 3.1.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/releases"><code>@​astrojs/sitemap</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​astrojs/sitemap</code><a href="https://github.com/3"><code>@​3</code></a>.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10179">#10179</a> <a href="https://github.com/withastro/astro/commit/6343f6a438d790fa16a0dd268f4a51def4fa0f33"><code>6343f6a438d790fa16a0dd268f4a51def4fa0f33</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Revert <a href="https://redirect.github.com/withastro/astro/pull/9846">withastro/astro#9846</a></p> <p>The feature to customize the file name of the sitemap was reverted due to some internal issues with one of the dependencies. With an non-deterministic behaviour, the sitemap file was sometime emitted with incorrect syntax.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9975">#9975</a> <a href="https://github.com/withastro/astro/commit/ec7d2ebbd96b8c2dfdadaf076bbf7953007536ed"><code>ec7d2ebbd96b8c2dfdadaf076bbf7953007536ed</code></a> Thanks <a href="https://github.com/moose96"><code>@​moose96</code></a>! - Fixes URL generation for routes that rest parameters and start with <code>/</code></p> </li> </ul> <h2><code>@​astrojs/sitemap</code><a href="https://github.com/3"><code>@​3</code></a>.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9846">#9846</a> <a href="https://github.com/withastro/astro/commit/9b78c992750cdb99c40a89a00ea2a0d1c00877d7"><code>9b78c992750cdb99c40a89a00ea2a0d1c00877d7</code></a> Thanks <a href="https://github.com/ktym4a"><code>@​ktym4a</code></a>! - Adds a new configuration option <code>prefix</code> that allows you to change the default <code>sitemap-*.xml</code> file name.</p> <p>By default, running <code>astro build</code> creates both <code>sitemap-index.xml</code> and <code>sitemap-0.xml</code> in your output directory.</p> <p>To change the names of these files (e.g. to <code>astrosite-index.xml</code> and <code>astrosite-0.xml</code>), set the <code>prefix</code> option in your <code>sitemap</code> integration configuration:</p> <pre><code>import { defineConfig } from 'astro/config'; import sitemap from '@astrojs/sitemap'; export default defineConfig({ site: 'https://example.com', integrations: [ sitemap({ prefix: 'astrosite-', }), ], }); </code></pre> <p>This option is useful when Google Search Console is unable to fetch your default sitemap files, but can read renamed files.</p> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/CHANGELOG.md"><code>@​astrojs/sitemap</code>'s changelog</a>.</em></p> <blockquote> <h2>3.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10179">#10179</a> <a href="https://github.com/withastro/astro/commit/6343f6a438d790fa16a0dd268f4a51def4fa0f33"><code>6343f6a438d790fa16a0dd268f4a51def4fa0f33</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Revert <a href="https://redirect.github.com/withastro/astro/pull/9846">withastro/astro#9846</a></p> <p>The feature to customize the file name of the sitemap was reverted due to some internal issues with one of the dependencies. With an non-deterministic behaviour, the sitemap file was sometime emitted with incorrect syntax.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9975">#9975</a> <a href="https://github.com/withastro/astro/commit/ec7d2ebbd96b8c2dfdadaf076bbf7953007536ed"><code>ec7d2ebbd96b8c2dfdadaf076bbf7953007536ed</code></a> Thanks <a href="https://github.com/moose96"><code>@​moose96</code></a>! - Fixes URL generation for routes that rest parameters and start with <code>/</code></p> </li> </ul> <h2>3.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9846">#9846</a> <a href="https://github.com/withastro/astro/commit/9b78c992750cdb99c40a89a00ea2a0d1c00877d7"><code>9b78c992750cdb99c40a89a00ea2a0d1c00877d7</code></a> Thanks <a href="https://github.com/ktym4a"><code>@​ktym4a</code></a>! - Adds a new configuration option <code>prefix</code> that allows you to change the default <code>sitemap-*.xml</code> file name.</p> <p>By default, running <code>astro build</code> creates both <code>sitemap-index.xml</code> and <code>sitemap-0.xml</code> in your output directory.</p> <p>To change the names of these files (e.g. to <code>astrosite-index.xml</code> and <code>astrosite-0.xml</code>), set the <code>prefix</code> option in your <code>sitemap</code> integration configuration:</p> <pre><code>import { defineConfig } from 'astro/config'; import sitemap from '@astrojs/sitemap'; export default defineConfig({ site: 'https://example.com', integrations: [ sitemap({ prefix: 'astrosite-', }), ], }); </code></pre> <p>This option is useful when Google Search Console is unable to fetch your default sitemap files, but can read renamed files.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/2c2519204a26a522cdaa4e17cac3aa4dbcb66056"><code>2c25192</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap/issues/10177">#10177</a>)</li> <li><a href="https://github.com/withastro/astro/commit/6343f6a438d790fa16a0dd268f4a51def4fa0f33"><code>6343f6a</code></a> Revert &quot;Add option to prefix sitemap&quot; (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap/issues/10179">#10179</a>)</li> <li><a href="https://github.com/withastro/astro/commit/062623438b5dfd66682a967edc7b7c91bd29e888"><code>0626234</code></a> chore: use biome to sort imports - only test files (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap/issues/10180">#10180</a>)</li> <li><a href="https://github.com/withastro/astro/commit/8e51bf9ea9661c5228ec43e30b661fc422a5803d"><code>8e51bf9</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/ec7d2ebbd96b8c2dfdadaf076bbf7953007536ed"><code>ec7d2eb</code></a> fix(sitemap): url when rest parameter is used in page file names (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap/issues/9975">#9975</a>)</li> <li><a href="https://github.com/withastro/astro/commit/052d3271d4a9f12b88897c57cdfa134cb83c9eee"><code>052d327</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap/issues/10131">#10131</a>)</li> <li><a href="https://github.com/withastro/astro/commit/9b78c992750cdb99c40a89a00ea2a0d1c00877d7"><code>9b78c99</code></a> Add option to prefix sitemap (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap/issues/9846">#9846</a>)</li> <li><a href="https://github.com/withastro/astro/commit/436841e97e0ecbf6e5e1658b2c1e272d7856cdc9"><code>436841e</code></a> Use eslint-plugin-regexp (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap/issues/9993">#9993</a>)</li> <li><a href="https://github.com/withastro/astro/commit/8dc7b39a6203af8426ea786bd1d8ed7fd9d35003"><code>8dc7b39</code></a> chore(<code>@​astrojs/sitemap</code>): migrate tests to <code>node:test</code> (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap/issues/9892">#9892</a>)</li> <li><a href="https://github.com/withastro/astro/commit/1c4a263d8f044d675b3338b77b1470af93e32ca3"><code>1c4a263</code></a> Revert &quot;chore(<code>@​astrojs/integrations/</code>sitemap): use Node.js for testing (<a href="https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap/issues/9891">#9891</a>)...</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/@astrojs/sitemap@3.1.1/packages/integrations/sitemap">compare view</a></li> </ul> </details> <br /> Updates `@ts-ghost/core-api` from 5.1.2 to 6.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/PhilDL/ts-ghost/releases"><code>@​ts-ghost/core-api</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​ts-ghost/core-api</code><a href="https://github.com/6"><code>@​6</code></a>.0.0</h2> <h3>Major Changes</h3> <ul> <li> <p>5544e8a: API Composer now require an HTTPClientFactory instead of a HTTPClient.</p> <p>Passing directly an instanciated HTTPClient was creating a lot of issues with the HttpClient lifecycle. Now, you need to pass a factory that will be used to create a new HttpClient for each request.</p> <p>The HTTPClientFactory takes the same parameters as the HttpClient constructor, so you can pass the same configuration.</p> <pre lang="typescript"><code>export type HTTPClientOptions = { key: string; version: APICredentials[&quot;version&quot;]; url: APICredentials[&quot;url&quot;]; endpoint: &quot;content&quot; | &quot;admin&quot;; }; <p>export interface IHTTPClientFactory { create(config: HTTPClientOptions): HTTPClient; }</p> <p>export class HTTPClientFactory implements IHTTPClientFactory { constructor(private config: HTTPClientOptions) {}</p> <p>public create() { return new HTTPClient(this.config); } } </code></pre></p> </li> </ul> <h3>Minor Changes</h3> <ul> <li>5544e8a: Internals change of the API Composer instantiation to use the new HTTPClientFactory instead of direct instances. There is no user-level change required.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PhilDL/ts-ghost/commit/f229dec61913df8990ed213174c08116232c3477"><code>f229dec</code></a> Version Packages (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/215">#215</a>)</li> <li><a href="https://github.com/PhilDL/ts-ghost/commit/5544e8aa9a5024f500f06737b6af1e2ce3d9181f"><code>5544e8a</code></a> fix bugs when reusing the same instance of the inner HTTPClient (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/214">#214</a>)</li> <li><a href="https://github.com/PhilDL/ts-ghost/commit/bf08d91481db0a2927d6262696ba20527bf537aa"><code>bf08d91</code></a> chore(deps): update all non-major dependencies (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/211">#211</a>)</li> <li><a href="https://github.com/PhilDL/ts-ghost/commit/8d89e9374742358b17a2e5428d972616542475da"><code>8d89e93</code></a> chore(deps): update typescript-eslint monorepo to v7 (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/212">#212</a>)</li> <li><a href="https://github.com/PhilDL/ts-ghost/commit/1b5e86129a184e440e8e84f0f96b3e18af3f5942"><code>1b5e861</code></a> chore(deps): update all non-major dependencies (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/209">#209</a>)</li> <li><a href="https://github.com/PhilDL/ts-ghost/commit/792dbb8c340df0176405a4245ea0cb1f1c1c8285"><code>792dbb8</code></a> chore(deps): update pnpm/action-setup action to v3 (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/210">#210</a>)</li> <li><a href="https://github.com/PhilDL/ts-ghost/commit/8c22aaf701a160f33b81917d890af81789b18f88"><code>8c22aaf</code></a> chore(deps): update all non-major dependencies (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/207">#207</a>)</li> <li><a href="https://github.com/PhilDL/ts-ghost/commit/f93794fad546bada98be621e4b92e6a8acc8abde"><code>f93794f</code></a> chore(deps): update all non-major dependencies (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/205">#205</a>)</li> <li><a href="https://github.com/PhilDL/ts-ghost/commit/367e47dbfb976cbd9bd8ec33b20fb8674a7403a0"><code>367e47d</code></a> chore(deps): update all non-major dependencies (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/204">#204</a>)</li> <li><a href="https://github.com/PhilDL/ts-ghost/commit/c900d9cb5cf27d41cd29f1e465c5ac17b09937ca"><code>c900d9c</code></a> fix(deps): update all non-major dependencies (<a href="https://redirect.github.com/PhilDL/ts-ghost/issues/203">#203</a>)</li> <li>Additional commits viewable in <a href="https://github.com/PhilDL/ts-ghost/compare/@ts-ghost/core-api@5.1.2...@ts-ghost/core-api@6.0.0">compare view</a></li> </ul> </details> <br /> Updates `astro` from 4.4.0 to 4.4.10 <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.10</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/10235">#10235</a> <a href="https://github.com/withastro/astro/commit/4bc360cd5f25496aca3232f6efb3710424a14a34"><code>4bc360cd5f25496aca3232f6efb3710424a14a34</code></a> Thanks <a href="https://github.com/sanman1k98"><code>@​sanman1k98</code></a>! - Fixes jerky scrolling on IOS when using view transitions.</li> </ul> <h2>astro@4.4.9</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10278">#10278</a> <a href="https://github.com/withastro/astro/commit/a548a3a99c2835c19662fc38636f92b2bda26614"><code>a548a3a99c2835c19662fc38636f92b2bda26614</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Fixes original images sometimes being kept / deleted when they shouldn't in both MDX and Markdoc</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10280">#10280</a> <a href="https://github.com/withastro/astro/commit/3488be9b59d1cb65325b0e087c33bcd74aaa4926"><code>3488be9b59d1cb65325b0e087c33bcd74aaa4926</code></a> Thanks <a href="https://github.com/bholmesdev"><code>@​bholmesdev</code></a>! - Finalize db API to a shared db/ directory.</p> </li> </ul> <h2>astro@4.4.8</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/10275">#10275</a> <a href="https://github.com/withastro/astro/commit/5e3e74b61daa2ba44c761c9ab5745818661a656e"><code>5e3e74b61daa2ba44c761c9ab5745818661a656e</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Fixes dev toolbar warning about using the proper loading attributes on images using <code>data:</code> URIs</li> </ul> <h2>astro@4.4.7</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10274">#10274</a> <a href="https://github.com/withastro/astro/commit/e556151603a2f0173059d0f98fdcbec0610b48ff"><code>e556151603a2f0173059d0f98fdcbec0610b48ff</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Fixes a regression introduced in v4.4.5 where image optimization did not work in dev mode when a base was configured.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10263">#10263</a> <a href="https://github.com/withastro/astro/commit/9bdbed723e0aa4243d7d6ee64d1c1df3b75b9aeb"><code>9bdbed723e0aa4243d7d6ee64d1c1df3b75b9aeb</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Adds auto completion for <code>astro:</code> event names when adding or removing event listeners on <code>document</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10284">#10284</a> <a href="https://github.com/withastro/astro/commit/07f89429a1ef5173d3321e0b362a9dc71fc74fe5"><code>07f89429a1ef5173d3321e0b362a9dc71fc74fe5</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Fixes an issue where in Node SSR, the image endpoint could be used maliciously to reveal unintended information about the underlying system.</p> <p>Thanks to Google Security Team for reporting this issue.</p> </li> </ul> <h2>astro@4.4.6</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10247">#10247</a> <a href="https://github.com/withastro/astro/commit/fb773c9161bf8faa5ebd7e115f3564c3359e56ea"><code>fb773c9161bf8faa5ebd7e115f3564c3359e56ea</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Fixes an issue where <code>transition:animate=&quot;none&quot;</code> still allowed the browser-native morph animation.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10248">#10248</a> <a href="https://github.com/withastro/astro/commit/8ae5d99534fc09d650e10e64a09b61a2807574f2"><code>8ae5d99534fc09d650e10e64a09b61a2807574f2</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes an issue where multiple injected routes with the same <code>entrypoint</code> but different <code>pattern</code> were incorrectly cached, causing some of them not being rendered in the dev server.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10250">#10250</a> <a href="https://github.com/withastro/astro/commit/57655a99db34e20e9661c039fab253b867013318"><code>57655a99db34e20e9661c039fab253b867013318</code></a> Thanks <a href="https://github.com/log101"><code>@​log101</code></a>! - Fixes the overwriting of localised index pages with redirects</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10239">#10239</a> <a href="https://github.com/withastro/astro/commit/9c21a9df6b03e36bd78dc553e13c55b9ef8c44cd"><code>9c21a9df6b03e36bd78dc553e13c55b9ef8c44cd</code></a> Thanks <a href="https://github.com/mingjunlu"><code>@​mingjunlu</code></a>! - Improves the message of <code>MiddlewareCantBeLoaded</code> for clarity</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10222">#10222</a> <a href="https://github.com/withastro/astro/commit/ade9759cae74ca262b988260250bcb202235e811"><code>ade9759cae74ca262b988260250bcb202235e811</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Adds a warning in DEV mode when using view transitions on a device with prefer-reduced-motion enabled.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10251">#10251</a> <a href="https://github.com/withastro/astro/commit/9b00de0a76b4f4b5b808e8c78e4906a2497e8ecf"><code>9b00de0a76b4f4b5b808e8c78e4906a2497e8ecf</code></a> Thanks <a href="https://github.com/mingjunlu"><code>@​mingjunlu</code></a>! - Fixes TypeScript type definitions for <code>Code</code> component <code>theme</code> and <code>experimentalThemes</code> props</p> </li> </ul> <h2>astro@4.4.5</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10221">#10221</a> <a href="https://github.com/withastro/astro/commit/4db82d9c7dce3b73fe43b86020fcfa326c1357ec"><code>4db82d9c7dce3b73fe43b86020fcfa326c1357ec</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Prevents errors in templates from crashing the server</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10219">#10219</a> <a href="https://github.com/withastro/astro/commit/afcb9d331179287629b5ffce4020931258bebefa"><code>afcb9d331179287629b5ffce4020931258bebefa</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Fix dynamic slots missing hydration scripts</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.10</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/10235">#10235</a> <a href="https://github.com/withastro/astro/commit/4bc360cd5f25496aca3232f6efb3710424a14a34"><code>4bc360cd5f25496aca3232f6efb3710424a14a34</code></a> Thanks <a href="https://github.com/sanman1k98"><code>@​sanman1k98</code></a>! - Fixes jerky scrolling on IOS when using view transitions.</li> </ul> <h2>4.4.9</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10278">#10278</a> <a href="https://github.com/withastro/astro/commit/a548a3a99c2835c19662fc38636f92b2bda26614"><code>a548a3a99c2835c19662fc38636f92b2bda26614</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Fixes original images sometimes being kept / deleted when they shouldn't in both MDX and Markdoc</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10280">#10280</a> <a href="https://github.com/withastro/astro/commit/3488be9b59d1cb65325b0e087c33bcd74aaa4926"><code>3488be9b59d1cb65325b0e087c33bcd74aaa4926</code></a> Thanks <a href="https://github.com/bholmesdev"><code>@​bholmesdev</code></a>! - Finalize db API to a shared db/ directory.</p> </li> </ul> <h2>4.4.8</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/10275">#10275</a> <a href="https://github.com/withastro/astro/commit/5e3e74b61daa2ba44c761c9ab5745818661a656e"><code>5e3e74b61daa2ba44c761c9ab5745818661a656e</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Fixes dev toolbar warning about using the proper loading attributes on images using <code>data:</code> URIs</li> </ul> <h2>4.4.7</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10274">#10274</a> <a href="https://github.com/withastro/astro/commit/e556151603a2f0173059d0f98fdcbec0610b48ff"><code>e556151603a2f0173059d0f98fdcbec0610b48ff</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Fixes a regression introduced in v4.4.5 where image optimization did not work in dev mode when a base was configured.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10263">#10263</a> <a href="https://github.com/withastro/astro/commit/9bdbed723e0aa4243d7d6ee64d1c1df3b75b9aeb"><code>9bdbed723e0aa4243d7d6ee64d1c1df3b75b9aeb</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Adds auto completion for <code>astro:</code> event names when adding or removing event listeners on <code>document</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10284">#10284</a> <a href="https://github.com/withastro/astro/commit/07f89429a1ef5173d3321e0b362a9dc71fc74fe5"><code>07f89429a1ef5173d3321e0b362a9dc71fc74fe5</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Fixes an issue where in Node SSR, the image endpoint could be used maliciously to reveal unintended information about the underlying system.</p> <p>Thanks to Google Security Team for reporting this issue.</p> </li> </ul> <h2>4.4.6</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10247">#10247</a> <a href="https://github.com/withastro/astro/commit/fb773c9161bf8faa5ebd7e115f3564c3359e56ea"><code>fb773c9161bf8faa5ebd7e115f3564c3359e56ea</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Fixes an issue where <code>transition:animate=&quot;none&quot;</code> still allowed the browser-native morph animation.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10248">#10248</a> <a href="https://github.com/withastro/astro/commit/8ae5d99534fc09d650e10e64a09b61a2807574f2"><code>8ae5d99534fc09d650e10e64a09b61a2807574f2</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes an issue where multiple injected routes with the same <code>entrypoint</code> but different <code>pattern</code> were incorrectly cached, causing some of them not being rendered in the dev server.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10250">#10250</a> <a href="https://github.com/withastro/astro/commit/57655a99db34e20e9661c039fab253b867013318"><code>57655a99db34e20e9661c039fab253b867013318</code></a> Thanks <a href="https://github.com/log101"><code>@​log101</code></a>! - Fixes the overwriting of localised index pages with redirects</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10239">#10239</a> <a href="https://github.com/withastro/astro/commit/9c21a9df6b03e36bd78dc553e13c55b9ef8c44cd"><code>9c21a9df6b03e36bd78dc553e13c55b9ef8c44cd</code></a> Thanks <a href="https://github.com/mingjunlu"><code>@​mingjunlu</code></a>! - Improves the message of <code>MiddlewareCantBeLoaded</code> for clarity</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10222">#10222</a> <a href="https://github.com/withastro/astro/commit/ade9759cae74ca262b988260250bcb202235e811"><code>ade9759cae74ca262b988260250bcb202235e811</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Adds a warning in DEV mode when using view transitions on a device with prefer-reduced-motion enabled.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10251">#10251</a> <a href="https://github.com/withastro/astro/commit/9b00de0a76b4f4b5b808e8c78e4906a2497e8ecf"><code>9b00de0a76b4f4b5b808e8c78e4906a2497e8ecf</code></a> Thanks <a href="https://github.com/mingjunlu"><code>@​mingjunlu</code></a>! - Fixes TypeScript type definitions for <code>Code</code> component <code>theme</code> and <code>experimentalThemes</code> props</p> </li> </ul> <h2>4.4.5</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/5afc8f2088e4489ff1b2c4fd9859195a75477f67"><code>5afc8f2</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10306">#10306</a>)</li> <li><a href="https://github.com/withastro/astro/commit/718eed704ad1864cdedf0704d5020af1439671cd"><code>718eed7</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/4bc360cd5f25496aca3232f6efb3710424a14a34"><code>4bc360c</code></a> fix(<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/8625">#8625</a>): smooth scrolling in SPA mode on iOS (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10235">#10235</a>)</li> <li><a href="https://github.com/withastro/astro/commit/2db9031a9f7707683e40d6a66cbd41360a746f4b"><code>2db9031</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10292">#10292</a>)</li> <li><a href="https://github.com/withastro/astro/commit/3488be9b59d1cb65325b0e087c33bcd74aaa4926"><code>3488be9</code></a> finalize WIP API (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10280">#10280</a>)</li> <li><a href="https://github.com/withastro/astro/commit/4b6e2fb69b241c982c82a2f13d603b2057c345af"><code>4b6e2fb</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/a548a3a99c2835c19662fc38636f92b2bda26614"><code>a548a3a</code></a> fix(markdoc &amp; mdx): Proxy crimes (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10278">#10278</a>)</li> <li><a href="https://github.com/withastro/astro/commit/87a3d51f2ca8661babbb76956e54bf389eb86d8f"><code>87a3d51</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10286">#10286</a>)</li> <li><a href="https://github.com/withastro/astro/commit/5e3e74b61daa2ba44c761c9ab5745818661a656e"><code>5e3e74b</code></a> fix(audits): Don't warn about loading on data URIs (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10275">#10275</a>)</li> <li><a href="https://github.com/withastro/astro/commit/afd41cc28bd449e82831e91f6302221945bd6019"><code>afd41cc</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10265">#10265</a>)</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@4.4.10/packages/astro">compare view</a></li> </ul> </details> <br /> Updates `package-json` from 9.0.0 to 10.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/package-json/releases">package-json's releases</a>.</em></p> <blockquote> <h2>v10.0.0</h2> <h3>Breaking</h3> <ul> <li>Omit deprecated versions by default (<a href="https://redirect.github.com/sindresorhus/package-json/issues/77">#77</a>) 2238f3f</li> <li>Switch from <code>got</code> to <code>ky</code> (<a href="https://redirect.github.com/sindresorhus/package-json/issues/76">#76</a>) b4ee1c7 <ul> <li>This means the package is now browser compatible and much smaller.</li> <li><a href="https://github.com/sindresorhus/package-json?tab=readme-ov-file#proxies">Proxies are no longer directly supported.</a></li> </ul> </li> </ul> <h3>Improvements</h3> <ul> <li>Improve handling of default options (<a href="https://redirect.github.com/sindresorhus/package-json/issues/79">#79</a>) c554238</li> </ul> <h3>Fixes</h3> <ul> <li>Fix types (<a href="https://redirect.github.com/sindresorhus/package-json/issues/80">#80</a>) f217ebe</li> </ul> <p><a href="https://github.com/sindresorhus/package-json/compare/v9.0.0...v10.0.0">https://github.com/sindresorhus/package-json/compare/v9.0.0...v10.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sindresorhus/package-json/commit/dfee991e8883974aa3b3dc854faaa18a1c594547"><code>dfee991</code></a> 10.0.0</li> <li><a href="https://github.com/sindresorhus/package-json/commit/f217ebe9274811635f1dacc7086b3c3b0afaf25a"><code>f217ebe</code></a> Fix types (<a href="https://redirect.github.com/sindresorhus/package-json/issues/80">#80</a>)</li> <li><a href="https://github.com/sindresorhus/package-json/commit/b4d3c9c2a992e2586511b3010ece2e0f6819dccd"><code>b4d3c9c</code></a> Update mock server in tests (<a href="https://redirect.github.com/sindresorhus/package-json/issues/81">#81</a>)</li> <li><a href="https://github.com/sindresorhus/package-json/commit/c5542385963c123ec72013e169c7951abcb5325d"><code>c554238</code></a> Improve handling of default options (<a href="https://redirect.github.com/sindresorhus/package-json/issues/79">#79</a>)</li> <li><a href="https://github.com/sindresorhus/package-json/commit/2238f3f271a9e4fd88e8a0383f31e563c4d8d9ba"><code>2238f3f</code></a> Omit deprecated versions by default (<a href="https://redirect.github.com/sindresorhus/package-json/issues/77">#77</a>)</li> <li><a href="https://github.com/sindresorhus/package-json/commit/b4ee1c747d4af3a9acf30455022aaa5da7e70899"><code>b4ee1c7</code></a> Switch from <code>got</code> to <code>ky</code> (<a href="https://redirect.github.com/sindresorhus/package-json/issues/76">#76</a>)</li> <li><a href="https://github.com/sindresorhus/package-json/commit/7238462e0b36d8344cca6fdbf0abd6ece84d0b9a"><code>7238462</code></a> Modernize tests (<a href="https://redirect.github.com/sindresorhus/package-json/issues/75">#75</a>)</li> <li><a href="https://github.com/sindresorhus/package-json/commit/8dd2cb782b2b46b3906b543bccf7637de87baa40"><code>8dd2cb7</code></a> Fix CI</li> <li>See full diff in <a href="https://github.com/sindresorhus/package-json/compare/v9.0.0...v10.0.0">compare view</a></li> </ul> </details> <br /> Updates `vite` from 5.1.3 to 5.1.4 <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.4 (2024-02-21)<!-- raw HTML omitted --></h2> <ul> <li>perf: remove unnecessary regex s modifier (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15766">#15766</a>) (<a href="https://github.com/vitejs/vite/commit/8dc1b73">8dc1b73</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/15766">#15766</a></li> <li>fix: fs cached checks disabled by default for yarn pnp (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15920">#15920</a>) (<a href="https://github.com/vitejs/vite/commit/8b11fea">8b11fea</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/15920">#15920</a></li> <li>fix: resolve directory correctly when <code>fs.cachedChecks: true</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15983">#15983</a>) (<a href="https://github.com/vitejs/vite/commit/4fe971f">4fe971f</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/15983">#15983</a></li> <li>fix: srcSet with optional descriptor (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15905">#15905</a>) (<a href="https://github.com/vitejs/vite/commit/81b3bd0">81b3bd0</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/15905">#15905</a></li> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15959">#15959</a>) (<a href="https://github.com/vitejs/vite/commit/571a3fd">571a3fd</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/15959">#15959</a></li> <li>fix(watch): build watch fails when outDir is empty string (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15979">#15979</a>) (<a href="https://github.com/vitejs/vite/commit/1d263d3">1d263d3</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/15979">#15979</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/0137ea0100974b88fbfe48dd581ac32e6f61dcc0"><code>0137ea0</code></a> release: v5.1.4</li> <li><a href="https://github.com/vitejs/vite/commit/8dc1b731463bfa5c2cb0c159b98050b55377581c"><code>8dc1b73</code></a> perf: remove unnecessary regex s modifier (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15766">#15766</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/4fe971fda39ab1a323461c09b35108cc7a271484"><code>4fe971f</code></a> fix: resolve directory correctly when <code>fs.cachedChecks: true</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15983">#15983</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/1d263d39d32838cf5b77eeb44426ae81e969309c"><code>1d263d3</code></a> fix(watch): build watch fails when outDir is empty string (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15979">#15979</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/81b3bd09cff926534ea667edfa5417b944cdf01c"><code>81b3bd0</code></a> fix: srcSet with optional descriptor (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15905">#15905</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/571a3fde438d60540cfeba132e24646badf5ff2f"><code>571a3fd</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15959">#15959</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/8b11fea91560c5f084c31aa9b19e64832ac6c3b5"><code>8b11fea</code></a> fix: fs cached checks disabled by default for yarn pnp (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15920">#15920</a>)</li> <li>See full diff in <a href="https://github.com/vitejs/vite/commits/v5.1.4/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `ultrahtml` from 1.5.2 to 1.5.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/natemoo-re/ultrahtml/releases">ultrahtml's releases</a>.</em></p> <blockquote> <h2>v1.5.3</h2> <h3>Patch Changes</h3> <ul> <li>ebc97e0: upgrades <code>dts-bundle-generator</code> to <code>9.2.1</code>, fixing an issue with <code>.d.ts</code> generation which led methods prefixed with two underscores to be incorrectly made private in the generated declaration file.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/natemoo-re/ultrahtml/blob/main/CHANGELOG.md">ultrahtml's changelog</a>.</em></p> <blockquote> <h2>1.5.3</h2> <h3>Patch Changes</h3> <ul> <li>ebc97e0: upgrades <code>dts-bundle-generator</code> to <code>9.2.1</code>, fixing an issue with <code>.d.ts</code> generation which led methods prefixed with two underscores to be incorrectly made private in the generated declaration file.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/natemoo-re/ultrahtml/commit/93a127343f7a9f0e2286049145502e0b4dc20b32"><code>93a1273</code></a> Merge pull request <a href="https://redirect.github.com/natemoo-re/ultrahtml/issues/68">#68</a> from natemoo-re/changeset-release/main</li> <li><a href="https://github.com/natemoo-re/ultrahtml/commit/8d42d8dbf283f06462f168438298a4078e881b07"><code>8d42d8d</code></a> [ci] release</li> <li><a href="https://github.com/natemoo-re/ultrahtml/commit/007824dffe5ea51246d3954b60b7b7c5d301e395"><code>007824d</code></a> Merge pull request <a href="https://redirect.github.com/natemoo-re/ultrahtml/issues/65">#65</a> from michaelhthomas/chore/upgrade-dts-bundle-generator</li> <li><a href="https://github.com/natemoo-re/ultrahtml/commit/efc44dc1462717ae0c2a92fd5dee8a1a16962ea2"><code>efc44dc</code></a> Merge pull request <a href="https://redirect.github.com/natemoo-re/ultrahtml/issues/67">#67</a> from natemoo-re/fix-test</li> <li><a href="https://github.com/natemoo-re/ultrahtml/commit/a59ac9291e1549fa26914c79ae6030d365f93b90"><code>a59ac92</code></a> This Fixes <code>script.test.ts</code>, Mozilla.org updated the website being tested fro...</li> <li><a href="https://github.com/natemoo-re/ultrahtml/commit/ebc97e0186f74d972ea9c172da488d8673ea0cc2"><code>ebc97e0</code></a> chore: add changeset</li> <li><a href="https://github.com/natemoo-re/ultrahtml/commit/2f6c0dade6d59248952d2d29fc3eca503a8a7452"><code>2f6c0da</code></a> chore: upgrade <code>dts-bundle-generator</code> <code>8.0.1</code> -&gt; <code>9.2.1</code></li> <li>See full diff in <a href="https://github.com/natemoo-re/ultrahtml/compare/v1.5.2...v1.5.3">compare view</a></li> </ul> </details> <br /> Updates `@fontsource-variable/inter` from 5.0.16 to 5.0.17 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/inter">compare view</a></li> </ul> </details> <br /> Updates `astro-seo` from 0.8.2 to 0.8.3 <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.3</h2> <h3><a href="https://github.com/jonasmerlin/astro-seo/compare/v0.8.2...v0.8.3">0.8.3</a> (2024-03-03)</h3> <ul> <li>improvement: re-export Props as SEOProps</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.2...v0.8.3">0.8.3</a> (2024-03-03)</h3> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/7d3387a2d90aab5fc622def6994520f705c685e3"><code>7d3387a</code></a> chore(release): 0.8.3</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/9278a17b2e246acaa0be63fbe6c80191dd260e15"><code>9278a17</code></a> improvement: re-export Props as SEOProps</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/6974c405b469e417c30a74675574827e7cdbc5c8"><code>6974c40</code></a> test: Delete trailing slash from test</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/3c16c642a57d1ae6729e3616f6df29ea93e0f298"><code>3c16c64</code></a> Update all GH actions to latest version</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/8e3f4404413ab405fd9d6b9e2ef3ebb5927cdb37"><code>8e3f440</code></a> chore: Update Cypress GH action to v6</li> <li><a href="https://github.com/jonasmerlin/astro-seo/commit/47c2378a94cb84f1ec9a82c12325a190db03aa93"><code>47c2378</code></a> Update CHANGELOG</li> <li>See full diff in <a href="https://github.com/jonasmerlin/astro-seo/compare/v0.8.2...v0.8.3">compare view</a></li> </ul> </details> <br /> Updates `sass` from 1.71.0 to 1.71.1 <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.1</h2> <p>To install Sass 1.71.1, 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> <h3>Command-Line Interface</h3> <ul> <li>Ship the musl Linux release with the proper Dart executable.</li> </ul> <h3>JavaScript API</h3> <ul> <li> <p>Export the <code>NodePackageImporter</code> class in ESM mode.</p> </li> <li> <p>Allow <code>NodePackageImporter</code> to locate a default directory even when the entrypoint is an ESM module.</p> </li> </ul> <h3>Dart API</h3> <ul> <li>Make passing a null argument to <code>NodePackageImporter()</code> a static error rather than just a runtime error.</li> </ul> <h3>Embedded Sass</h3> <ul> <li>In the JS Embedded Host, properly install the musl Linux embedded compiler when running on musl Linux.</li> </ul> <p>See the <a href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1711">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.1</h2> <h3>Command-Line Interface</h3> <ul> <li>Ship the musl Linux release with the proper Dart executable.</li> </ul> <h3>JavaScript API</h3> <ul> <li> <p>Export the <code>NodePackageImporter</code> class in ESM mode.</p> </li> <li> <p>Allow <code>NodePackageImporter</code> to locate a default directory even when the entrypoint is an ESM module.</p> </li> </ul> <h3>Dart API</h3> <ul> <li>Make passing a null argument to <code>NodePackageImporter()</code> a static error rather than just a runtime error.</li> </ul> <h3>Embedded Sass</h3> <ul> <li>In the JS Embedded Host, properly install the musl Linux embedded compiler when running on musl Linux.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sass/dart-sass/commit/1b4d703ad369a2176f0bc0bd4a37502e7acd9c1d"><code>1b4d703</code></a> Release 1.71.1 (<a href="https://redirect.github.com/sass/dart-sass/issues/2182">#2182</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/6d66c4376ad352ec4521b775c3559e1828e839ea"><code>6d66c43</code></a> Properly handle <code>new NodePackageImporter()</code> with an ESM entrypoint (<a href="https://redirect.github.com/sass/dart-sass/issues/2181">#2181</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/85a932f6481896f3de4b9359b0b531fe28b49e45"><code>85a932f</code></a> Add missing ESM export of NodePackageImporter (<a href="https://redirect.github.com/sass/dart-sass/issues/2177">#2177</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/786dd63ea1ba7f9bdfe1797c9741f3b6c99c8887"><code>786dd63</code></a> Fix linux musl builds (<a href="https://redirect.github.com/sass/dart-sass/issues/2175">#2175</a>)</li> <li>See full diff in <a href="https://github.com/sass/dart-sass/compare/1.71.0...1.71.1">compare view</a></li> </ul> </details> <br /> Updates `@astrojs/starlight` from 0.19.0 to 0.21.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/withastro/starlight/releases"><code>@​astrojs/starlight</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​astrojs/starlight</code><a href="https://github.com/0"><code>@​0</code></a>.21.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1584">#1584</a> <a href="https://github.com/withastro/starlight/commit/8851d5cd0d8f8439320ef729ca57a59418db52b9"><code>8851d5cd</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds 2 new icons: <code>apple</code> and <code>linux</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1577">#1577</a> <a href="https://github.com/withastro/starlight/commit/0ba77890e0dcf54a849c735efd870327c10972aa"><code>0ba77890</code></a> Thanks <a href="https://github.com/morinokami"><code>@​morinokami</code></a>! - Translates <code>fileTree.directory</code> UI string into Japanese.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1593">#1593</a> <a href="https://github.com/withastro/starlight/commit/fa7ed2458caf6261d16c5f43365cedbcb8572a48"><code>fa7ed245</code></a> Thanks <a href="https://github.com/liruifengv"><code>@​liruifengv</code></a>! - Translates <code>fileTree.directory</code> UI string into simplified Chinese.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1585">#1585</a> <a href="https://github.com/withastro/starlight/commit/bd4e278f7fe7d7335494602db29a63002fd45059"><code>bd4e278f</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Translates <code>fileTree.directory</code> UI string into French.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1587">#1587</a> <a href="https://github.com/withastro/starlight/commit/c5794260251ed414a396089782a1788539c92dd3"><code>c5794260</code></a> Thanks <a href="https://github.com/Eveeifyeve"><code>@​Eveeifyeve</code></a>! - Adds 1 new icon: <code>homebrew</code>.</p> </li> </ul> <h2><code>@​astrojs/starlight</code><a href="https://github.com/0"><code>@​0</code></a>.21.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1568">#1568</a> <a href="https://github.com/withastro/starlight/commit/5f99a71ddfe92568b1cd3c0bfe5ebfd139797c1a"><code>5f99a71d</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds support for optionally setting an icon on a <code>&lt;TabItem&gt;</code> component to make it easier to visually distinguish between tabs.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1308">#1308</a> <a href="https://github.com/withastro/starlight/commit/9a918a5b4902f43729f4d023257772710af3a12b"><code>9a918a5b</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds <code>&lt;FileTree&gt;</code> component to display the structure of a directory.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1308">#1308</a> <a href="https://github.com/withastro/starlight/commit/9a918a5b4902f43729f4d023257772710af3a12b"><code>9a918a5b</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds 144 new file-type icons from the <a href="https://github.com/jesseweed/seti-ui#current-icons">Seti UI icon set</a>, available with the <code>seti:</code> prefix, e.g. <code>seti:javascript</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1564">#1564</a> <a href="https://github.com/withastro/starlight/commit/d880065e29a632823a08adcb6158a59fd9557270"><code>d880065e</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Adds a <code>&lt;Steps&gt;</code> component for styling more complex guided tasks.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1308">#1308</a> <a href="https://github.com/withastro/starlight/commit/9a918a5b4902f43729f4d023257772710af3a12b"><code>9a918a5b</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds 5 new icons: <code>astro</code>, <code>biome</code>, <code>bun</code>, <code>mdx</code>, and <code>pnpm</code>.</p> </li> </ul> <h2><code>@​astrojs/starlight</code><a href="https://github.com/0"><code>@​0</code></a>.20.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/starlight/pull/1553">#1553</a> <a href="https://github.com/withastro/starlight/commit/8e09114755d37322d6e97b0dc90a5dfd781de8cc"><code>8e091147</code></a> Thanks <a href="https://github.com/hippotastic"><code>@​hippotastic</code></a>! - Updates Expressive Code to v0.33.4 to fix potential race condition bug in Shiki.</li> </ul> <h2><code>@​astrojs/starlight</code><a href="https://github.com/0"><code>@​0</code></a>.20.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1541">#1541</a> <a href="https://github.com/withastro/starlight/commit/1043052f3890a577a73276472f3773924909406b"><code>1043052f</code></a> Thanks <a href="https://github.com/hippotastic"><code>@​hippotastic</code></a>! - Updates <code>astro-expressive-code</code> dependency to the latest minor release (0.33).</p> <p>This unlocks support for <a href="https://expressive-code.com/key-features/word-wrap/">word wrap</a> and <a href="https://expressive-code.com/plugins/line-numbers/">line numbers</a>, as well as updating the syntax highlighter to the latest Shiki release, which includes new and updated language grammars.</p> <p>See the <a href="https://expressive-code.com/releases/">Expressive Code release notes</a> for more information including details of potentially breaking changes.</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1542">#1542</a> <a href="https://github.com/withastro/starlight/commit/b3b7a6069952d5f27a49b2fd097aa4db065e1718"><code>b3b7a606</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Improves error messages shown by Starlight for configuration errors.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1544">#1544</a> <a href="https://github.com/withastro/starlight/commit/65dc6586ef7c1754875db1d48c49e709051a0b13"><code>65dc6586</code></a> Thanks <a href="https://github.com/torn4dom4n"><code>@​torn4dom4n</code></a>! - Update Vietnamese UI translations</p> </li> </ul> <h2><code>@​astrojs/starlight</code><a href="https://github.com/0"><code>@​0</code></a>.19.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/starlight/pull/1527">#1527</a> <a href="https://github.com/withastro/starlight/commit/163bc848e173eecca92d1cb034045fdb42aa4ff1"><code>163bc84</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Exports the <code>StarlightPageProps</code> TypeScript type representing the props expected by the <code>&lt;StarlightPage /&gt;</code> component.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md"><code>@​astrojs/starlight</code>'s changelog</a>.</em></p> <blockquote> <h2>0.21.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1584">#1584</a> <a href="https://github.com/withastro/starlight/commit/8851d5cd0d8f8439320ef729ca57a59418db52b9"><code>8851d5cd</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds 2 new icons: <code>apple</code> and <code>linux</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1577">#1577</a> <a href="https://github.com/withastro/starlight/commit/0ba77890e0dcf54a849c735efd870327c10972aa"><code>0ba77890</code></a> Thanks <a href="https://github.com/morinokami"><code>@​morinokami</code></a>! - Translates <code>fileTree.directory</code> UI string into Japanese.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1593">#1593</a> <a href="https://github.com/withastro/starlight/commit/fa7ed2458caf6261d16c5f43365cedbcb8572a48"><code>fa7ed245</code></a> Thanks <a href="https://github.com/liruifengv"><code>@​liruifengv</code></a>! - Translates <code>fileTree.directory</code> UI string into simplified Chinese.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1585">#1585</a> <a href="https://github.com/withastro/starlight/commit/bd4e278f7fe7d7335494602db29a63002fd45059"><code>bd4e278f</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Translates <code>fileTree.directory</code> UI string into French.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1587">#1587</a> <a href="https://github.com/withastro/starlight/commit/c5794260251ed414a396089782a1788539c92dd3"><code>c5794260</code></a> Thanks <a href="https://github.com/Eveeifyeve"><code>@​Eveeifyeve</code></a>! - Adds 1 new icon: <code>homebrew</code>.</p> </li> </ul> <h2>0.21.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1568">#1568</a> <a href="https://github.com/withastro/starlight/commit/5f99a71ddfe92568b1cd3c0bfe5ebfd139797c1a"><code>5f99a71d</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds support for optionally setting an icon on a <code>&lt;TabItem&gt;</code> component to make it easier to visually distinguish between tabs.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1308">#1308</a> <a href="https://github.com/withastro/starlight/commit/9a918a5b4902f43729f4d023257772710af3a12b"><code>9a918a5b</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds <code>&lt;FileTree&gt;</code> component to display the structure of a directory.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1308">#1308</a> <a href="https://github.com/withastro/starlight/commit/9a918a5b4902f43729f4d023257772710af3a12b"><code>9a918a5b</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds 144 new file-type icons from the <a href="https://github.com/jesseweed/seti-ui#current-icons">Seti UI icon set</a>, available with the <code>seti:</code> prefix, e.g. <code>seti:javascript</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1564">#1564</a> <a href="https://github.com/withastro/starlight/commit/d880065e29a632823a08adcb6158a59fd9557270"><code>d880065e</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Adds a <code>&lt;Steps&gt;</code> component for styling more complex guided tasks.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1308">#1308</a> <a href="https://github.com/withastro/starlight/commit/9a918a5b4902f43729f4d023257772710af3a12b"><code>9a918a5b</code></a> Thanks <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>! - Adds 5 new icons: <code>astro</code>, <code>biome</code>, <code>bun</code>, <code>mdx</code>, and <code>pnpm</code>.</p> </li> </ul> <h2>0.20.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/starlight/pull/1553">#1553</a> <a href="https://github.com/withastro/starlight/commit/8e09114755d37322d6e97b0dc90a5dfd781de8cc"><code>8e091147</code></a> Thanks <a href="https://github.com/hippotastic"><code>@​hippotastic</code></a>! - Updates Expressive Code to v0.33.4 to fix potential race condition bug in Shiki.</li> </ul> <h2>0.20.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1541">#1541</a> <a href="https://github.com/withastro/starlight/commit/1043052f3890a577a73276472f3773924909406b"><code>1043052f</code></a> Thanks <a href="https://github.com/hippotastic"><code>@​hippotastic</code></a>! - Updates <code>astro-expressive-code</code> dependency to the latest minor release (0.33).</p> <p>This unlocks support for <a href="https://expressive-code.com/key-features/word-wrap/">word wrap</a> and <a href="https://expressive-code.com/plugins/line-numbers/">line numbers</a>, as well as updating the syntax highlighter to the latest Shiki release, which includes new and updated language grammars.</p> <p>See the <a href="https://expressive-code.com/releases/">Expressive Code release notes</a> for more information including details of potentially breaking changes.</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1542">#1542</a> <a href="https://github.com/withastro/starlight/commit/b3b7a6069952d5f27a49b2fd097aa4db065e1718"><code>b3b7a606</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Improves error messages shown by Starlight for configuration errors.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1544">#1544</a> <a href="https://github.com/withastro/starlight/commit/65dc6586ef7c1754875db1d48c49e709051a0b13"><code>65dc6586</code></a> Thanks <a href="https://github.com/torn4dom4n"><code>@​torn4dom4n</code></a>! - Update Vietnamese UI translations</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/starlight/commit/6204cf2880b7e89e2352f15cd469ef07fbc15fe3"><code>6204cf2</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1586">#1586</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/8851d5cd0d8f8439320ef729ca57a59418db52b9"><code>8851d5c</code></a> Add <code>apple</code> &amp; <code>linux</code> icons (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1584">#1584</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/8e37ac8db0ecb85b9eb3d21cf8958ff06ab02630"><code>8e37ac8</code></a> [ci] format</li> <li><a href="https://github.com/withastro/starlight/commit/c5794260251ed414a396089782a1788539c92dd3"><code>c579426</code></a> Add <code>homebrew</code> icon (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1587">#1587</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/fa7ed2458caf6261d16c5f43365cedbcb8572a48"><code>fa7ed24</code></a> Translates <code>fileTree.directory</code> UI string into simplified Chinese. (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1593">#1593</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/bd4e278f7fe7d7335494602db29a63002fd45059"><code>bd4e278</code></a> i18n(fr): translate <code>fileTree.directory</code> UI string (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1585">#1585</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/0ba77890e0dcf54a849c735efd870327c10972aa"><code>0ba7789</code></a> Translate <code>fileTree.directory</code> into Japanese (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1577">#1577</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/dae1cb260190d4c6bb9eb45722ece16f664932a9"><code>dae1cb2</code></a> [ci] format</li> <li><a href="https://github.com/withastro/starlight/commit/ab38709dd96b02b67342a292534ddfc8c0037ea9"><code>ab38709</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1574">#1574</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/d880065e29a632823a08adcb6158a59fd9557270"><code>d880065</code></a> Add <code>\&lt;Steps&gt;</code> component (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1564">#1564</a>)</li> <li>Additional commits viewable in <a href="https://github.com/withastro/starlight/commits/@astrojs/starlight@0.21.1/packages/starlight">compare view</a></li> </ul> </details> <br /> Updates `sharp` from 0.32.6 to 0.33.2 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/lovell/sharp/blob/main/docs/changelog.md">sharp's changelog</a>.</em></p> <blockquote> <h3>v0.33.2 - 12th January 2024</h3> <ul> <li> <p>Upgrade to libvips v8.15.1 for upstream bug fixes.</p> </li> <li> <p>TypeScript: add definition for <code>keepMetadata</code>. <a href="https://redirect.github.com/lovell/sharp/pull/3914">#3914</a> <a href="https://github.com/abhi0498"><code>@​abhi0498</code></a></p> </li> <li> <p>Ensure <code>extend</code> operation stays sequential when copying (regression in 0.32.0). <a href="https://redirect.github.com/lovell/sharp/issues/3928">#3928</a></p> </li> <li> <p>Improve error handling for unsupported multi-page rotation. <a href="https://redirect.github.com/lovell/sharp/issues/3940">#3940</a></p> </li> </ul> <h3>v0.33.1 - 17th December 2023</h3> <ul> <li> <p>Add support for Yarn Plug'n'Play filesystem layout. <a href="https://redirect.github.com/lovell/sharp/issues/3888">#3888</a></p> </li> <li> <p>Emit warning when attempting to use invalid ICC profiles. <a href="https://redirect.github.com/lovell/sharp/issues/3895">#3895</a></p> </li> <li> <p>Ensure <code>VIPS_NOVECTOR</code> environment variable is respected. <a href="https://redirect.github.com/lovell/sharp/pull/3897">#3897</a> <a href="https://github.com/icetee"><code>@​icetee</code></a></p> </li> </ul> <h3>v0.33.0 - 29th November 2023</h3> <ul> <li> <p>Drop support for Node.js 14 and 16, now requires Node.js ^18.17.0 or &gt;= 20.3.0</p> </li> <li> <p>Prebuilt binaries distributed via npm registry and installed via package manager.</p> </li> <li> <p>Building from source requires dependency on <code>node-addon-api</code>.</p> </li> <li> <p>Remove <code>sharp.vendor</code>.</p> </li> <li> <p>Partially deprecate <code>withMetadata()</code>, use <code>withExif()</code> and <code>withIccProfile()</code>.</p> </li> <li> <p>Add experimental support for WebAssembly-based runtimes. <a href="https://github.com/RReverser"><code>@​RReverser</code></a></p> </li> <li> <p>Options for <code>trim</code> operation must be an Object, add new <code>lineArt</code> option. <a href="https://redirect.github.com/lovell/sharp/issues/2363">#2363</a></p> </li> <li> <p>Improve luminance of <code>tint</code> operation with weighting function. <a href="https://redirect.github.com/lovell/sharp/issues/3338">#3338</a> <a href="https://github.com/jcupitt"><code>@​jcupitt</code></a></p> </li> <li> <p>Ensure all <code>Error</code> objects contain a <code>stack</code> property. <a href="https://redirect.github.com/lovell/sharp/issues/3653">#3653</a></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lovell/sharp/commit/bcb22af03457a9a1d77e44e6b258979ccc532941"><code>bcb22af</code></a> Release v0.33.2</li> <li><a href="https://github.com/lovell/sharp/commit/d04dc62666772216a48db30b92dcf968dbca5976"><code>d04dc62</code></a> Prerelease v0.33.2-rc.1</li> <li><a href="https://github.com/lovell/sharp/commit/c30d355f97e5df690dbe4fe74deb20de316ce83c"><code>c30d355</code></a> CI: Fix npm smoke test expectation</li> <li><a href="https://github.com/lovell/sharp/commit/49cb148b389e96def2b6bd49c6e2e11fe0d98f92"><code>49cb148</code></a> Prerelease v0.33.2-rc.0</li> <li><a href="https://github.com/lovell/sharp/commit/3bc31a8b20b9d297df18231c057a9b97fa2c004b"><code>3bc31a8</code></a> CI: Verify emscripten versions match</li> <li><a href="https://github.com/lovell/sharp/commit/c28523e70e143fbe2110462438d2022a6cbdecd4"><code>c28523e</code></a> CI: Update Emscripten Docker image to 3.1.51 (<a href="https://redirect.github.com/lovell/sharp/issues/3907">#3907</a>)</li> <li><a href="https://github.com/lovell/sharp/commit/278f393f74866bcbaa8b00a393afb5daab378272"><code>278f393</code></a> Upgrade to libvips v8.15.1</li> <li><a href="https://github.com/lovell/sharp/commit/cbf68c13954c073522dbc6c995c8ff813c6d5a11"><code>cbf68c1</code></a> Improve error for unsupported multi-page rotation <a href="https://redirect.github.com/lovell/sharp/issues/3940">#3940</a></li> <li><a href="https://github.com/lovell/sharp/commit/45e8071599772f320d0d8314fedf0b13b0592d28"><co... _Description has been truncated_
changeset-bot[bot] commented 2024-03-04 11:57:10 +00:00 (Migrated from github.com)

⚠️ No Changeset found

Latest commit: ca7a97013d

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

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

### ⚠️ No Changeset found Latest commit: ca7a97013d348a4bac93021fb1a14f8042dc2a5c Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. **If these changes should result in a version bump, you need to add a changeset.** <details><summary>This PR includes no changesets</summary> When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types </details> [Click here to learn what changesets are, and how to add one](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md). [Click here if you're a maintainer who wants to add a changeset to this PR](https://github.com/MatthiesenXYZ/astro-ghostcms/new/dependabot/npm_and_yarn/prod-dependencies-268fc9be2d?filename=.changeset/silent-gorillas-care.md&value=---%0A%22%40matthiesenxyz%2Fastro-ghostcms-brutalbyelian%22%3A%20patch%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%22%40matthiesenxyz%2Fstarlight-ghostcms%22%3A%20patch%0A%22playground%22%3A%20patch%0A%22starlight-playground%22%3A%20patch%0A---%0A%0ABump%20the%20prod-dependencies%20group%20with%2011%20updates%0A)
dependabot[bot] commented 2024-03-07 12:13:37 +00:00 (Migrated from github.com)

Looks like these dependencies are updatable in another way, so this is no longer needed.

Looks like these dependencies are updatable in another way, so this is no longer needed.

Pull request closed

Sign in to join this conversation.
No description provided.