Skip to content

Commit

Permalink
Recompile WordPress
Browse files Browse the repository at this point in the history
  • Loading branch information
deployment_bot committed Oct 18, 2023
1 parent a4d8b26 commit 9065025
Show file tree
Hide file tree
Showing 2,107 changed files with 870,123 additions and 5,253 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, eoigal, cfinke, automattic, jgs, procifer, stephdau, kbrownkd
Tags: comments, spam, antispam, anti-spam, contact form, anti spam, comment moderation, comment spam, contact form spam, spam comments
Requires at least: 5.0
Tested up to: 6.0.1
Tested up to: 6.1
Stable tag: 5.0.1
License: GPLv2 or later

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,7 @@ VideoDetails = MediaDetails.extend(/** @lends wp.media.view.MediaFrame.VideoDeta

wp.ajax.send( 'set-attachment-thumbnail', {
data : {
_ajax_nonce: wp.media.view.settings.nonce.setAttachmentThumbnail,
urls: urls,
thumbnail_id: attachment.get( 'id' )
}
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@

var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),
blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),
allowedProtocols = new RegExp( '^https?:$', 'i' ),
i, source, height, sourceURL, targetURL;

for ( i = 0; i < blockquotes.length; i++ ) {
Expand Down Expand Up @@ -84,6 +85,11 @@
sourceURL.href = source.getAttribute( 'src' );
targetURL.href = data.value;

/* Only follow link if the protocol is in the allow list. */
if ( ! allowedProtocols.test( targetURL.protocol ) ) {
continue;
}

/* Only continue if link hostname matches iframe's hostname. */
if ( targetURL.host === sourceURL.host ) {
if ( document.activeElement === source ) {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
}

mousemoveTimer = setTimeout( function ( theEvent, originalMousemoveStart ) {
var now = ( new Date() ).getTime() - 250; // To account for the timer delay.
var now = ( new Date() ).getTime() - 500; // To account for the timer delay.

var mousemove = [];
mousemove.push( now - originalMousemoveStart );
Expand All @@ -271,7 +271,7 @@

mousemoveStart = null;
mousemoveTimer = null;
}, 250, e, mousemoveStart );
}, 500, e, mousemoveStart );
}, supportsPassive ? { passive: true } : false );

document.addEventListener( 'touchmove', function ( e ) {
Expand All @@ -281,7 +281,7 @@

touchmoveCountTimer = setTimeout( function () {
touchmoveCount++;
}, 250 );
}, 500 );
}, supportsPassive ? { passive: true } : false );

document.addEventListener( 'touchstart', function ( e ) {
Expand Down Expand Up @@ -320,7 +320,7 @@

scrollCountTimer = setTimeout( function () {
scrollCount++;
}, 250 );
}, 500 );
}, supportsPassive ? { passive: true } : false );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, eoigal, cfinke, automattic, jgs, procifer, stephdau, kbrownkd
Tags: comments, spam, antispam, anti-spam, contact form, anti spam, comment moderation, comment spam, contact form spam, spam comments
Requires at least: 5.0
Tested up to: 6.1
Stable tag: 5.0.1
Tested up to: 6.1.1
Stable tag: 5.0.2
License: GPLv2 or later

The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.
Expand All @@ -30,6 +30,12 @@ Upload the Akismet plugin to your blog, activate it, and then enter your Akismet

== Changelog ==

= 5.0.2 =
*Release Date - 1 December 2022*

* Improved compatibility with themes that hide or show UI elements based on mouse movements.
* Increased security of API keys by sending them in request bodies instead of subdomains.

= 5.0.1 =
*Release Date - 28 September 2022*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,8 @@
height: 100%;
max-width: none;
max-height: none;
object-fit: cover;
-o-object-fit: cover;
object-fit: cover;
outline: none;
border: none;
box-shadow: none;
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,8 @@
height: 100%;
max-width: none;
max-height: none;
object-fit: cover;
-o-object-fit: cover;
object-fit: cover;
outline: none;
border: none;
box-shadow: none;
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@
width: 100%;
height: 100%;
flex: 1;
object-fit: cover;
-o-object-fit: cover;
object-fit: cover;
}
.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image, .wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item,
.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,
Expand Down Expand Up @@ -351,7 +352,8 @@ figure.wp-block-gallery.has-nested-images {
width: 100%;
flex: 1 0 0%;
height: 100%;
object-fit: cover;
-o-object-fit: cover;
object-fit: cover;
}
.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image) {
width: 100%;
Expand Down
Loading

0 comments on commit 9065025

Please sign in to comment.