Skip to content

Commit

Permalink
Jetpack 4.8: changelog. (#6613)
Browse files Browse the repository at this point in the history
* Readme: remove old release and add skeleton for 4.8.

* Changelog: add #6572

* Changelog: add #6567

* Changelog: add #6542

* Changelog: add #6527

* Changelog: add #6508

* Changelog: add #6478

* Changelog: add #6477

* Changelog: add #6249

* Update stable version and remove old version from readme.

* Changelog: add 4.7.1 to changelog.

* Readme: add new contributor.

* Sync: update docblock @SInCE version.

Related: #6053

* Changelog: add release post.

* changelog: add #6053

* Changelog: add #6413

* Changelog: add #6482

* Changelog: add #6584

* Changelog add #6603

* Changelog: add #6606

* Changelog: add #6611

* Changelog: add #6635

* Changelog: add #6639

* Changelog: add #6684

* Changelog: add #6710

* Changelog: add #6711

* Changelog: add #5461

* Testing list: update Settings UI feedback prompt.

Props @MichaelArestad

* Changelog: add #6789

* Changelog: add #6778

* Changelog: add #6777

* Changelog: add #6775

* Changelog: add #6755

* Changelog: add #6731

* Changelog: add #6721

* Changelog: add #6705

* Changelog: add #6702

* Changelog: add #6671

* Changelog: add #6637

* Changelog: add #6582

* Changelog: add #6566

* Changelog: add #6555

* Changelog: add #6529

* Changelog: add #6344

* Changelog: add #5763

* Changelog: add #5503

* Changelog: update #6637 changelog.

@see 40e115c#commitcomment-21523982

* Changelog: add #6699

* Changelog: add #6632

* Changelog: add #6769

* Changelog: add #6707

* Changelog: add #6590
  • Loading branch information
jeherve authored and samhotchkiss committed Mar 29, 2017
1 parent 7da53e8 commit 0d49aa5
Show file tree
Hide file tree
Showing 14 changed files with 253 additions and 198 deletions.
18 changes: 18 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
== Changelog ==

= 4.7.1 =

* Release date: March 14th, 2017
* Release post: http://wp.me/p1moTy-48Y

**Bug Fixes**

* Carousel: avoid javascript errors that may cause issues with Slideshows or Tiled Galleries.
* Markdown: always enable Markdown for posts whenever the module is active.
* Sharing: make sure that sharing buttons open in a small pop-up instead of a separate window.
* SSO: Avoid token or nonce errors when trying to log in to your site via the Secure Sign On option.
* VideoPress: add in the ability to get video thumbnails from the WordPress.com REST API.
* Widgets: improve rendering of the Image Widget via Photon.
* Widget Visibility: avoid empty widget visibility rules after updating to Jetpack 4.7.
* Widget Visibility: restore the option to make widgets appear on archive pages of different Custom Post Types.
* Widget Visibility: migrate widget visibility settings to the new major Page rule for Custom Post Types.
* Widget Visibility: add missing CSS for widget visibility settings on sites using an RTL language.

= 4.7 =

* Release date: March 7th, 2017
Expand Down
36 changes: 18 additions & 18 deletions modules/sitemaps/sitemap-buffer.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* class abstracts the details of constructing these lists while
* maintaining the constraints.
*
* @since 4.7.0
* @since 4.8.0
* @package Jetpack
*/

Expand All @@ -20,15 +20,15 @@
* 3. each item has a timestamp, and we need to keep track
* of the most recent timestamp of the items in the list.
*
* @since 4.7.0
* @since 4.8.0
*/
class Jetpack_Sitemap_Buffer {

/**
* Largest number of items the buffer can hold.
*
* @access private
* @since 4.7.0
* @since 4.8.0
* @var int $item_capacity The item capacity.
*/
private $item_capacity;
Expand All @@ -37,7 +37,7 @@ class Jetpack_Sitemap_Buffer {
* Largest number of bytes the buffer can hold.
*
* @access private
* @since 4.7.0
* @since 4.8.0
* @var int $byte_capacity The byte capacity.
*/
private $byte_capacity;
Expand All @@ -46,7 +46,7 @@ class Jetpack_Sitemap_Buffer {
* Footer text of the buffer; stored here so it can be appended when the buffer is full.
*
* @access private
* @since 4.7.0
* @since 4.8.0
* @var string $footer_text The footer text.
*/
private $footer_text;
Expand All @@ -55,7 +55,7 @@ class Jetpack_Sitemap_Buffer {
* The buffer contents.
*
* @access private
* @since 4.7.0
* @since 4.8.0
* @var string The buffer contents.
*/
private $buffer;
Expand All @@ -64,7 +64,7 @@ class Jetpack_Sitemap_Buffer {
* Flag which detects when the buffer is full.
*
* @access private
* @since 4.7.0
* @since 4.8.0
* @var bool $is_full_flag The flag value. This flag is set to false on construction and only flipped to true if we've tried to add something and failed.
*/
private $is_full_flag;
Expand All @@ -73,7 +73,7 @@ class Jetpack_Sitemap_Buffer {
* Flag which detects when the buffer is empty.
*
* @access private
* @since 4.7.0
* @since 4.8.0
* @var bool $is_empty_flag The flag value. This flag is set to true on construction and only flipped to false if we've tried to add something and succeeded.
*/
private $is_empty_flag;
Expand All @@ -82,15 +82,15 @@ class Jetpack_Sitemap_Buffer {
* The most recent timestamp seen by the buffer.
*
* @access private
* @since 4.7.0
* @since 4.8.0
* @var string $timestamp Must be in 'YYYY-MM-DD hh:mm:ss' format.
*/
private $timestamp;

/**
* Construct a new Jetpack_Sitemap_Buffer.
*
* @since 4.7.0
* @since 4.8.0
*
* @param int $item_limit The maximum size of the buffer in items.
* @param int $byte_limit The maximum size of the buffer in bytes.
Expand Down Expand Up @@ -125,7 +125,7 @@ public function __construct(
* we set is_full_flag to true. If $item is null,
* don't do anything and report success.
*
* @since 4.7.0
* @since 4.8.0
*
* @param string $item The item to be added.
*
Expand Down Expand Up @@ -156,7 +156,7 @@ public function try_to_add_item( $item ) {
/**
* Retrieve the contents of the buffer.
*
* @since 4.7.0
* @since 4.8.0
*
* @return string The contents of the buffer (with the footer included).
*/
Expand All @@ -167,7 +167,7 @@ public function contents() {
/**
* Detect whether the buffer is full.
*
* @since 4.7.0
* @since 4.8.0
*
* @return bool True if the buffer is full, false otherwise.
*/
Expand All @@ -178,7 +178,7 @@ public function is_full() {
/**
* Detect whether the buffer is empty.
*
* @since 4.7.0
* @since 4.8.0
*
* @return bool True if the buffer is empty, false otherwise.
*/
Expand All @@ -189,7 +189,7 @@ public function is_empty() {
/**
* Update the timestamp of the buffer.
*
* @since 4.7.0
* @since 4.8.0
*
* @param string $new_time A datetime string in 'YYYY-MM-DD hh:mm:ss' format.
*/
Expand All @@ -201,7 +201,7 @@ public function view_time( $new_time ) {
/**
* Retrieve the timestamp of the buffer.
*
* @since 4.7.0
* @since 4.8.0
*
* @return string A datetime string in 'YYYY-MM-DD hh:mm:ss' format.
*/
Expand Down Expand Up @@ -233,7 +233,7 @@ public function last_modified() {
*
* @access public
* @since 3.9.0
* @since 4.7.0 Rename, add $depth parameter, and change return type.
* @since 4.8.0 Rename, add $depth parameter, and change return type.
*
* @param array $array A recursive associative array of tag/child relationships.
* @param string $depth String to prepend to each line. For internal use only.
Expand Down Expand Up @@ -266,7 +266,7 @@ public static function array_to_xml_string( $array, $depth = '' ) {
* Render an associative array of XML attribute key/value pairs.
*
* @access public
* @since 4.7.0
* @since 4.8.0
*
* @param array $array Key/value array of attributes.
*
Expand Down
Loading

0 comments on commit 0d49aa5

Please sign in to comment.