Krinkle has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/207600

Change subject: Update jQuery from v1.11.2 to v1.11.3
......................................................................

Update jQuery from v1.11.2 to v1.11.3

This release ships a hot-fix for a JIT bug in iOS 8.2 and 8.3.
This is the only change.

Source code
 https://code.jquery.com/jquery-1.11.3.js

Release notes
 http://blog.jquery.com/2015/04/28/jquery-1-11-3

Change-Id: I5f23b24ae4481749b32e469bb83663361f706e97
---
M RELEASE-NOTES-1.24
M resources/lib/jquery/jquery.js
2 files changed, 17 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/00/207600/1

diff --git a/RELEASE-NOTES-1.24 b/RELEASE-NOTES-1.24
index 43ba287..ace4925 100644
--- a/RELEASE-NOTES-1.24
+++ b/RELEASE-NOTES-1.24
@@ -1,6 +1,14 @@
 Security reminder: If you have PHP's register_globals option set, you must
 turn it off. MediaWiki will no longer work with it enabled.
 
+== MediaWiki 1.24.3 ==
+
+This is a not yet released security and maintenance release of the MediaWiki 
1.24 branch.
+
+== Changes since 1.24.2 ==
+
+* Update jQuery from v1.11.2 to v1.11.3.
+
 == MediaWiki 1.24.2 ==
 
 This is a security and maintenance release of the MediaWiki 1.24 branch.
diff --git a/resources/lib/jquery/jquery.js b/resources/lib/jquery/jquery.js
index 1c3aa82..6feb110 100644
--- a/resources/lib/jquery/jquery.js
+++ b/resources/lib/jquery/jquery.js
@@ -1,5 +1,5 @@
 /*!
- * jQuery JavaScript Library v1.11.2
+ * jQuery JavaScript Library v1.11.3
  * http://jquery.com/
  *
  * Includes Sizzle.js
@@ -9,7 +9,7 @@
  * Released under the MIT license
  * http://jquery.org/license
  *
- * Date: 2014-12-17T15:27Z
+ * Date: 2015-04-28T16:19Z
  */
 
 (function( global, factory ) {
@@ -64,7 +64,7 @@
 
 
 var
-       version = "1.11.2",
+       version = "1.11.3",
 
        // Define a local copy of jQuery
        jQuery = function( selector, context ) {
@@ -569,7 +569,12 @@
 });
 
 function isArraylike( obj ) {
-       var length = obj.length,
+
+       // Support: iOS 8.2 (not reproducible in simulator)
+       // `in` check used to prevent JIT error (gh-2145)
+       // hasOwn isn't used here due to false negatives
+       // regarding Nodelist length in IE
+       var length = "length" in obj && obj.length,
                type = jQuery.type( obj );
 
        if ( type === "function" || jQuery.isWindow( obj ) ) {

-- 
To view, visit https://gerrit.wikimedia.org/r/207600
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5f23b24ae4481749b32e469bb83663361f706e97
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: REL1_24
Gerrit-Owner: Krinkle <krinklem...@gmail.com>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to