War in West Asia hits India’s kitchens: Why the government should immediately address LPG anxiety
Thursday, March 12th, 2026 06:11 amBudget-2026-27 announcement: In big farm push, Punjab aims to irrigate 7 million acres with canal wa
Thursday, March 12th, 2026 06:09 amFraming case on public perceptions, personal predilections puts innocent to peril, frees perpetrator
Thursday, March 12th, 2026 05:53 am‘Arshdeep didn’t need to apologise to Mitchell’: Gambhir on T20 World Cup final flashpoint
Thursday, March 12th, 2026 05:47 amMan who ‘wanted to kill Farooq Abdullah for 20 years’: Who is Kamal Singh Jamwal
Thursday, March 12th, 2026 05:30 amX-Men United #1
Thursday, March 12th, 2026 12:13 am
X-Men United, originally solicited as X-Men Arsenal*, is the follow-up to Exceptional X-Men. Same creative team, same core cast, but an altered premise. It's the training book, but with more characters, and now they have a mental plane headquarters named Graymatter Lane.
*Go on, get the football jokes out of your system. It'll feel good.
( Read more... )
Ticket #64804 (REST API: Add finalize endpoint to `WP_REST_Attachments_Controller` ...) closed
Thursday, March 12th, 2026 06:01 am
In 61982:
Changeset [61982]: REST API: Add finalize endpoint to `WP_REST_Attachments_Controller`. ...
Thursday, March 12th, 2026 06:01 am
REST API: Add finalize endpoint to WP_REST_Attachments_Controller.
Introduce a POST /wp/v2/media/{id}/finalize REST API endpoint that re-triggers the wp_generate_attachment_metadata filter with context 'update' after client-side media processing completes. This ensures server-side plugins (watermarking, CDN sync, custom sizes, etc.) can post-process attachments when client-side processing is active.
The endpoint reuses edit_media_item_permissions_check for authorization and is only registered when wp_is_client_side_media_processing_enabled() returns true.
See https://github.com/WordPress/gutenberg/pull/74913. See https://github.com/WordPress/gutenberg/issues/74358.
Props adamsilverstein, westonruter, mukesh27, divyeshpatel01. Fixes #64804.
Ticket #64846 (Loading separate styles on demand thwarted by plugins that register ...) closed
Thursday, March 12th, 2026 05:44 am
In 61981:
Changeset [61981]: Script Loader: Move `wp_load_classic_theme_block_styles_on_demand()` ...
Thursday, March 12th, 2026 05:44 am
Script Loader: Move wp_load_classic_theme_block_styles_on_demand() from init to wp_default_styles.
This ensures the filters to opt in to loading separate block styles on demand are added at the moment WP_Styles is constructed. This accounts for styles being registered at the init action before register_core_block_style_handles() runs at priority 9. Without this, the wp-block-library stylesheet may get registered with the full combined block styles as style.css instead of just common.css, due to wp_should_load_block_assets_on_demand() still returning false. The wp_default_styles action still runs during init.
Developed in https://github.com/WordPress/wordpress-develop/pull/11232
Follow-up to r61008.
Props westonruter, adamsilverstein. See #64099. Fixes #64846.
Ticket #64836 (Media: skip server image support check when not generating sub-sizes) closed
Thursday, March 12th, 2026 05:33 am
In 61980:
Changeset [61980]: Media: skip server image support check when using client-side media. ...
Thursday, March 12th, 2026 05:33 amMedia: skip server image support check when using client-side media.
When uploading images via the REST API with generate_sub_sizes set to false, skip server support checks since processing is handled on the client side. Fix an issue where uploads of formats like AVIF fail with rest_upload_image_type_not_supported, even though the client will handle all image processing and the server doesn't need to support the format.
See also https://github.com/WordPress/gutenberg/issues/76369 and https://github.com/WordPress/gutenberg/pull/76371.
Props adamsilverstein, westonruter, andrewserong, mukesh27. Fixes #64836. See #62717.
Changeset [61979]: Toolbar: Show command palette admin bar item on mobile. * The ...
Thursday, March 12th, 2026 05:23 amToolbar: Show command palette admin bar item on mobile.
- The keyboard shortcut is hidden in favor of a search icon on mobile.
- The background color of the
KBDelement is made transparent on non-mobile. - The admin bar item is skipped from being added if the
wp-core-commandsscript is not enqueued.
Developed in https://github.com/WordPress/wordpress-develop/pull/11222
Follow-up to r61912.
Props sabernhardt, westonruter, ellatrix, mukesh27. See #64672.
Changeset [61978]: Build/Test Tools: Copy `build/routes` and `build/pages` JS files. The ...
Thursday, March 12th, 2026 04:43 am
Build/Test Tools: Copy build/routes and build/pages JS files.
The JavaScript fils within the build/routes and build/pages directories within the built gutenberg asset were not being copied properly into the working directory.
This configures a grunt copy:gutenberg-js task to handle this.
Follow up to [61873], [61874].
Props jorgefilipecosta, ellatrix, desrosj. See #64393.