Bump the prod-dependencies group with 9 updates #75

Closed
dependabot[bot] wants to merge 1 commits from dependabot/npm_and_yarn/prod-dependencies-d07c16978e into main
dependabot[bot] commented 2024-02-26 11:26:08 +00:00 (Migrated from github.com)

Bumps the prod-dependencies group with 9 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.4
package-json 9.0.0 10.0.0
vite 5.1.3 5.1.4
ultrahtml 1.5.2 1.5.3
sass 1.71.0 1.71.1
@astrojs/starlight 0.19.0 0.20.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.4

Release notes

Sourced from astro's releases.

astro@4.4.4

Patch Changes

astro@4.4.3

Patch Changes

astro@4.4.2

Patch Changes

astro@4.4.1

Patch Changes

Changelog

Sourced from astro's changelog.

4.4.4

Patch Changes

4.4.3

Patch Changes

4.4.2

Patch Changes

4.4.1

Patch Changes

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 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.20.1

Release notes

Sourced from @​astrojs/starlight's releases.

@​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

Changelog

Sourced from @​astrojs/starlight's changelog.

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

0.19.1

Patch Changes

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
  • bcb22af Release v0.33.2
  • d04dc62 Prerelease v0.33.2-rc.1
  • c30d355 CI: Fix npm smoke test expectation
  • 49cb148 Prerelease v0.33.2-rc.0
  • 3bc31a8 CI: Verify emscripten versions match
  • c28523e CI: Update Emscripten Docker image to 3.1.51 (#3907)
  • 278f393 Upgrade to libvips v8.15.1
  • cbf68c1 Improve error for unsupported multi-page rotation #3940
  • 45e8071 Add runtime check for outdated Node.js version
  • b96389d Docs: refresh index
  • Additional commits viewable in compare view

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 9 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.4` | | [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` | | [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.20.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.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/releases">astro's releases</a>.</em></p> <blockquote> <h2>astro@4.4.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10195">#10195</a> <a href="https://github.com/withastro/astro/commit/903eace233033998811b72e27a54c80d8e59ff37"><code>903eace233033998811b72e27a54c80d8e59ff37</code></a> Thanks <a href="https://github.com/1574242600"><code>@​1574242600</code></a>! - Fix build failure caused by read-only files under /public (in the presence of client-side JS).</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10205">#10205</a> <a href="https://github.com/withastro/astro/commit/459f74bc71748279fe7dce0688f38bd74b51c5c1"><code>459f74bc71748279fe7dce0688f38bd74b51c5c1</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Adds an error message for non-string transition:name values</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10208">#10208</a> <a href="https://github.com/withastro/astro/commit/8cd38f02456640c063552aef00b2b8a216b3935d"><code>8cd38f02456640c063552aef00b2b8a216b3935d</code></a> Thanks <a href="https://github.com/log101"><code>@​log101</code></a>! - Fixes custom headers are not added to the Node standalone server responses in preview mode</p> </li> </ul> <h2>astro@4.4.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10143">#10143</a> <a href="https://github.com/withastro/astro/commit/7c5fcd2fa817472f480bbfbbc11b9ed71a7210ab"><code>7c5fcd2fa817472f480bbfbbc11b9ed71a7210ab</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Improves the default <code>optimizeDeps.entries</code> Vite config to avoid globbing server endpoints, and respect the <code>srcDir</code> option</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10197">#10197</a> <a href="https://github.com/withastro/astro/commit/c856c729404196900a7386c8426b81e79684a6a9"><code>c856c729404196900a7386c8426b81e79684a6a9</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Fixes errors being logged twice in some cases</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10166">#10166</a> <a href="https://github.com/withastro/astro/commit/598f30c7cd6c88558e3806d9bc5a15d426d83992"><code>598f30c7cd6c88558e3806d9bc5a15d426d83992</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Improves Astro style tag HMR when updating imported styles</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10194">#10194</a> <a href="https://github.com/withastro/astro/commit/3cc20109277813ccb9578ca87a8b0d680a73c35c"><code>3cc20109277813ccb9578ca87a8b0d680a73c35c</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Fixes an issue related to content collections usage in browser context caused by <code>csssec</code></p> </li> </ul> <h2>astro@4.4.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/10169">#10169</a> <a href="https://github.com/withastro/astro/commit/a46249173edde66b03c19441144272baa8394fb4"><code>a46249173edde66b03c19441144272baa8394fb4</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes an issue with the <code>i18n.routing</code> types, where an internal transformation was causing the generation of incorrect types for integrations.</li> </ul> <h2>astro@4.4.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9795">#9795</a> <a href="https://github.com/withastro/astro/commit/5acc3135ba5309a566def466fbcbabd23f70cd68"><code>5acc3135ba5309a566def466fbcbabd23f70cd68</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Refactors internals relating to middleware, endpoints, and page rendering.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10105">#10105</a> <a href="https://github.com/withastro/astro/commit/1f598b372410066c6fcd41cba9915f6aaf7befa8"><code>1f598b372410066c6fcd41cba9915f6aaf7befa8</code></a> Thanks <a href="https://github.com/negativems"><code>@​negativems</code></a>! - Fixes an issue where some astro commands failed if the astro config file or an integration used the global <code>crypto</code> object.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10165">#10165</a> <a href="https://github.com/withastro/astro/commit/d50dddb71d87ce5b7928920f10eb4946a5339f86"><code>d50dddb71d87ce5b7928920f10eb4946a5339f86</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes an issue where the <code>i18n.routing</code> object had all its fields defined as mandatory. Now they all are optionals and shouldn't break when using <code>astro.config.mts</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10132">#10132</a> <a href="https://github.com/withastro/astro/commit/1da9c5f2f3fe70b0206d1b3e0c01744fa40d511c"><code>1da9c5f2f3fe70b0206d1b3e0c01744fa40d511c</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Simplifies internal Vite preview server teardown</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10163">#10163</a> <a href="https://github.com/withastro/astro/commit/b92d35f1026f3e99abb888d1a845bdda4efdc327"><code>b92d35f1026f3e99abb888d1a845bdda4efdc327</code></a> Thanks <a href="https://github.com/mingjunlu"><code>@​mingjunlu</code></a>! - Fixes an issue where audit fails to initialize when encountered <code>&lt;a&gt;</code> inside <code>&lt;svg&gt;</code></p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10079">#10079</a> <a href="https://github.com/withastro/astro/commit/80f8996514e6d0546e94bd927650cd4ab2f1fa2f"><code>80f8996514e6d0546e94bd927650cd4ab2f1fa2f</code></a> Thanks <a href="https://github.com/ktym4a"><code>@​ktym4a</code></a>! - Fix integrationData fetch to always be called even if View Transition is enabled.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10139">#10139</a> <a href="https://github.com/withastro/astro/commit/3c73441eb2eaba767d6dad1b30c0353195d28791"><code>3c73441eb2eaba767d6dad1b30c0353195d28791</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Fixes style-only change detection for Astro files if both the markup and styles are updated</p> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md">astro's changelog</a>.</em></p> <blockquote> <h2>4.4.4</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10195">#10195</a> <a href="https://github.com/withastro/astro/commit/903eace233033998811b72e27a54c80d8e59ff37"><code>903eace233033998811b72e27a54c80d8e59ff37</code></a> Thanks <a href="https://github.com/1574242600"><code>@​1574242600</code></a>! - Fix build failure caused by read-only files under /public (in the presence of client-side JS).</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10205">#10205</a> <a href="https://github.com/withastro/astro/commit/459f74bc71748279fe7dce0688f38bd74b51c5c1"><code>459f74bc71748279fe7dce0688f38bd74b51c5c1</code></a> Thanks <a href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Adds an error message for non-string transition:name values</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10208">#10208</a> <a href="https://github.com/withastro/astro/commit/8cd38f02456640c063552aef00b2b8a216b3935d"><code>8cd38f02456640c063552aef00b2b8a216b3935d</code></a> Thanks <a href="https://github.com/log101"><code>@​log101</code></a>! - Fixes custom headers are not added to the Node standalone server responses in preview mode</p> </li> </ul> <h2>4.4.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10143">#10143</a> <a href="https://github.com/withastro/astro/commit/7c5fcd2fa817472f480bbfbbc11b9ed71a7210ab"><code>7c5fcd2fa817472f480bbfbbc11b9ed71a7210ab</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Improves the default <code>optimizeDeps.entries</code> Vite config to avoid globbing server endpoints, and respect the <code>srcDir</code> option</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10197">#10197</a> <a href="https://github.com/withastro/astro/commit/c856c729404196900a7386c8426b81e79684a6a9"><code>c856c729404196900a7386c8426b81e79684a6a9</code></a> Thanks <a href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! - Fixes errors being logged twice in some cases</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10166">#10166</a> <a href="https://github.com/withastro/astro/commit/598f30c7cd6c88558e3806d9bc5a15d426d83992"><code>598f30c7cd6c88558e3806d9bc5a15d426d83992</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Improves Astro style tag HMR when updating imported styles</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10194">#10194</a> <a href="https://github.com/withastro/astro/commit/3cc20109277813ccb9578ca87a8b0d680a73c35c"><code>3cc20109277813ccb9578ca87a8b0d680a73c35c</code></a> Thanks <a href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Fixes an issue related to content collections usage in browser context caused by <code>csssec</code></p> </li> </ul> <h2>4.4.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/withastro/astro/pull/10169">#10169</a> <a href="https://github.com/withastro/astro/commit/a46249173edde66b03c19441144272baa8394fb4"><code>a46249173edde66b03c19441144272baa8394fb4</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes an issue with the <code>i18n.routing</code> types, where an internal transformation was causing the generation of incorrect types for integrations.</li> </ul> <h2>4.4.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/9795">#9795</a> <a href="https://github.com/withastro/astro/commit/5acc3135ba5309a566def466fbcbabd23f70cd68"><code>5acc3135ba5309a566def466fbcbabd23f70cd68</code></a> Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>! - Refactors internals relating to middleware, endpoints, and page rendering.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10105">#10105</a> <a href="https://github.com/withastro/astro/commit/1f598b372410066c6fcd41cba9915f6aaf7befa8"><code>1f598b372410066c6fcd41cba9915f6aaf7befa8</code></a> Thanks <a href="https://github.com/negativems"><code>@​negativems</code></a>! - Fixes an issue where some astro commands failed if the astro config file or an integration used the global <code>crypto</code> object.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10165">#10165</a> <a href="https://github.com/withastro/astro/commit/d50dddb71d87ce5b7928920f10eb4946a5339f86"><code>d50dddb71d87ce5b7928920f10eb4946a5339f86</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixes an issue where the <code>i18n.routing</code> object had all its fields defined as mandatory. Now they all are optionals and shouldn't break when using <code>astro.config.mts</code>.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10132">#10132</a> <a href="https://github.com/withastro/astro/commit/1da9c5f2f3fe70b0206d1b3e0c01744fa40d511c"><code>1da9c5f2f3fe70b0206d1b3e0c01744fa40d511c</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Simplifies internal Vite preview server teardown</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10163">#10163</a> <a href="https://github.com/withastro/astro/commit/b92d35f1026f3e99abb888d1a845bdda4efdc327"><code>b92d35f1026f3e99abb888d1a845bdda4efdc327</code></a> Thanks <a href="https://github.com/mingjunlu"><code>@​mingjunlu</code></a>! - Fixes an issue where audit fails to initialize when encountered <code>&lt;a&gt;</code> inside <code>&lt;svg&gt;</code></p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10079">#10079</a> <a href="https://github.com/withastro/astro/commit/80f8996514e6d0546e94bd927650cd4ab2f1fa2f"><code>80f8996514e6d0546e94bd927650cd4ab2f1fa2f</code></a> Thanks <a href="https://github.com/ktym4a"><code>@​ktym4a</code></a>! - Fix integrationData fetch to always be called even if View Transition is enabled.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/astro/pull/10139">#10139</a> <a href="https://github.com/withastro/astro/commit/3c73441eb2eaba767d6dad1b30c0353195d28791"><code>3c73441eb2eaba767d6dad1b30c0353195d28791</code></a> Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! - Fixes style-only change detection for Astro files if both the markup and styles are updated</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/astro/commit/3de7b2c7ec98361ffb8afd6ef1c4017038518c80"><code>3de7b2c</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10213">#10213</a>)</li> <li><a href="https://github.com/withastro/astro/commit/459f74bc71748279fe7dce0688f38bd74b51c5c1"><code>459f74b</code></a> Adds an error message for non-string transition:name values (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10205">#10205</a>)</li> <li><a href="https://github.com/withastro/astro/commit/8cd38f02456640c063552aef00b2b8a216b3935d"><code>8cd38f0</code></a> Fix(node): Custom headers are not present in responses from standalone Node s...</li> <li><a href="https://github.com/withastro/astro/commit/903eace233033998811b72e27a54c80d8e59ff37"><code>903eace</code></a> fix(core): build failure caused by read-only files (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10195">#10195</a>)</li> <li><a href="https://github.com/withastro/astro/commit/7fe25158cdbb0c8b724913ffdbdf00f9fcdb7192"><code>7fe2515</code></a> Fix typo in <code>@types/astro.ts</code> (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10204">#10204</a>)</li> <li><a href="https://github.com/withastro/astro/commit/31a9f8469c55a295557d3b3283671055ae728730"><code>31a9f84</code></a> Introduce the db integration (prerelease) (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10201">#10201</a>)</li> <li><a href="https://github.com/withastro/astro/commit/0b4e5298d23e3a4e61f89b8710e574f13bcb9257"><code>0b4e529</code></a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10192">#10192</a>)</li> <li><a href="https://github.com/withastro/astro/commit/c32f0c1ab656fe2e87cd331eaec48a39c12a4f19"><code>c32f0c1</code></a> [ci] format</li> <li><a href="https://github.com/withastro/astro/commit/3cc20109277813ccb9578ca87a8b0d680a73c35c"><code>3cc2010</code></a> Fix cssesc from breaking browser code (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10194">#10194</a>)</li> <li><a href="https://github.com/withastro/astro/commit/c856c729404196900a7386c8426b81e79684a6a9"><code>c856c72</code></a> fix(errors): Remove duplicate logging of errors (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10197">#10197</a>)</li> <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@4.4.4/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 `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.20.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>.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> <p><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.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1504">#1504</a> <a href="https://github.com/withastro/starlight/commit/fc83a05235b74be2bfe6ba8e7f95a8a5a618ead3"><code>fc83a05</code></a> Thanks <a href="https://github.com/mingjunlu"><code>@​mingjunlu</code></a>! - Adds Traditional Chinese UI translations</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1534">#1534</a> <a href="https://github.com/withastro/starlight/commit/aada6805abc0068f07393585b86978ef5200439c"><code>aada680</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Improves DX of the <code>sidebar</code> prop used by the new <code>&lt;StarlightPage&gt;</code> component.</p> </li> </ul> </blockquote> </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.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> <h2>0.19.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><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.</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1504">#1504</a> <a href="https://github.com/withastro/starlight/commit/fc83a05235b74be2bfe6ba8e7f95a8a5a618ead3"><code>fc83a05</code></a> Thanks <a href="https://github.com/mingjunlu"><code>@​mingjunlu</code></a>! - Adds Traditional Chinese UI translations</p> </li> <li> <p><a href="https://redirect.github.com/withastro/starlight/pull/1534">#1534</a> <a href="https://github.com/withastro/starlight/commit/aada6805abc0068f07393585b86978ef5200439c"><code>aada680</code></a> Thanks <a href="https://github.com/delucis"><code>@​delucis</code></a>! - Improves DX of the <code>sidebar</code> prop used by the new <code>&lt;StarlightPage&gt;</code> component.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/withastro/starlight/commit/519142565575cf30cbff530ba386aa3700af6bbd"><code>5191425</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1555">#1555</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/8e09114755d37322d6e97b0dc90a5dfd781de8cc"><code>8e09114</code></a> Update lockfile &amp; patch version of EC to latest (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1553">#1553</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/8486c3c1d486b2d11e420915a0cc7befbfda58d3"><code>8486c3c</code></a> [ci] format</li> <li><a href="https://github.com/withastro/starlight/commit/8fb77bcbb1e2c6e284c606968c9820a70f23ce3b"><code>8fb77bc</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1546">#1546</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/b3b7a6069952d5f27a49b2fd097aa4db065e1718"><code>b3b7a60</code></a> Improve Zod errors (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1542">#1542</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/1043052f3890a577a73276472f3773924909406b"><code>1043052</code></a> Update <code>astro-expressive-code</code> dependency to <code>^0.33.2</code> (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1541">#1541</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/65dc6586ef7c1754875db1d48c49e709051a0b13"><code>65dc658</code></a> Update Vietnamese UI translations (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1544">#1544</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/4d05adb05245a2a544c01d192d22162306660aed"><code>4d05adb</code></a> [ci] format</li> <li><a href="https://github.com/withastro/starlight/commit/544fcb2b710657dab60a140190472aa7261fb12e"><code>544fcb2</code></a> [ci] release (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1540">#1540</a>)</li> <li><a href="https://github.com/withastro/starlight/commit/aada6805abc0068f07393585b86978ef5200439c"><code>aada680</code></a> Improve DX for <code>sidebar</code> prop in <code>\&lt;StarlightPage&gt;</code> and document it (<a href="https://github.com/withastro/starlight/tree/HEAD/packages/starlight/issues/1534">#1534</a>)</li> <li>Additional commits viewable in <a href="https://github.com/withastro/starlight/commits/@astrojs/starlight@0.20.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"><code>45e8071</code></a> Add runtime check for outdated Node.js version</li> <li><a href="https://github.com/lovell/sharp/commit/b96389d975f1ff9fed52658c46dbe7bbe34da77b"><code>b96389d</code></a> Docs: refresh index</li> <li>Additional commits viewable in <a href="https://github.com/lovell/sharp/compare/v0.32.6...v0.33.2">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-26 11:26:12 +00:00 (Migrated from github.com)

⚠️ No Changeset found

Latest commit: 994cc318fd

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: 994cc318fd8919a257d9b0ed8cc5bd0846fcb762 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-d07c16978e?filename=.changeset/silver-deers-bake.md&value=---%0A%22%40matthiesenxyz%2Fastro-ghostcms-brutalbyelian%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%209%20updates%0A)
dependabot[bot] commented 2024-03-04 11:56:20 +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.