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.

Showing page 60 of 60

RSS 
25 September 2020

00:15:00 GMT+0000

We’ve upgraded the Query Monitor plugin to 3.6.4 (previously 3.1.1).

As we’re jumping up a few releases, there are quite a few changes. A few notable ones:

  • Dark mode
  • Stack trace support for fatal errors
  • wp_die() support
  • Related Hooks for various panels
  • Block debugging support for sites using the Block Editor

Not using Query Monitor yet? Learn how to enable Query Monitor on your environments.

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

17 September 2020

14:30:00 GMT+0000

We updated the Two Factor plugin to 0.7 (previously 0.6). This version includes numerous bug fixes including better compatibility with password managers like 1Password and fixing an annoying notice about incorrectly registered scripts. Learn more about the changes in the Release Notes.

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

16 September 2020

10:00:00 GMT+0000

We now set the default $end_date param using the site’s local date (rather than UTC time). Previously, the function could return incorrect data due to the mismatch in timezones.

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

28 August 2020

16:37:32 GMT+0000

Starting today, any applications created with new GitHub repos will have Content Distribution disabled by default in their non-production environments.

The change was introduced in our VIP Skeleton repo here:

https://github.com/Automattic/vip-go-skeleton/pull/55

If you would like to tweak this behavior, you can remove or adjust the lines in the vip-config.php file in your repo.

Note: This will not impact existing applications or new applications/environments created that use existing GitHub repos.

Learn more about Content Distribution.

#skeleton #jetpack

28 August 2020

15:43:09 GMT+0000

We’ve pushed a fix to properly clear an internal stats cache for uploaded files. This was causing an incorrect filesize value to be returned after an upload (if done within the same request).

wp> $file = wp_upload_bits( 'hello.txt', 'world' )['file'];
int(5)
wp> filesize( $file );
int(5) <= this would previously return 0

The fix was pushed in our mu-plugins repo here:

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

#mu-plugins