Skip to content

Changelog: VIP MU plugins [Production]

The release window for VIP MU plugins is currently Tuesdays between 08:00 and 22:00 UTC (09:00 and 23:00 UTC when Daylight Saving Time is in effect in North America). VIP MU plugins is open source and development can be followed in the VIP MU plugins GitHub repository.

RSS 

Showing page 23 of 40

22 September 2021

22:22:28 GMT+0000

We added a filter to check if the current user can purge the cache.

vip_cache_manager_can_purge_cache returns a boolean whether current user should be able to see Flush Cache button. Defaults to current_user_can( 'manage_options' ).

// Allow editors and up to be able to purge a page from cache
add_filter( 'vip_cache_manager_can_purge_cache', function( $can_purge, $user ) { 
    return current_user_can( 'edit_others_posts' );
}, 10, 2 );

https://github.com/Automattic/vip-go-mu-plugins/pull/2427

14 September 2021

16:20:08 GMT+0000

We’ve addressed an issue where emojis and other multibyte characters can be corrupted when using wpdb::query instead of wpdb::insert and wpdb::update to insert/update records.