chore(deps): bump the production-dependencies group with 2 updates #17

Merged
dependabot[bot] merged 1 commit from dependabot/npm_and_yarn/production-dependencies-a7a99f54ed into v4 2025-08-12 02:04:03 +00:00
dependabot[bot] commented 2025-08-11 21:38:39 +00:00 (Migrated from github.com)

Bumps the production-dependencies group with 2 updates: pixi.js and @types/node.

Updates pixi.js from 8.11.0 to 8.12.0

Release notes

Sourced from pixi.js's releases.

v8.12.0

💾 Download

Installation:

npm install pixi.js@8.12.0

Development Build:

Production Build:

Documentation:

Changed

https://github.com/pixijs/pixi.js/compare/v8.11.0...v8.12.0

🚨 Behavior Change 🚨

  • lineHeight is now correctly calculated for BitmapText. This change may result in some text elements changing position slightly. See #11531.

🎁 Added

  • feat: support scaleMode for cacheAsTexture options by @​mayakwd in pixijs/pixijs#11578
    container.cacheAsTexture({
      scaleMode: 'nearest',
    });
    
  • feat: Adds max anisotropy passthrough property by @​Zyie in pixijs/pixijs#11588
    texture.source.maxAnisotropy = 16;
    
  • feat: use DomAdapter for new Image by @​Zyie in pixijs/pixijs#11565
    const image = DomAdapter.get().createImage();
    image.src = 'path/to/image.svg';
    
  • feat: allow sharing device and adaptor with other engine by @​littleboarx in pixijs/pixijs#11435
    const adapter = await navigator.gpu.requestAdapter();
    const device = await adapter.requestDevice();
    

    const app = new Application();
    await app.init({ gpu: { adapter, device } });

  • feat: Refactors asset parser configuration by @​Zyie in pixijs/pixijs#11557

... (truncated)

Commits

Updates @types/node from 24.2.0 to 24.2.1

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 2 updates: [pixi.js](https://github.com/pixijs/pixijs) and [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node). Updates `pixi.js` from 8.11.0 to 8.12.0 <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.12.0</h2> <h2>💾 Download</h2> <p>Installation:</p> <pre lang="bash"><code>npm install pixi.js@8.12.0 </code></pre> <p>Development Build:</p> <ul> <li><a href="https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.js">https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.js</a></li> <li><a href="https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.mjs">https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.mjs</a></li> </ul> <p>Production Build:</p> <ul> <li><a href="https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.min.js">https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.min.js</a></li> <li><a href="https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.min.mjs">https://cdn.jsdelivr.net/npm/pixi.js@8.12.0/dist/pixi.min.mjs</a></li> </ul> <p>Documentation:</p> <ul> <li><a href="https://pixijs.download/v8.12.0/docs/index.html">https://pixijs.download/v8.12.0/docs/index.html</a></li> </ul> <h2>Changed</h2> <p><a href="https://github.com/pixijs/pixi.js/compare/v8.11.0...v8.12.0">https://github.com/pixijs/pixi.js/compare/v8.11.0...v8.12.0</a></p> <h3>🚨 Behavior Change 🚨</h3> <ul> <li><code>lineHeight</code> is now correctly calculated for <code>BitmapText</code>. This change may result in some text elements changing position slightly. See <a href="https://redirect.github.com/pixijs/pixijs/issues/11531">#11531</a>.</li> </ul> <h3>🎁 Added</h3> <ul> <li>feat: support scaleMode for cacheAsTexture options by <a href="https://github.com/mayakwd"><code>@​mayakwd</code></a> in <a href="https://redirect.github.com/pixijs/pixijs/pull/11578">pixijs/pixijs#11578</a> <pre lang="ts"><code>container.cacheAsTexture({ scaleMode: 'nearest', }); </code></pre> </li> <li>feat: Adds max anisotropy passthrough property by <a href="https://github.com/Zyie"><code>@​Zyie</code></a> in <a href="https://redirect.github.com/pixijs/pixijs/pull/11588">pixijs/pixijs#11588</a> <pre lang="ts"><code>texture.source.maxAnisotropy = 16; </code></pre> </li> <li>feat: use DomAdapter for new Image by <a href="https://github.com/Zyie"><code>@​Zyie</code></a> in <a href="https://redirect.github.com/pixijs/pixijs/pull/11565">pixijs/pixijs#11565</a> <pre lang="ts"><code>const image = DomAdapter.get().createImage(); image.src = 'path/to/image.svg'; </code></pre> </li> <li>feat: allow sharing device and adaptor with other engine by <a href="https://github.com/littleboarx"><code>@​littleboarx</code></a> in <a href="https://redirect.github.com/pixijs/pixijs/pull/11435">pixijs/pixijs#11435</a> <pre lang="ts"><code>const adapter = await navigator.gpu.requestAdapter(); const device = await adapter.requestDevice(); <p>const app = new Application();<br /> await app.init({ gpu: { adapter, device } });<br /> </code></pre></p> </li> <li>feat: Refactors asset parser configuration by <a href="https://github.com/Zyie"><code>@​Zyie</code></a> in <a href="https://redirect.github.com/pixijs/pixijs/pull/11557">pixijs/pixijs#11557</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pixijs/pixijs/commit/cd6b0d28877bcbd240760eb5f447c93291acfa6d"><code>cd6b0d2</code></a> v8.12.0</li> <li><a href="https://github.com/pixijs/pixijs/commit/aca7f1a88f56bc4829e1496ce5b4550cb574f5b8"><code>aca7f1a</code></a> feat: support scaleMode for cacheAsTexture options (<a href="https://redirect.github.com/pixijs/pixijs/issues/11578">#11578</a>)</li> <li><a href="https://github.com/pixijs/pixijs/commit/a2c09867b834f7a37782f6adbab996dd20e9ce8c"><code>a2c0986</code></a> fix: <code>lineHeight</code> calculation for multi-line layout for <code>BitmapText</code> (<a href="https://redirect.github.com/pixijs/pixijs/issues/11531">#11531</a>)</li> <li><a href="https://github.com/pixijs/pixijs/commit/0c79e14ac19fa72fc7d79bbe09e3bc80d14a1cd1"><code>0c79e14</code></a> fix: minor typos in comments and docs, add missing <a href="https://github.com/params"><code>@​params</code></a> and <a href="https://github.com/returns"><code>@​returns</code></a> (<a href="https://redirect.github.com/pixijs/pixijs/issues/11590">#11590</a>)</li> <li><a href="https://github.com/pixijs/pixijs/commit/ca6420df4a4b46dd74422e54236c43999c788f62"><code>ca6420d</code></a> feat: use DomAdapter for new Image (<a href="https://redirect.github.com/pixijs/pixijs/issues/11565">#11565</a>)</li> <li><a href="https://github.com/pixijs/pixijs/commit/995ac2cb2b3ef615fd2be2751d20c782fe487e85"><code>995ac2c</code></a> fix: Installed bitmap text showing wrong fill (<a href="https://redirect.github.com/pixijs/pixijs/issues/11523">#11523</a>)</li> <li><a href="https://github.com/pixijs/pixijs/commit/1d71730a27602ba2c88e8cc4cf5cb8dd96960ef5"><code>1d71730</code></a> feat: Adds max anisotropy property (<a href="https://redirect.github.com/pixijs/pixijs/issues/11588">#11588</a>)</li> <li><a href="https://github.com/pixijs/pixijs/commit/e2f70062855f2ba9fd5690bd479a687125ae045d"><code>e2f7006</code></a> chore: fix Assets docs typos (<a href="https://redirect.github.com/pixijs/pixijs/issues/11586">#11586</a>)</li> <li><a href="https://github.com/pixijs/pixijs/commit/297223e4aedab93ccdea38467c2d1b55fb487348"><code>297223e</code></a> docs: Fix missing constructors (<a href="https://redirect.github.com/pixijs/pixijs/issues/11583">#11583</a>)</li> <li><a href="https://github.com/pixijs/pixijs/commit/26d4b41bda588feec753dc098a45483bf4bbfdbc"><code>26d4b41</code></a> fix: accessibility scaling issues (<a href="https://redirect.github.com/pixijs/pixijs/issues/11579">#11579</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pixijs/pixijs/compare/v8.11.0...v8.12.0">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 24.2.0 to 24.2.1 <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 /> 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-08-11 21:38:41 +00:00 (Migrated from github.com)

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Project Deployment Preview Comments Updated (UTC)
gardenofeden Ready Preview 💬 Add feedback Aug 11, 2025 9:38pm
[vc]: #uO51auvL1HLVYwDzoNZkK1pm2GXgkGb8J1/f1s5/a6o=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJnYXJkZW5vZmVkZW4iLCJpbnNwZWN0b3JVcmwiOiJodHRwczovL3ZlcmNlbC5jb20vZ2xpdHRlcmVsZnMtcHJvamVjdHMvZ2FyZGVub2ZlZGVuLzdwYVB3S0xrV2V0aFlON1JicW9yNks1bW9lbm8iLCJwcmV2aWV3VXJsIjoiZ2FyZGVub2ZlZGVuLWdpdC1kZXBlbmRhYm90LW5wbWFuZHktMzFkZjI3LWdsaXR0ZXJlbGZzLXByb2plY3RzLnZlcmNlbC5hcHAiLCJuZXh0Q29tbWl0U3RhdHVzIjoiREVQTE9ZRUQiLCJsaXZlRmVlZGJhY2siOnsicmVzb2x2ZWQiOjAsInVucmVzb2x2ZWQiOjAsInRvdGFsIjowLCJsaW5rIjoiZ2FyZGVub2ZlZGVuLWdpdC1kZXBlbmRhYm90LW5wbWFuZHktMzFkZjI3LWdsaXR0ZXJlbGZzLXByb2plY3RzLnZlcmNlbC5hcHAifSwicm9vdERpcmVjdG9yeSI6bnVsbH1dfQ== **The latest updates on your projects**. Learn more about [Vercel for Git ↗︎](https://vercel.link/github-learn-more) | Project | Deployment | Preview | Comments | Updated (UTC) | | :--- | :----- | :------ | :------- | :------ | | **gardenofeden** | ✅ [Ready](https://vercel.com/glitterelfs-projects/gardenofeden/7paPwKLkWethYN7Rbqor6K5moeno) | [Preview](https://gardenofeden-git-dependabot-npmandy-31df27-glitterelfs-projects.vercel.app) | 💬 [**Add feedback**](https://vercel.live/open-feedback/gardenofeden-git-dependabot-npmandy-31df27-glitterelfs-projects.vercel.app?via=pr-comment-feedback-link) | Aug 11, 2025 9:38pm |
Sign in to join this conversation.
No description provided.