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 53 of 57

RSS 
24 February 2021

19:29:41 GMT+0000

We have added a new subtree for Jetpack 9.5. If you want to try this version before VIP sites are upgraded to it, you can follow the testing guidelines.

As usual, if you want to run this specific version, you’ll need to pin your site to use Jetpack 9.5 by adding this line to your vip-config.php:

define( 'VIP_JETPACK_PINNED_VERSION', '9.5' );

Please, take into account that Jetpack 9.5 is not compatible with WordPress versions less than 5.6.

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

23 February 2021

16:58:50 GMT+0000

It used to be possible to return an undefined variable in A8C_File::purge_file_cache. The function has been made more defensive and as such this is no longer possible.

23 February 2021

16:58:41 GMT+0000

The gutenberg-ramp plugin is deprecated and should not be in regular use. To make this transition easier and to stay aware of all users, we have upgraded gutenberg-ramp to the latest upstream version. This upgrade brings alerting such that if sites continue to call the main function of the gutenberg-ramp plugin, we will be alerted. The idea being that we want to remove all usage of the plugin and need to know if the plugin is still being used and by whom.

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

23 February 2021

16:58:29 GMT+0000

Creates an admin notice indicating the site may be indexable by search engines if blog_public option is 1

Screen Shot 2020-05-15 at 2 59 44 PM

Additionally, the notice does not show if:

  • the current user does not have manage_options
  • the notice has been dismissed (saved in options, reset if blog_public is resaved to 1)
  • the home url ends in .go-vip.co or .go-vip.net

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

23 February 2021

16:58:24 GMT+0000

Removes minor warning from wp vip-search health validate-contents when some parameters are not set. The correct default values are set both before and after this change.

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

18 February 2021

10:10:39 GMT+0000

This version of ElasticPress contains changes to how mappings are built – it breaks out the generation from the API requests to make it reusable.

#mu-plugins, #search

17 February 2021

23:42:55 GMT+0000

This change adds an automated daily backup of the user roles option that can be used to recover roles if they are corrupted. It also adds some CLI commands to aid in managing these backups.

11 February 2021

23:59:19 GMT+0000

Passing a query string like http://vip-go-dev.lndo.site/?name[]=test will cause the below php error:

PHP Warning: trim() expects parameter 1 to be string, array given in /app/wp/wp-includes/class-wp-query.php on line 779

Because WordPress interprets these sorts of query strings as single post or single page queries – it will end up with a main query that looks like the SQL query below – which is notably limitless:

SELECT wp_posts.*
FROM wp_posts
WHERE 1=1
AND wp_posts.post_type = 'post'
ORDER BY wp_posts.post_date DESC

This is a stopgap while awaiting the resolution of the following core ticket:

https://core.trac.wordpress.org/ticket/17737

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