Skip to content

VIP Platform Changelog

The VIP Platform Changelog includes updates made to the functionality and behavior of the platform's tooling (i.e. VIP Dashboard, VIP-CLI), VIP MU plugins, VIP File System, caching layers, and other underlying architecture and software.

RSS 

Showing page 46 of 64

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.

10 September 2021

08:40:58 GMT+0000

We’ve fixed an issue related to the installed certificate not showing up against a domain in some cases.

09 September 2021

19:01:11 GMT+0000

Users with access to the Organization Usage page will now see all their applications listed, making stats more accurate.