jquery-ui/external
Michał Gołębiowski-Owczarek 98b539171b All: Migrate away from deprecated/removed Core APIs
Summary of the changes:

* Build: Add jQuery 3.2.0-3.4.1 to versions UI can be tested against
* Build: Load jQuery & Migrate via HTTPS
* Build: Add package-lock.json to .gitignore
* Build: Update jQuery Migrate from 3.0.0 to 3.1.0
* Build: Allow to run tests against jQuery 3.x-git
* Build: Fix formatting according to JSCS rules
* Build: Disable JSCS for the inlined jQuery Color
* All: Switch from $.isArray to Array.isArray (jQuery.isArray will be
  removed in jQuery 4.0)
* All: Switch from `$.isFunction( x )` to `typeof x === "function"`
  (jQuery.isFunction will be removed in jQuery 4.0)
* All: Inline jQuery.isWindow as it'll be removed in jQuery 4.0
* Effects: Fix a timing issue in a variable declaration. Previously,
  a jQuery object was created, chained & assigned to a variable that
  was then accessed in a callback used inside of this chained
  definition. Due to a timing difference in when the callback fired for
  the first time in latest jQuery master, it was being called before
  the variable was defined.
* Tests: Make dialog & draggable unit tests less strict (newest jQuery
  returns fractional results in some cases, making comparisons fail when
  there's a tiny difference)
* All: Migrate from $.trim to bare String.prototype.trim (jQuery.trim
  will be deprecated in jQuery 3.5)

Closes gh-1901
2019-12-08 22:23:08 +01:00
..
globalize Build: Reorganize external directory 2014-06-24 22:45:32 -04:00
jquery Build: Add jQuery 3.0 for testing 2016-07-06 09:45:29 -04:00
jquery-1.7.0 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.7.1 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.7.2 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.8.0 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.8.1 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.8.2 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.8.3 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.9.0 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.9.1 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.10.0 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.10.1 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.10.2 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-1.11.0 Build: Upgrade to jQuery 1.11.2 2015-02-23 14:01:03 -05:00
jquery-1.11.1 Build: Upgrade to jQuery 1.11.2 2015-02-23 14:01:03 -05:00
jquery-1.11.2 Build: Upgrade to jQuery 1.11.2 2015-02-23 14:01:03 -05:00
jquery-1.11.3 Build: Upgrade to jQuery 1.11.3 2015-05-14 08:25:16 -04:00
jquery-1.12.0 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-1.12.1 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-1.12.2 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-1.12.3 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-1.12.4 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-2.0.0 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-2.0.1 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-2.0.2 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-2.0.3 Test: Get all jQuery versions from Bower 2014-06-24 22:45:44 -04:00
jquery-2.1.0 Build: Upgrade to jQuery 1.11.2 2015-02-23 14:01:03 -05:00
jquery-2.1.1 Build: Upgrade to jQuery 1.11.2 2015-02-23 14:01:03 -05:00
jquery-2.1.2 Build: Upgrade to jQuery 1.11.2 2015-02-23 14:01:03 -05:00
jquery-2.1.3 Build: Upgrade to jQuery 1.11.2 2015-02-23 14:01:03 -05:00
jquery-2.1.4 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-2.2.0 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-2.2.1 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-2.2.2 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-2.2.3 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-2.2.4 Build: Add jQuery 1.12/2.2 to the test configuration 2016-05-25 16:42:06 -04:00
jquery-3.0.0 Build: Add jQuery 3.0 for testing 2016-07-06 09:45:29 -04:00
jquery-3.1.0 Build: Add jQuery 3.1.0 2016-07-08 13:02:10 -04:00
jquery-3.1.1 Build: Add jQuery 3.1.1 2016-11-02 12:52:22 -04:00
jquery-3.2.0 All: Migrate away from deprecated/removed Core APIs 2019-12-08 22:23:08 +01:00
jquery-3.2.1 All: Migrate away from deprecated/removed Core APIs 2019-12-08 22:23:08 +01:00
jquery-3.3.0 All: Migrate away from deprecated/removed Core APIs 2019-12-08 22:23:08 +01:00
jquery-3.3.1 All: Migrate away from deprecated/removed Core APIs 2019-12-08 22:23:08 +01:00
jquery-3.4.0 All: Migrate away from deprecated/removed Core APIs 2019-12-08 22:23:08 +01:00
jquery-3.4.1 All: Migrate away from deprecated/removed Core APIs 2019-12-08 22:23:08 +01:00
jquery-custom Tests: Add custom build of core to tests 2015-05-20 14:28:55 -04:00
jquery-migrate-1.4.1 Qunit: Add bootstrap config for running tests with jQuery Migrate 2017-02-06 08:23:18 -05:00
jquery-migrate-3.1.0 All: Migrate away from deprecated/removed Core APIs 2019-12-08 22:23:08 +01:00
jquery-mousewheel Build: Upgrade to jquery-mousewheel 3.1.12 2014-07-22 12:13:59 -04:00
jquery-simulate Build: Pull in jquery.simulate.js from Bower 2014-08-22 17:01:50 -04:00
jshint Build: Reorganize external directory 2014-06-24 22:45:32 -04:00
qunit Build: Upgrade to QUnit 1.18.0 2015-04-03 12:49:43 +02:00
qunit-assert-classes Build: Update to qunit-assert-classes to V 1.0.2 2015-05-01 07:11:35 -04:00
qunit-assert-close Tests: Use the qunit-assert-close module 2015-04-09 09:28:25 -04:00
qunit-composite Build: Upgrade to qunit-composite 1.1.0 2015-04-09 09:28:25 -04:00
requirejs Tests: Change test infrastructure to use AMD and reduce boilerplate 2015-04-09 09:21:06 -04:00