Skip to content

Commit

Permalink
Add changelog entry for #8625
Browse files Browse the repository at this point in the history
  • Loading branch information
oskosk committed Feb 27, 2018
1 parent 7d9de8b commit 80ec0c7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ There are opportunities for developers at all levels to contribute. [Learn more

* Admin Page: Removed all linting warnings for the JS code of the Admin page. These were only shown in development builds.
* Connect: Fixed an issue that sometimes resulted in a notice being shown about another user already having connected a Jetpack site when attempting to connect your site to WordPress.com
* General: Added suppress_filters param to get_posts / get_children function calls.
* Markdown: Updated WordAds code to not use create_function which is getting deprecated in PHP 7.2.
* Sync: Fixed a problem in Jetpack Sync code when trying to get property of non-object in the post syncing file.
* Sync: Stopped synchronizing the sitemap post types to WordPress.com servers as it was an issue given the size of these.
Expand Down
11 changes: 11 additions & 0 deletions to-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ We added support for excerpts to these custom content types.
* Attempt to create either a new Portfolio post or a Testimonial one.
* Expect to see the excerpt field shown.

### General

The suppress_filters param passed to get_posts / get_children was updated in several places. Passing this param allows plugins to filter wp query to modify behaviour.

This one's hard to test.

* [Advanced post cache](https://github.com/Automattic/advanced-post-cache) is an example of a plugin providing caching.
* Out of the box, WP_Query runs a couple of queries and these are uncached. Advanced post cache, used on all WordPress.com sites (even GO VIP), hooks into WP_Query can caches the result of these queries to stop the running on every page load. With this suppress_filtersadvanced post cache doesn't not run. This means queries run unnecessarily and result in high level of traffic to database servers at peak times.
* Test Jetpack with this plugin enabled and confirm that everything works as expected.


### Jetpack Connect

With Jetpack 5.8 we introduced an issue that would appear sometimes when attempting to connect a site after clicking the banner for Jetpack in the WordPress Dashboard.
Expand Down

0 comments on commit 80ec0c7

Please sign in to comment.