Changeset 3418100
- Timestamp:
- 12/12/2025 10:09:31 AM (4 months ago)
- Location:
- wp-jquery-update-test/trunk
- Files:
-
- 2 added
- 2 deleted
- 3 edited
-
assets/jquery-4.0.0-beta.2.js (deleted)
-
assets/jquery-4.0.0-rc.1.js (added)
-
assets/jquery-migrate-3.5.2.js (deleted)
-
assets/jquery-migrate-4.0.0-beta.1.js (added)
-
class_wp_jquery_update_test.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
wp-jquery-update-test.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-jquery-update-test/trunk/class_wp_jquery_update_test.php
r3134497 r3418100 42 42 43 43 // Use 'jquery-core' 4.0.0-beta, and 'jquery-migrate' 3.5.0. 44 self::set_script( $scripts, 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '4.0.0- beta.2' );45 self::set_script( $scripts, 'jquery-core', $assets_url . 'jquery-4.0.0- beta.2.js', array(), '4.0.0-beta.2' );46 self::set_script( $scripts, 'jquery-migrate', $assets_url . 'jquery-migrate- 3.5.2.js', array(), '3.5.2' );44 self::set_script( $scripts, 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '4.0.0-rc.1' ); 45 self::set_script( $scripts, 'jquery-core', $assets_url . 'jquery-4.0.0-rc.1.js', array(), '4.0.0-rc.1' ); 46 self::set_script( $scripts, 'jquery-migrate', $assets_url . 'jquery-migrate-4.0.0-beta.1.js', array(), '4.0.0-beta.1' ); 47 47 } 48 48 … … 81 81 82 82 <p> 83 <?php _e( 'This plugin is intended for testing of jQuery version 4.0.0 -betabefore updating it in WordPress.', 'wp-jquery-update-test' ); ?>83 <?php _e( 'This plugin is intended for testing of jQuery version 4.0.0 before updating it in WordPress.', 'wp-jquery-update-test' ); ?> 84 84 <?php _e( 'It is not intended for use in production.', 'wp-jquery-update-test' ); ?> 85 85 </p> 86 86 87 87 <p> 88 <?php _e( 'Currently jQuery 4.0.0- beta.2 and jQuery Migrate 3.5.2are included. An updated version of jQuery UI may be included when it becomes available.', 'wp-jquery-update-test' ); ?>88 <?php _e( 'Currently jQuery 4.0.0-rc.1 and jQuery Migrate 4.0.0-beta.1 are included. An updated version of jQuery UI may be included when it becomes available.', 'wp-jquery-update-test' ); ?> 89 89 </p> 90 90 -
wp-jquery-update-test/trunk/readme.txt
r3226546 r3418100 3 3 Tags: jquery 4 4 Requires at least: 6.5 5 Tested up to: 6. 86 Stable tag: 3.0. 25 Tested up to: 6.9 6 Stable tag: 3.0.3 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 13 13 == Description == 14 14 15 Test jQuery Updates is an official plugin by the WordPress team that is intended for testing of jQuery and jQuery UI before updating themin WordPress. It is not intended for use in production.15 Test jQuery Updates is an official plugin by the WordPress team that is intended for testing of jQuery before updating it in WordPress. It is not intended for use in production. 16 16 17 Version 3.0 of the plugin is intended for testing of jQuery 4.0.0 beta in WordPress 6.5, 6.6, 6.7, and 6.8.17 Version 3.0.2 of the plugin is intended for testing of jQuery 4.0.0-rc.1 in WordPress 6.9 and later. 18 18 19 19 If you find a bug in a jQuery related script [please report it](https://github.com/WordPress/wp-jquery-update-test/issues). … … 24 24 25 25 == Changelog == 26 27 = 3.0.3 = 28 * Update for testing with jQuery 4.0.0-rc.1 and jQuery Migrate 4.0.0-beta.1. 26 29 27 30 = 3.0.2 = -
wp-jquery-update-test/trunk/wp-jquery-update-test.php
r3226546 r3418100 4 4 * Plugin URI: https://wordpress.org/plugins/wp-jquery-update-test 5 5 * Description: A feature plugin to help with testing updates of the jQuery and jQuery UI JavaScript libraries (not intended for use in production). 6 * Version: 3.0. 26 * Version: 3.0.3 7 7 * Requires at least: 6.5 8 * Tested up to: 6.89 8 * Requires PHP: 7.0 10 9 * Author: The WordPress Team 11 10 * Author URI: https://wordpress.org 12 * Contributors: wordpressdotorg, azaozz13 11 * License: GPLv2 14 12 * License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 21 19 } 22 20 23 // Only for WP 6.5 , 6.6, and 6.7(alpha, beta, RC, and release)24 if ( version_compare( $GLOBALS['wp_version'], '6.5', '>=' ) && version_compare( $GLOBALS['wp_version'], ' 6.9-alpha', '<' ) ) {21 // Only for WP 6.5 - 7.0 (alpha, beta, RC, and release) 22 if ( version_compare( $GLOBALS['wp_version'], '6.5', '>=' ) && version_compare( $GLOBALS['wp_version'], '7.1-alpha', '<' ) ) { 25 23 include_once __DIR__ . '/class_wp_jquery_update_test.php'; 26 24 }
Note: See TracChangeset
for help on using the changeset viewer.