74422 implement blob loader#74468
Merged
adamsilverstein merged 17 commits intoJan 9, 2026
Merged
Conversation
|
Size Change: 0 B Total Size: 3.08 MB ℹ️ View Unchanged
|
|
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message. To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
Base automatically changed from
74421-configure-build-pipeline
to
feature/74352-new-wordpress-vips-package
January 8, 2026 23:38
c373d2d
into
feature/74352-new-wordpress-vips-package
39 checks passed
3 tasks
adamsilverstein
added a commit
that referenced
this pull request
Jan 20, 2026
* Add shopify/webworker to babel config * Add "@shopify/web-worker" dependency * Add vips-worker build files
adamsilverstein
added a commit
that referenced
this pull request
Feb 2, 2026
* Add shopify/webworker to babel config * Add "@shopify/web-worker" dependency * Add vips-worker build files
adamsilverstein
added a commit
to adamsilverstein/gutenberg
that referenced
this pull request
Feb 24, 2026
* Add shopify/webworker to babel config * Add "@shopify/web-worker" dependency * Add vips-worker build files
adamsilverstein
added a commit
to adamsilverstein/gutenberg
that referenced
this pull request
Feb 24, 2026
* Add shopify/webworker to babel config * Add "@shopify/web-worker" dependency * Add vips-worker build files
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.
Fixes #74422
What?
Plumbing to enable image processing operations to run off the main thread, preventing UI blocking during heavy operations
vips-worker.tsmodule with wrapper functions (vipsConvertImageFormat,vipsCompressImage,vipsResizeImage,vipsHasTransparency,vipsCancelOperations) that communicate with a worker thread via RPC. This will likely need extending.@shopify/web-worker/babelplugin to transformcreateWorkerFactorycallsWebWorkerPluginto webpack config with globalObject: 'self' for worker compatibility@wordpress/vipspackageTesting instructions
npm installto install the new @shopify/web-worker dependencynpm run buildand verify it completes without errorspackages/vips/build/containsvips-worker.cjsandworker.cjspackages/vips/build-module/containsvips-worker.mjsandworker.mjsThe web worker is not loaded yet, but I added a test that verifies it can be.