chore(deps): update dependency pixi.js to v8.19.0#50
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
July 3, 2025 18:55
1cbe8f4 to
2cd8e7b
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
August 5, 2025 10:33
2cd8e7b to
662d359
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
September 6, 2025 15:56
662d359 to
895c42b
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
September 10, 2025 09:04
895c42b to
35a4246
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
October 7, 2025 01:52
35a4246 to
329827f
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
November 10, 2025 10:47
329827f to
853091c
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
November 18, 2025 09:59
853091c to
5ad1754
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
November 20, 2025 13:55
5ad1754 to
fe78011
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
January 5, 2026 11:43
fe78011 to
208ebf8
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
January 19, 2026 18:46
208ebf8 to
209a383
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
February 3, 2026 16:58
209a383 to
d098c87
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
March 9, 2026 18:11
d098c87 to
91fb932
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
March 16, 2026 09:51
91fb932 to
1ca7609
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
April 1, 2026 17:46
1ca7609 to
f714486
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
April 14, 2026 17:42
f714486 to
02f7f83
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
April 14, 2026 21:33
02f7f83 to
03c6441
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
April 29, 2026 20:28
03c6441 to
98021fe
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
May 12, 2026 10:40
98021fe to
3681a49
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
June 4, 2026 08:47
3681a49 to
7eee9b8
Compare
renovate
Bot
force-pushed
the
renovate/pixijs-monorepo
branch
from
July 12, 2026 10:46
7eee9b8 to
1189a65
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
8.10.1→8.19.0Release Notes
pixijs/pixijs (pixi.js)
v8.19.0Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🚨 Behavior Change
Container.updateTransform({ scaleX: 0, scaleY: 0 })previously coerced a zero scale to1(the code usedopts.scaleX || 1), so passing0left the container at full size. It now applies zero scale literally, matchingscale.set(0, 0). If you relied onupdateTransformignoring a zero scale, stop passing0when you mean full scale.ParticleContainernow respects the blend mode inherited from its ancestors. Previously the render pipe read the container's own localblendModeinstead of the resolvedgroupBlendMode, so setting e.g.stage.blendMode = 'add'had no effect on particles. Particles nested under a parent with a non-default blend mode will now render differently (e.g. additive brightening) where they were silently ignored before. AblendModeset directly on theParticleContaineris unchanged.FillPatterngains atextureSpaceoption ('global' | 'local'), while fixing several long-standing pattern/gradient sizing bugs.textureSpacedefaults to'global', so patterns now tile continuously across adjacent shapes instead of remapping per shape;setTransform(matrix)now applies the matrix you pass directly (it previously inverted and rescaled it by the texture size); andtextureSpace: 'local'radial gradients now scale to the gradient's outer radius. Existing pattern fills and local radial gradients can render differently.If you hand-compensated for the old
setTransformbehavior (pre-inverting or scaling by texture size), remove that compensation. The legacy positionalnew FillPattern(texture, repetition)form still works.🎁 Added
pixi.js/html-sourcesubpath renders live DOM elements into PixiJS textures while the element stays fully interactive in the browser (inputs editable, links clickable, CSS animations running). UseHTMLSourcefor a live element orElementImageSourcefor an immutable snapshot. The element must be a direct child of the Pixi canvas. Importing the subpath also registers a lowest-priorityTexture.fromfallback for generic HTML elements, so it cannot affect apps that don't import it.transientflag so the WebGPU backend can discard the MSAA buffer at the end of a render pass (storeOp: 'discard') instead of writing it back to memory, and keep MSAA contents in tile memory on TBDR mobile GPUs whereGPUTextureUsage.TRANSIENT_ATTACHMENTis available. This cuts memory bandwidth for single-pass MSAA render targets. Only set it on antialiased textures that follow a single-pass-then-discard pattern; a laterloadOp: 'load'on a transient attachment yields undefined contents. Default isfalse, so existing code is unaffected. A WebGPU-onlyrenderer.device.extensions.transientAttachmentprobe reports device support.🐛 Fixed
🧹 Chores
skills/in the published npm package, available atnode_modules/pixi.js/skills/after install.New Contributors
Full Changelog: pixijs/pixijs@v8.18.1...v8.19.0
v8.18.1Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🐛 Fixed
Application.domContainerRootin Node.js by @UlyssesZh in #12017v8.18.0Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🚨 Behavior Change
text.widthand word wrap returning incorrect values by @Zyie in #12007Text/HTMLText/BitmapTextwithwordWrap: trueand non-leftalign(center/right/justify) now return the true rendered width fromtext.widthinstead of reportingwordWrapWidth. If you relied ontext.width === wordWrapWidthfor layout, usewordWrapWidthdirectly or wrap the text in a sized container.🎁 Added
graphicsContextToSvg()for Graphics → SVG export by @GoodBoyDigital in #11989graphicsContextToSvg(source, precision?), a pure function that serializes aGraphicsorGraphicsContextto a self-contained SVG string. Supports rects, circles, ellipses, rounded rects, polygons, bezier/quadratic/arc paths, strokes, holes (viafill-rule="evenodd"), and linear/radial gradients.setMask()gains achanneloption ('red' | 'alpha') to pick which texture channel drives visibility, matching how design tools like Figma apply PNG masks. Default remains'red'.preferenceto accept an array of renderer types by @Zyie in #11963autoDetectRendererandApplication.initnow accept an array of renderer names forpreference, letting you restrict the fallback chain (e.g. disable WebGPU entirely) rather than only reorder it. A newRendererPreferencetype is exported.app.domContainerRootby @carlos22 in #11974Applicationexposes a read-onlydomContainerRootgetter returning theHTMLDivElementthat wraps allDOMContainerelements, so apps can add CSS classes, inline styles, or customize the DOM overlay root.widthoption toMeshRopeby @mehmetcanakbay in #11990MeshRopenow accepts an explicitwidthfor rope thickness, decoupling it from the texture's height. Omittingwidthpreserves the previoustexture.heightdefault.renderer.generateTexture()accepts adefaultAnchoroption that's forwarded onto the producedTexture.RenderTexture.create()also gains atextureOptionsparameter to pass through fields likedefaultAnchorto the underlyingTexture.🐛 Fixed
_applyMipRangefor single-mip textures (iOS 18.0–18.1) by @GoodBoyDigital in #11985TextureMatrixwhen pooled textures reuse the same reference by @GoodBoyDigital in #11997GraphicsPath.transform()switch statement by @Zyie in #11996text.widthand word wrap returning incorrect values by @Zyie in #12007<characters inparseTaggedTextby @glennflanagan in #11972CanvasFilterSystemto the filters module by @Zyie in #12014SplitTextbaseline mismatch whentagStylesused withlineHeightby @Zyie in #12008TilingSprite.tilePositiondivided by resolution when using Canvas renderer by @Zyie in #11957CanvasFilterSystemto filters module by @Zyie in #12014🧹 Chores
@xmldom/xmldomto 0.8.12 by @Zyie in #12016New Contributors
v8.17.1Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🐛 Fixed
@0.75x) by @Zyie in #11960🧹 Chores
v8.17.0Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🚨 Behavior Change
BlurFilternow uses an optimized halving strength scheme by default, which changes visual output compared to previous versions. Setlegacy: trueto restore the old behavior.align: 'justify'now useswordWrapWidthfor width calculation instead ofmaxLineWidth, matching CSS behavior. The last line is no longer stretched.breakWords: trueinHTMLTextnow correctly uses CSSword-break: break-wordinstead ofbreak-allto match behavior of other text renderers.🎁 Added
SplitTextnow supportstagStyles, so styled runs (e.g.<red>Hello</red> <blue>World</blue>) are correctly split into per-characterTextobjects with individual styles preserved.whiteSpacemodes (normal,pre,nowrap,pre-line,pre-wrap) with proper space/newline collapsingalign: 'justify'by distributing extra word spacingbluranddistanceproportionally to font sizexAdvancenow uses true advance width frommeasureText()instead of bounding-box widthfontScalein dynamic bitmap fonts🐛 Fixed
🧹 Chores
New Contributors
v8.16.0Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🚨 Behavior Change
SplitTextnow more accurately splitsTextacross a wider range ofTextStyleconfigurations. This may result in slight changes to character positioning.SplitText.fromfrom an existingTextnow correctly transfers the source anchor to the new instance by mapping the anchor to pivot coordinates. This changes layout and positioning compared to previous behavior.SplitBitmapTextnow correctly defaults to awhitefill, matching the behavior ofBitmapText.HTMLTextnow correctly respectsbreakWordsand no longer cuts off words that exceedwordWrapWidth.HTMLTextnow respects the alpha value of its fill and stroke.Textnow correctly aligns when usingalign: 'right'oralign: 'center', resulting in a small positional adjustment.Container.cullAreais now correctly interpreted in the container’s local coordinate space and transformed to global coordinates before culling checks.graphics.texture(texture, 0x000000)will now correctly apply a black tint🎁 Added
Text/HTMLText,BitmapTextsupport coming soontext.styleChanged()🐛 Fixed
🧹 Chores
New Contributors
v8.15.0Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🎁 Added
TextureGCSystem/RenderableGCSystemin favor ofGCSystem.You can now manually unload a node by calling its
unloadmethod. This releases any GPU resources associated with the node. The node can still be used afterward—it will be re-created automatically when needed.feat: move GPU context storage to GraphicsContext._gpuData by @Zyie in #11763
feat: move GPU data to Geometry._gpuData by @Zyie in #11772
feat: move GPUData to TextureSource by @Zyie in #11774
feat: move GL/GPU buffer storage to Buffer._gpuData and manage buffers list by @Zyie in #11775
feat: add descriptive names GCManagedHash by @Zyie in #11811
feat: update text GPU lifecycle and resolution updates by @Zyie in #11781
🐛 Fixed
🧹 Chores
New Contributors
v8.14.3Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🐛 Fixed
v8.14.2Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🐛 Fixed
🧹 Chores
New Contributors
v8.14.1Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🐛 Fixed
🧹 Chores
v8.14.0Compare Source
💾 Download
Installation:
Development Build:
Production Build:
Documentation:
Changed
🎁 Added
throw,skip, andretrythrow: The default strategy and matches the behavior of previous versions. With this strategy enabled any asset that fails to load will throw an error and the promise will reject.skip: If any asset fails to load not error is thrown and the loader continues to load other assetsretry: Allow for multiple attempts at loading an asset before an error is thrown. The number of attempts and the delay between attempts are configurableprogressSizewhen loading assets to get a more accurate loading percentage. If no size is provide the default value is 1.🐛 Fixed
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.