chore(deps): bump the production-dependencies group across 1 directory with 11 updates #23

Merged
dependabot[bot] merged 1 commit from dependabot/npm_and_yarn/production-dependencies-390b2ea279 into v4 2025-09-23 04:44:52 +00:00
dependabot[bot] commented 2025-09-22 15:32:11 +00:00 (Migrated from github.com)

Bumps the production-dependencies group with 11 updates in the / directory:

Package From To
@webgpu/types 0.1.64 0.1.65
is-absolute-url 4.0.1 5.0.0
pixi.js 8.13.1 8.13.2
preact 10.27.1 10.27.2
pretty-bytes 7.0.1 7.1.0
satori 0.18.2 0.18.3
sharp 0.34.3 0.34.4
shiki 3.12.2 3.13.0
workerpool 9.3.3 9.3.4
@types/node 24.3.1 24.5.2
esbuild 0.25.9 0.25.10

Updates @webgpu/types from 0.1.64 to 0.1.65

Commits

Updates is-absolute-url from 4.0.1 to 5.0.0

Release notes

Sourced from is-absolute-url's releases.

v5.0.0

Breaking

  • Require Node.js 20 430699d
  • It now only allows http:// and https:// protocols by default 05e1989
    • To get the old behavior, pass in {httpOnly: false}

Improvements

  • Add httpOnly option and make it the default 05e1989

https://github.com/sindresorhus/is-absolute-url/compare/v4.0.1...v5.0.0

Commits

Updates pixi.js from 8.13.1 to 8.13.2

Release notes

Sourced from pixi.js's releases.

v8.13.2

💾 Download

Installation:

npm install pixi.js@8.13.2

Development Build:

Production Build:

Documentation:

Changed

https://github.com/pixijs/pixi.js/compare/v8.13.1...v8.13.2

🐛 Fixed

Commits
  • 8eee29c v8.13.2
  • 2fd06dc fix: application destroy for graphics (#11659)
  • f3ed022 fix: recalculate the boundaries of GraphicsContext regardless of rendering ...
  • fbf2049 fix: destroy of prepared but not rendered text should not throw an error (#11...
  • See full diff in compare view

Updates preact from 10.27.1 to 10.27.2

Release notes

Sourced from preact's releases.

10.27.2

Types

Fixes

Commits

Updates pretty-bytes from 7.0.1 to 7.1.0

Release notes

Sourced from pretty-bytes's releases.

v7.1.0

  • Add fixedWidth option for right-aligned output 73df489
  • Add nonBreakingSpace option b637640
  • Fix truncation behavior with fraction digits options b64cee5

https://github.com/sindresorhus/pretty-bytes/compare/v7.0.1...v7.1.0

Commits

Updates satori from 0.18.2 to 0.18.3

Release notes

Sourced from satori's releases.

0.18.3

0.18.3 (2025-09-15)

Bug Fixes

  • Support forwardRef wrapped component (#601)
Commits

Updates sharp from 0.34.3 to 0.34.4

Release notes

Sourced from sharp's releases.

v0.34.4

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

  • Ensure TIFF subifd and OpenSlide level input options are respected (regression in 0.34.3).

  • Ensure autoOrient occurs before non-90 angle rotation. #4425

  • Ensure autoOrient removes existing metadata after shrink-on-load. #4431

  • TypeScript: Ensure KernelEnum includes linear. #4441 @​BayanBennett

  • Ensure unlimited flag is passed upstream when reading TIFF images. #4446

  • Support Electron memory cage when reading XMP metadata (regression in 0.34.3). #4451

  • Add sharp-libvips rpath for yarn v5 support. #4452 @​arcanis

v0.34.4-rc.4

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

  • Ensure TIFF subifd and OpenSlide level input options are respected (regression in 0.34.3).

  • Ensure autoOrient occurs before non-90 angle rotation. #4425

  • Ensure autoOrient removes existing metadata after shrink-on-load. #4431

  • TypeScript: Ensure KernelEnum includes linear. #4441 @​BayanBennett

  • Ensure unlimited flag is passed upstream when reading TIFF images. #4446

  • Support Electron memory cage when reading XMP metadata (regression in 0.34.3). #4451

  • Add sharp-libvips rpath for yarn v5 support. #4452 @​arcanis

... (truncated)

Commits
  • ee43783 Release v0.34.4
  • 5299011 CI/Docs: Deno v2 support
  • 4710092 Prerelease v0.34.4-rc.4
  • ed1ac43 CI: Upgrade packaging test dependencies
  • dfcbcee Upgrade sharp-libvips to v1.2.3
  • 35d3f56 Ensure TIFF subifd and OpenSlide level are respected
  • 9f4bace Prerelease v0.34.4-rc.3
  • b507831 CI: Remove dry-run flag
  • 905f698 Prerelease v0.34.4-rc.2
  • b0154ed Upgrade sharp-libvips to v1.2.2
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for sharp since your current version.


Updates shiki from 3.12.2 to 3.13.0

Release notes

Sourced from shiki's releases.

v3.13.0

   🚀 Features

    View changes on GitHub

v3.12.3

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates workerpool from 9.3.3 to 9.3.4

Changelog

Sourced from workerpool's changelog.

2025-09-10, version 9.3.4

  • Fix: #516 improve error handling for errors containing nested classes by using their .toJSON method when available.
Commits

Updates @types/node from 24.3.1 to 24.5.2

Commits

Updates esbuild from 0.25.9 to 0.25.10

Release notes

Sourced from esbuild's releases.

v0.25.10

  • Fix a panic in a minification edge case (#4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
    
  • Fix @supports nested inside pseudo-element (#4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @supports (color: blue) { color: blue }
    }
    

    /* Old output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    {
    color: blue;
    }
    }

    /* New output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    ::placeholder {
    color: blue;
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.25.10

  • Fix a panic in a minification edge case (#4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
    
  • Fix @supports nested inside pseudo-element (#4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @supports (color: blue) { color: blue }
    }
    

    /* Old output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    {
    color: blue;
    }
    }

    /* New output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    ::placeholder {
    color: blue;

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Bumps the production-dependencies group with 11 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@webgpu/types](https://github.com/gpuweb/types) | `0.1.64` | `0.1.65` | | [is-absolute-url](https://github.com/sindresorhus/is-absolute-url) | `4.0.1` | `5.0.0` | | [pixi.js](https://github.com/pixijs/pixijs) | `8.13.1` | `8.13.2` | | [preact](https://github.com/preactjs/preact) | `10.27.1` | `10.27.2` | | [pretty-bytes](https://github.com/sindresorhus/pretty-bytes) | `7.0.1` | `7.1.0` | | [satori](https://github.com/vercel/satori) | `0.18.2` | `0.18.3` | | [sharp](https://github.com/lovell/sharp) | `0.34.3` | `0.34.4` | | [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `3.12.2` | `3.13.0` | | [workerpool](https://github.com/josdejong/workerpool) | `9.3.3` | `9.3.4` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.3.1` | `24.5.2` | | [esbuild](https://github.com/evanw/esbuild) | `0.25.9` | `0.25.10` | Updates `@webgpu/types` from 0.1.64 to 0.1.65 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gpuweb/types/commit/eb1d10418206de681c3adb8e4d6f63ed8e5f5a5c"><code>eb1d104</code></a> 0.1.65</li> <li><a href="https://github.com/gpuweb/types/commit/77b6940a77ccb00aa8ea81ba06772b5d2b9a2ad7"><code>77b6940</code></a> Add primitive-index GPUFeatureName (<a href="https://redirect.github.com/gpuweb/types/issues/190">#190</a>)</li> <li><a href="https://github.com/gpuweb/types/commit/d7a9fb19569a0e00232d35db56e07e05fbde1336"><code>d7a9fb1</code></a> Test with TypeScript 5.9 (<a href="https://redirect.github.com/gpuweb/types/issues/189">#189</a>)</li> <li><a href="https://github.com/gpuweb/types/commit/cb58f1f1629f2760ac69251fb7030a6c9804a5d6"><code>cb58f1f</code></a> Auto gen update (<a href="https://redirect.github.com/gpuweb/types/issues/166">#166</a>)</li> <li>See full diff in <a href="https://github.com/gpuweb/types/compare/v0.1.64...v0.1.65">compare view</a></li> </ul> </details> <br /> Updates `is-absolute-url` from 4.0.1 to 5.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/is-absolute-url/releases">is-absolute-url's releases</a>.</em></p> <blockquote> <h2>v5.0.0</h2> <h3>Breaking</h3> <ul> <li>Require Node.js 20 430699d</li> <li>It now only allows <code>http://</code> and <code>https://</code> protocols by default 05e1989 <ul> <li>To get the old behavior, pass in <code>{httpOnly: false}</code></li> </ul> </li> </ul> <h3>Improvements</h3> <ul> <li>Add <a href="https://github.com/sindresorhus/is-absolute-url?tab=readme-ov-file#httponly"><code>httpOnly</code></a> option and make it the default 05e1989</li> </ul> <hr /> <p><a href="https://github.com/sindresorhus/is-absolute-url/compare/v4.0.1...v5.0.0">https://github.com/sindresorhus/is-absolute-url/compare/v4.0.1...v5.0.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sindresorhus/is-absolute-url/commit/76c6aff8bd56c55977f37ec71a5d9562bd55ea64"><code>76c6aff</code></a> 5.0.0</li> <li><a href="https://github.com/sindresorhus/is-absolute-url/commit/05e198975c41255c23ec4d3e42fb2a76787d434d"><code>05e1989</code></a> Add <code>httpOnly</code> option and make it the default</li> <li><a href="https://github.com/sindresorhus/is-absolute-url/commit/430699da50a2045c025d678aa1b305868774b94c"><code>430699d</code></a> Require Node.js 20</li> <li>See full diff in <a href="https://github.com/sindresorhus/is-absolute-url/compare/v4.0.1...v5.0.0">compare view</a></li> </ul> </details> <br /> Updates `pixi.js` from 8.13.1 to 8.13.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pixijs/pixijs/releases">pixi.js's releases</a>.</em></p> <blockquote> <h2>v8.13.2</h2> <h2>💾 Download</h2> <p>Installation:</p> <pre lang="bash"><code>npm install pixi.js@8.13.2 </code></pre> <p>Development Build:</p> <ul> <li><a href="https://cdn.jsdelivr.net/npm/pixi.js@8.13.2/dist/pixi.js">https://cdn.jsdelivr.net/npm/pixi.js@8.13.2/dist/pixi.js</a></li> <li><a href="https://cdn.jsdelivr.net/npm/pixi.js@8.13.2/dist/pixi.mjs">https://cdn.jsdelivr.net/npm/pixi.js@8.13.2/dist/pixi.mjs</a></li> </ul> <p>Production Build:</p> <ul> <li><a href="https://cdn.jsdelivr.net/npm/pixi.js@8.13.2/dist/pixi.min.js">https://cdn.jsdelivr.net/npm/pixi.js@8.13.2/dist/pixi.min.js</a></li> <li><a href="https://cdn.jsdelivr.net/npm/pixi.js@8.13.2/dist/pixi.min.mjs">https://cdn.jsdelivr.net/npm/pixi.js@8.13.2/dist/pixi.min.mjs</a></li> </ul> <p>Documentation:</p> <ul> <li><a href="https://pixijs.download/v8.13.2/docs/index.html">https://pixijs.download/v8.13.2/docs/index.html</a></li> </ul> <h2>Changed</h2> <p><a href="https://github.com/pixijs/pixi.js/compare/v8.13.1...v8.13.2">https://github.com/pixijs/pixi.js/compare/v8.13.1...v8.13.2</a></p> <h3>🐛 Fixed</h3> <ul> <li>fix: application destroy for graphics by <a href="https://github.com/Zyie"><code>@​Zyie</code></a> in <a href="https://redirect.github.com/pixijs/pixijs/pull/11659">pixijs/pixijs#11659</a></li> <li>fix: recalculate the boundaries of <code>GraphicsContext</code> regardless of rendering <code>dirty</code> state by <a href="https://github.com/mayakwd"><code>@​mayakwd</code></a> in <a href="https://redirect.github.com/pixijs/pixijs/pull/11671">pixijs/pixijs#11671</a></li> <li>fix: destroy of prepared but not rendered text should not throw an error by <a href="https://github.com/mayakwd"><code>@​mayakwd</code></a> in <a href="https://redirect.github.com/pixijs/pixijs/pull/11672">pixijs/pixijs#11672</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pixijs/pixijs/commit/8eee29cd4ceb3b5f402e3ddce3679e96e8c6cf5f"><code>8eee29c</code></a> v8.13.2</li> <li><a href="https://github.com/pixijs/pixijs/commit/2fd06dc048fb1736e7d47c8dda68defb708fb41f"><code>2fd06dc</code></a> fix: application destroy for graphics (<a href="https://redirect.github.com/pixijs/pixijs/issues/11659">#11659</a>)</li> <li><a href="https://github.com/pixijs/pixijs/commit/f3ed022584077d252c3c97f9f76c83c24e09cd51"><code>f3ed022</code></a> fix: recalculate the boundaries of <code>GraphicsContext</code> regardless of rendering ...</li> <li><a href="https://github.com/pixijs/pixijs/commit/fbf204969c60257272f668c14c2959b45e091041"><code>fbf2049</code></a> fix: destroy of prepared but not rendered text should not throw an error (<a href="https://redirect.github.com/pixijs/pixijs/issues/11">#11</a>...</li> <li>See full diff in <a href="https://github.com/pixijs/pixijs/compare/v8.13.1...v8.13.2">compare view</a></li> </ul> </details> <br /> Updates `preact` from 10.27.1 to 10.27.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/preactjs/preact/releases">preact's releases</a>.</em></p> <blockquote> <h2>10.27.2</h2> <h2>Types</h2> <ul> <li>Mirror non-JSX types to the 'preact' namespace (<a href="https://redirect.github.com/preactjs/preact/issues/4904">#4904</a>, thanks <a href="https://github.com/rschristian"><code>@​rschristian</code></a>)</li> </ul> <h2>Fixes</h2> <ul> <li>Address memory leak (<a href="https://redirect.github.com/preactjs/preact/issues/4906">#4906</a>, thanks <a href="https://github.com/JoviDeCroock"><code>@​JoviDeCroock</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/preactjs/preact/commit/0dbe6367842c055637ba67814b37f488a9ad7211"><code>0dbe636</code></a> 10.27.2 (<a href="https://redirect.github.com/preactjs/preact/issues/4917">#4917</a>)</li> <li><a href="https://github.com/preactjs/preact/commit/b0cb7c5eafc3ac2b383f6c91b00a8f7ae1ded571"><code>b0cb7c5</code></a> ci: Revert <a href="https://redirect.github.com/preactjs/preact/issues/4911">#4911</a> (<a href="https://redirect.github.com/preactjs/preact/issues/4912">#4912</a>)</li> <li><a href="https://github.com/preactjs/preact/commit/3e86d0281ab374f28726d222bcf66f38fa33db69"><code>3e86d02</code></a> ci: Kickstart benches again in v10.x w/ successful run (<a href="https://redirect.github.com/preactjs/preact/issues/4911">#4911</a>)</li> <li><a href="https://github.com/preactjs/preact/commit/0be5d206ec8ac309d47b780604c3023e23dbe09b"><code>0be5d20</code></a> refactor (v10): Mirror non-JSX types to the 'preact' namespace (<a href="https://redirect.github.com/preactjs/preact/issues/4904">#4904</a>)</li> <li><a href="https://github.com/preactjs/preact/commit/a1039cccb1721d30373ca9ff92b70a7ba57c4459"><code>a1039cc</code></a> Prevent frequently updated components from retaining memory (<a href="https://redirect.github.com/preactjs/preact/issues/4906">#4906</a>)</li> <li>See full diff in <a href="https://github.com/preactjs/preact/compare/10.27.1...10.27.2">compare view</a></li> </ul> </details> <br /> Updates `pretty-bytes` from 7.0.1 to 7.1.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/pretty-bytes/releases">pretty-bytes's releases</a>.</em></p> <blockquote> <h2>v7.1.0</h2> <ul> <li>Add <code>fixedWidth</code> option for right-aligned output 73df489</li> <li>Add <code>nonBreakingSpace</code> option b637640</li> <li>Fix truncation behavior with fraction digits options b64cee5</li> </ul> <hr /> <p><a href="https://github.com/sindresorhus/pretty-bytes/compare/v7.0.1...v7.1.0">https://github.com/sindresorhus/pretty-bytes/compare/v7.0.1...v7.1.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sindresorhus/pretty-bytes/commit/b7849f7632461fe2b08a81a3a0e1eae3113dbe36"><code>b7849f7</code></a> 7.1.0</li> <li><a href="https://github.com/sindresorhus/pretty-bytes/commit/73df4895b7bd6539f094a023cb88900c9db064f0"><code>73df489</code></a> Add <code>fixedWidth</code> option for right-aligned output</li> <li><a href="https://github.com/sindresorhus/pretty-bytes/commit/b64cee54cf26ec9b22e6ba02cc9a32319423acd4"><code>b64cee5</code></a> Fix truncation behavior with fraction digits options</li> <li><a href="https://github.com/sindresorhus/pretty-bytes/commit/b637640085b40a879e977d7b944f5a5129be67cd"><code>b637640</code></a> Add <code>nonBreakingSpace</code> option</li> <li>See full diff in <a href="https://github.com/sindresorhus/pretty-bytes/compare/v7.0.1...v7.1.0">compare view</a></li> </ul> </details> <br /> Updates `satori` from 0.18.2 to 0.18.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vercel/satori/releases">satori's releases</a>.</em></p> <blockquote> <h2>0.18.3</h2> <h2><a href="https://github.com/vercel/satori/compare/0.18.2...0.18.3">0.18.3</a> (2025-09-15)</h2> <h3>Bug Fixes</h3> <ul> <li>Support forwardRef wrapped component (<a href="https://redirect.github.com/vercel/satori/issues/601">#601</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vercel/satori/commit/2a0878a7f329bdba3a17ad68f71186a47add0dde"><code>2a0878a</code></a> fix: Trigger release</li> <li><a href="https://github.com/vercel/satori/commit/6d0d0db64bc159032b4650210470487d38954b84"><code>6d0d0db</code></a> Support forwardRef wrapped component (<a href="https://redirect.github.com/vercel/satori/issues/601">#601</a>)</li> <li>See full diff in <a href="https://github.com/vercel/satori/compare/0.18.2...0.18.3">compare view</a></li> </ul> </details> <br /> Updates `sharp` from 0.34.3 to 0.34.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lovell/sharp/releases">sharp's releases</a>.</em></p> <blockquote> <h2>v0.34.4</h2> <ul> <li> <p>Upgrade to libvips v8.17.2 for upstream bug fixes.</p> </li> <li> <p>Ensure TIFF <code>subifd</code> and OpenSlide <code>level</code> input options are respected (regression in 0.34.3).</p> </li> <li> <p>Ensure <code>autoOrient</code> occurs before non-90 angle rotation. <a href="https://redirect.github.com/lovell/sharp/issues/4425">#4425</a></p> </li> <li> <p>Ensure <code>autoOrient</code> removes existing metadata after shrink-on-load. <a href="https://redirect.github.com/lovell/sharp/issues/4431">#4431</a></p> </li> <li> <p>TypeScript: Ensure <code>KernelEnum</code> includes <code>linear</code>. <a href="https://redirect.github.com/lovell/sharp/pull/4441">#4441</a> <a href="https://github.com/BayanBennett"><code>@​BayanBennett</code></a></p> </li> <li> <p>Ensure <code>unlimited</code> flag is passed upstream when reading TIFF images. <a href="https://redirect.github.com/lovell/sharp/issues/4446">#4446</a></p> </li> <li> <p>Support Electron memory cage when reading XMP metadata (regression in 0.34.3). <a href="https://redirect.github.com/lovell/sharp/issues/4451">#4451</a></p> </li> <li> <p>Add sharp-libvips rpath for yarn v5 support. <a href="https://redirect.github.com/lovell/sharp/pull/4452">#4452</a> <a href="https://github.com/arcanis"><code>@​arcanis</code></a></p> </li> </ul> <h2>v0.34.4-rc.4</h2> <ul> <li> <p>Upgrade to libvips v8.17.2 for upstream bug fixes.</p> </li> <li> <p>Ensure TIFF <code>subifd</code> and OpenSlide <code>level</code> input options are respected (regression in 0.34.3).</p> </li> <li> <p>Ensure <code>autoOrient</code> occurs before non-90 angle rotation. <a href="https://redirect.github.com/lovell/sharp/issues/4425">#4425</a></p> </li> <li> <p>Ensure <code>autoOrient</code> removes existing metadata after shrink-on-load. <a href="https://redirect.github.com/lovell/sharp/issues/4431">#4431</a></p> </li> <li> <p>TypeScript: Ensure <code>KernelEnum</code> includes <code>linear</code>. <a href="https://redirect.github.com/lovell/sharp/pull/4441">#4441</a> <a href="https://github.com/BayanBennett"><code>@​BayanBennett</code></a></p> </li> <li> <p>Ensure <code>unlimited</code> flag is passed upstream when reading TIFF images. <a href="https://redirect.github.com/lovell/sharp/issues/4446">#4446</a></p> </li> <li> <p>Support Electron memory cage when reading XMP metadata (regression in 0.34.3). <a href="https://redirect.github.com/lovell/sharp/issues/4451">#4451</a></p> </li> <li> <p>Add sharp-libvips rpath for yarn v5 support. <a href="https://redirect.github.com/lovell/sharp/pull/4452">#4452</a> <a href="https://github.com/arcanis"><code>@​arcanis</code></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/ee437832e2fa383345103550a1258f20feac247a"><code>ee43783</code></a> Release v0.34.4</li> <li><a href="https://github.com/lovell/sharp/commit/529901177b814aefedba80a7dbb670760d4dfbda"><code>5299011</code></a> CI/Docs: Deno v2 support</li> <li><a href="https://github.com/lovell/sharp/commit/4710092b2a38baf126c6814a42e01a0ac012bf90"><code>4710092</code></a> Prerelease v0.34.4-rc.4</li> <li><a href="https://github.com/lovell/sharp/commit/ed1ac43e55d7125a347cd3db9facab4e68ac6363"><code>ed1ac43</code></a> CI: Upgrade packaging test dependencies</li> <li><a href="https://github.com/lovell/sharp/commit/dfcbceee4bf4fc9ef3162a3805caaada6dd5a38a"><code>dfcbcee</code></a> Upgrade sharp-libvips to v1.2.3</li> <li><a href="https://github.com/lovell/sharp/commit/35d3f56c67fb6e61d9685309352fcb985da649f5"><code>35d3f56</code></a> Ensure TIFF subifd and OpenSlide level are respected</li> <li><a href="https://github.com/lovell/sharp/commit/9f4bace03bd047602d9f120f655f19a2cdc7c1ff"><code>9f4bace</code></a> Prerelease v0.34.4-rc.3</li> <li><a href="https://github.com/lovell/sharp/commit/b507831a1191175b83e1f3fa52ad4cd56686a6a5"><code>b507831</code></a> CI: Remove dry-run flag</li> <li><a href="https://github.com/lovell/sharp/commit/905f69837e80c9005b0b764fe1c174d21c9843d6"><code>905f698</code></a> Prerelease v0.34.4-rc.2</li> <li><a href="https://github.com/lovell/sharp/commit/b0154ed83cfff48efed7e347d49995b5476ee072"><code>b0154ed</code></a> Upgrade sharp-libvips to v1.2.2</li> <li>Additional commits viewable in <a href="https://github.com/lovell/sharp/compare/v0.34.3...v0.34.4">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for sharp since your current version.</p> </details> <br /> Updates `shiki` from 3.12.2 to 3.13.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/shikijs/shiki/releases">shiki's releases</a>.</em></p> <blockquote> <h2>v3.13.0</h2> <h3>   🚀 Features</h3> <ul> <li><strong>transformers</strong>: Render indent guides  -  by <a href="https://github.com/KazariEX"><code>@​KazariEX</code></a> and <a href="https://github.com/antfu"><code>@​antfu</code></a> in <a href="https://redirect.github.com/shikijs/shiki/issues/1060">shikijs/shiki#1060</a> <a href="https://github.com/shikijs/shiki/commit/aecd1617"><!-- raw HTML omitted -->(aecd1)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/shikijs/shiki/compare/v3.12.3...v3.13.0">View changes on GitHub</a></h5> <h2>v3.12.3</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li><code>@shikijs/twoslash</code> version specifier  -  by <a href="https://github.com/9romise"><code>@​9romise</code></a> in <a href="https://redirect.github.com/shikijs/shiki/issues/1078">shikijs/shiki#1078</a> <a href="https://github.com/shikijs/shiki/commit/a1cdea41"><!-- raw HTML omitted -->(a1cde)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/shikijs/shiki/compare/v3.12.2...v3.12.3">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/shikijs/shiki/commit/fd7326a82f9495489acf0c999347cb45b2156644"><code>fd7326a</code></a> chore: release v3.13.0</li> <li><a href="https://github.com/shikijs/shiki/commit/5cbb05219e548a4d407ce375fdaf7e05dd627b48"><code>5cbb052</code></a> chore: release v3.12.3</li> <li>See full diff in <a href="https://github.com/shikijs/shiki/commits/v3.13.0/packages/shiki">compare view</a></li> </ul> </details> <br /> Updates `workerpool` from 9.3.3 to 9.3.4 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/josdejong/workerpool/blob/master/HISTORY.md">workerpool's changelog</a>.</em></p> <blockquote> <h2>2025-09-10, version 9.3.4</h2> <ul> <li>Fix: <a href="https://redirect.github.com/josdejong/workerpool/issues/516">#516</a> improve error handling for errors containing nested classes by using their <code>.toJSON</code> method when available.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/josdejong/workerpool/commits">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 24.3.1 to 24.5.2 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> Updates `esbuild` from 0.25.9 to 0.25.10 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.25.10</h2> <ul> <li> <p>Fix a panic in a minification edge case (<a href="https://redirect.github.com/evanw/esbuild/issues/4287">#4287</a>)</p> <p>This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value <code>undefined</code> in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):</p> <pre lang="js"><code>function identity(x) { return x } identity({ y: identity(123) }) </code></pre> </li> <li> <p>Fix <code>@supports</code> nested inside pseudo-element (<a href="https://redirect.github.com/evanw/esbuild/issues/4265">#4265</a>)</p> <p>When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as <code>::placeholder</code> for correctness. The <a href="https://www.w3.org/TR/css-nesting-1/">CSS nesting specification</a> says the following:</p> <blockquote> <p>The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&amp;', since they’re intentionally built on the same underlying mechanisms.</p> </blockquote> <p>However, it seems like this behavior is different for nested at-rules such as <code>@supports</code>, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:</p> <pre lang="css"><code>/* Original code */ ::placeholder { color: red; body &amp; { color: green } @supports (color: blue) { color: blue } } <p>/* Old output (with --supported:nesting=false) */<br /> ::placeholder {<br /> color: red;<br /> }<br /> body :is() {<br /> color: green;<br /> }<br /> <a href="https://github.com/supports"><code>@​supports</code></a> (color: blue) {<br /> {<br /> color: blue;<br /> }<br /> }</p> <p>/* New output (with --supported:nesting=false) */<br /> ::placeholder {<br /> color: red;<br /> }<br /> body :is() {<br /> color: green;<br /> }<br /> <a href="https://github.com/supports"><code>@​supports</code></a> (color: blue) {<br /> ::placeholder {<br /> color: blue;<br /> }<br /> </code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's changelog</a>.</em></p> <blockquote> <h2>0.25.10</h2> <ul> <li> <p>Fix a panic in a minification edge case (<a href="https://redirect.github.com/evanw/esbuild/issues/4287">#4287</a>)</p> <p>This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value <code>undefined</code> in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):</p> <pre lang="js"><code>function identity(x) { return x } identity({ y: identity(123) }) </code></pre> </li> <li> <p>Fix <code>@supports</code> nested inside pseudo-element (<a href="https://redirect.github.com/evanw/esbuild/issues/4265">#4265</a>)</p> <p>When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as <code>::placeholder</code> for correctness. The <a href="https://www.w3.org/TR/css-nesting-1/">CSS nesting specification</a> says the following:</p> <blockquote> <p>The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&amp;', since they’re intentionally built on the same underlying mechanisms.</p> </blockquote> <p>However, it seems like this behavior is different for nested at-rules such as <code>@supports</code>, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:</p> <pre lang="css"><code>/* Original code */ ::placeholder { color: red; body &amp; { color: green } @supports (color: blue) { color: blue } } <p>/* Old output (with --supported:nesting=false) */<br /> ::placeholder {<br /> color: red;<br /> }<br /> body :is() {<br /> color: green;<br /> }<br /> <a href="https://github.com/supports"><code>@​supports</code></a> (color: blue) {<br /> {<br /> color: blue;<br /> }<br /> }</p> <p>/* New output (with --supported:nesting=false) */<br /> ::placeholder {<br /> color: red;<br /> }<br /> body :is() {<br /> color: green;<br /> }<br /> <a href="https://github.com/supports"><code>@​supports</code></a> (color: blue) {<br /> ::placeholder {<br /> color: blue;<br /> </code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/d6b668f96fb00d6a6d035f058e38b6bd2507beb6"><code>d6b668f</code></a> publish 0.25.10 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/5088c198b5ecee18ba903c4099458df98b1b6788"><code>5088c19</code></a> refactor: use strings.Builder (<a href="https://redirect.github.com/evanw/esbuild/issues/4290">#4290</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/755da31752d759f1ea70b8d4f7f677b3557dab3e"><code>755da31</code></a> run <code>make update-compat-table</code></li> <li><a href="https://github.com/evanw/esbuild/commit/a1d9c8649bcbacc59e521171f47d6928fda14043"><code>a1d9c86</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4287">#4287</a>: marked the wrong issue as fixed</li> <li><a href="https://github.com/evanw/esbuild/commit/73a0b2ae491c9d6a069516447292df2afe371b63"><code>73a0b2a</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4286">#4286</a>: minifier panic due to identity function</li> <li><a href="https://github.com/evanw/esbuild/commit/134dadffecf55c5dba20cd9f03996275da06ba49"><code>134dadf</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4265">#4265</a>: <code>@supports</code> nested inside <code>::pseudo</code></li> <li>See full diff in <a href="https://github.com/evanw/esbuild/compare/v0.25.9...v0.25.10">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>
vercel[bot] commented 2025-09-22 15:32:13 +00:00 (Migrated from github.com)

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
gardenofeden Ready Ready Preview Comment Sep 22, 2025 3:32pm
[vc]: #+bgDz/l4eJ6hxRkAKwGgfGPWfrSG09MzjuO2wJnQb7s=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJnYXJkZW5vZmVkZW4iLCJpbnNwZWN0b3JVcmwiOiJodHRwczovL3ZlcmNlbC5jb20vZ2xpdHRlcmVsZnMtcHJvamVjdHMvZ2FyZGVub2ZlZGVuL0o5QVRoMVpkdEFUZ2pQQVZnUm55azV3Y0c4cW8iLCJwcmV2aWV3VXJsIjoiZ2FyZGVub2ZlZGVuLWdpdC1kZXBlbmRhYm90LW5wbWFuZHktMDQ5MjQ4LWdsaXR0ZXJlbGZzLXByb2plY3RzLnZlcmNlbC5hcHAiLCJuZXh0Q29tbWl0U3RhdHVzIjoiREVQTE9ZRUQiLCJsaXZlRmVlZGJhY2siOnsicmVzb2x2ZWQiOjAsInVucmVzb2x2ZWQiOjAsInRvdGFsIjowLCJsaW5rIjoiZ2FyZGVub2ZlZGVuLWdpdC1kZXBlbmRhYm90LW5wbWFuZHktMDQ5MjQ4LWdsaXR0ZXJlbGZzLXByb2plY3RzLnZlcmNlbC5hcHAifSwicm9vdERpcmVjdG9yeSI6bnVsbH1dfQ== The latest updates on your projects. Learn more about [Vercel for GitHub](https://vercel.link/github-learn-more). | Project | Deployment | Preview | Comments | Updated (UTC) | | :--- | :----- | :------ | :------- | :------ | | [gardenofeden](https://vercel.com/glitterelfs-projects/gardenofeden) | ![Ready](https://vercel.com/static/status/ready.svg) [Ready](https://vercel.com/glitterelfs-projects/gardenofeden/J9ATh1ZdtATgjPAVgRnyk5wcG8qo) | [Preview](https://gardenofeden-git-dependabot-npmandy-049248-glitterelfs-projects.vercel.app) | [Comment](https://vercel.live/open-feedback/gardenofeden-git-dependabot-npmandy-049248-glitterelfs-projects.vercel.app?via=pr-comment-feedback-link) | Sep 22, 2025 3:32pm |
Sign in to join this conversation.
No description provided.