Changeset 3417278
- Timestamp:
- 12/11/2025 10:53:44 AM (2 months ago)
- Location:
- autocomplete-woocommerce-orders
- Files:
-
- 22 edited
- 1 copied
-
tags/3.5.4 (copied) (copied from autocomplete-woocommerce-orders/trunk)
-
tags/3.5.4/autocomplete-woocommerce-orders.php (modified) (3 diffs)
-
tags/3.5.4/build/frontend/js/index.asset.php (modified) (1 diff)
-
tags/3.5.4/build/frontend/js/index.js (modified) (1 diff)
-
tags/3.5.4/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md (modified) (2 diffs)
-
tags/3.5.4/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php (modified) (1 diff)
-
tags/3.5.4/jetpack_vendor/i18n-map.php (modified) (1 diff)
-
tags/3.5.4/languages/autocomplete-woocommerce-orders.pot (modified) (2 diffs)
-
tags/3.5.4/readme.txt (modified) (2 diffs)
-
tags/3.5.4/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/3.5.4/vendor/composer/installed.json (modified) (4 diffs)
-
tags/3.5.4/vendor/composer/installed.php (modified) (3 diffs)
-
trunk/autocomplete-woocommerce-orders.php (modified) (3 diffs)
-
trunk/build/frontend/js/index.asset.php (modified) (1 diff)
-
trunk/build/frontend/js/index.js (modified) (1 diff)
-
trunk/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md (modified) (2 diffs)
-
trunk/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php (modified) (1 diff)
-
trunk/jetpack_vendor/i18n-map.php (modified) (1 diff)
-
trunk/languages/autocomplete-woocommerce-orders.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.json (modified) (4 diffs)
-
trunk/vendor/composer/installed.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
autocomplete-woocommerce-orders/tags/3.5.4/autocomplete-woocommerce-orders.php
r3409477 r3417278 5 5 * Plugin URI: https://wordpress.org/plugins/autocomplete-woocommerce-orders/ 6 6 * Description: Autocomplete your WooCommerce orders with ease. This plugins works with most major payment providers including PayPal, SagePay and Stripe. 7 * Version: 3.5. 37 * Version: 3.5.4 8 8 * Text Domain: autocomplete-woocommerce-orders 9 9 * Author: QuadLayers … … 15 15 * Requires PHP: 5.6 16 16 * WC requires at least: 4.0 17 * WC tested up to: 10. 317 * WC tested up to: 10.4 18 18 */ 19 19 … … 26 26 */ 27 27 define( 'ACO_PLUGIN_NAME', 'Autocomplete WooCommerce Orders' ); 28 define( 'ACO_PLUGIN_VERSION', '3.5. 3' );28 define( 'ACO_PLUGIN_VERSION', '3.5.4' ); 29 29 define( 'ACO_PLUGIN_FILE', __FILE__ ); 30 30 define( 'ACO_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR ); -
autocomplete-woocommerce-orders/tags/3.5.4/build/frontend/js/index.asset.php
r2911732 r3417278 1 <?php return array('dependencies' => array(), 'version' => ' 31d6cfe0d16ae931b73c');1 <?php return array('dependencies' => array(), 'version' => '417bf4cff1e2486c334c'); -
autocomplete-woocommerce-orders/tags/3.5.4/build/frontend/js/index.js
r2911732 r3417278 1 /******/ (() => { // webpackBootstrap 2 3 /******/ })() 4 ; -
autocomplete-woocommerce-orders/tags/3.5.4/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md
r3409477 r3417278 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [4.3.15] - 2025-12-08 9 ### Fixed 10 - Ensure proper flags are used with `json_encode()`. [#46092] 7 11 8 12 ## [4.3.14] - 2025-12-01 … … 745 749 - Statically access asset tools 746 750 751 [4.3.15]: https://github.com/Automattic/jetpack-assets/compare/v4.3.14...v4.3.15 747 752 [4.3.14]: https://github.com/Automattic/jetpack-assets/compare/v4.3.13...v4.3.14 748 753 [4.3.13]: https://github.com/Automattic/jetpack-assets/compare/v4.3.12...v4.3.13 -
autocomplete-woocommerce-orders/tags/3.5.4/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php
r3197549 r3417278 531 531 $data['domainMap'] = (object) $data['domainMap']; // Ensure it becomes a json object. 532 532 $data['domainPaths'] = (object) $data['domainPaths']; // Ensure it becomes a json object. 533 $wp_scripts->add_inline_script( $handle, 'wp.jpI18nLoader.state = ' . wp_json_encode( $data, JSON_UNESCAPED_SLASHES ) . ';' );533 $wp_scripts->add_inline_script( $handle, 'wp.jpI18nLoader.state = ' . wp_json_encode( $data, JSON_UNESCAPED_SLASHES | JSON_HEX_TAG | JSON_HEX_AMP ) . ';' ); 534 534 } 535 535 -
autocomplete-woocommerce-orders/tags/3.5.4/jetpack_vendor/i18n-map.php
r3409477 r3417278 7 7 'jetpack-assets' => array( 8 8 'path' => 'jetpack_vendor/automattic/jetpack-assets', 9 'ver' => '4.3.1 4',9 'ver' => '4.3.15', 10 10 ), 11 11 'wp-dashboard-widget-news' => array( -
autocomplete-woocommerce-orders/tags/3.5.4/languages/autocomplete-woocommerce-orders.pot
r3409477 r3417278 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Autocomplete WooCommerce Orders 3.5. 3\n"5 "Project-Id-Version: Autocomplete WooCommerce Orders 3.5.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/autocomplete-woocommerce-orders\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-12- 03T12:28:12+00:00\n"12 "POT-Creation-Date: 2025-12-11T10:53:21+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" -
autocomplete-woocommerce-orders/tags/3.5.4/readme.txt
r3409477 r3417278 6 6 Requires PHP: 5.6 7 7 Tested up to: 6.9 8 Stable tag: 3.5. 38 Stable tag: 3.5.4 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 11 WC requires at least: 4.0 12 WC tested up to: 10. 312 WC tested up to: 10.4 13 13 14 14 Enhance your WooCommerce store with Autocomplete Orders. Automatically complete orders after payment, perfect for virtual goods and subscriptions. … … 65 65 == Changelog == 66 66 67 = 3.5.4 = 68 * WooCommerce compatibility 69 67 70 = 3.5.3 = 68 71 * WordPress compatibility -
autocomplete-woocommerce-orders/tags/3.5.4/vendor/composer/autoload_static.php
r3367292 r3417278 12 12 13 13 public static $prefixLengthsPsr4 = array ( 14 'Q' => 14 'Q' => 15 15 array ( 16 16 'QuadLayers\\WP_Plugin_Table_Links\\' => 33, … … 25 25 26 26 public static $prefixDirsPsr4 = array ( 27 'QuadLayers\\WP_Plugin_Table_Links\\' => 27 'QuadLayers\\WP_Plugin_Table_Links\\' => 28 28 array ( 29 29 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-plugin-table-links/src', 30 30 ), 31 'QuadLayers\\WP_Plugin_Suggestions\\' => 31 'QuadLayers\\WP_Plugin_Suggestions\\' => 32 32 array ( 33 33 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-plugin-suggestions/src', 34 34 ), 35 'QuadLayers\\WP_Plugin_Install_Tab\\' => 35 'QuadLayers\\WP_Plugin_Install_Tab\\' => 36 36 array ( 37 37 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-plugin-install-tab/src', 38 38 ), 39 'QuadLayers\\WP_Notice_Plugin_Required\\' => 39 'QuadLayers\\WP_Notice_Plugin_Required\\' => 40 40 array ( 41 41 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-notice-plugin-required/src', 42 42 ), 43 'QuadLayers\\WP_Notice_Plugin_Promote\\' => 43 'QuadLayers\\WP_Notice_Plugin_Promote\\' => 44 44 array ( 45 45 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-notice-plugin-promote/src', 46 46 ), 47 'QuadLayers\\WP_Dashboard_Widget_News\\' => 47 'QuadLayers\\WP_Dashboard_Widget_News\\' => 48 48 array ( 49 49 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-dashboard-widget-news/src', 50 50 ), 51 'QuadLayers\\PluginFeedback\\' => 51 'QuadLayers\\PluginFeedback\\' => 52 52 array ( 53 53 0 => __DIR__ . '/..' . '/franmastromarino/wp-plugin-feedback/src', -
autocomplete-woocommerce-orders/tags/3.5.4/vendor/composer/installed.json
r3409477 r3417278 3 3 { 4 4 "name": "automattic/jetpack-assets", 5 "version": "v4.3.1 4",6 "version_normalized": "4.3.1 4.0",5 "version": "v4.3.15", 6 "version_normalized": "4.3.15.0", 7 7 "source": { 8 8 "type": "git", 9 9 "url": "https://github.com/Automattic/jetpack-assets.git", 10 "reference": " 9402905e3dc72216309df8c08c67bb855f50058d"11 }, 12 "dist": { 13 "type": "zip", 14 "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/ 9402905e3dc72216309df8c08c67bb855f50058d",15 "reference": " 9402905e3dc72216309df8c08c67bb855f50058d",10 "reference": "0df8b3b3103819543681d24f1f622912d3bae8cd" 11 }, 12 "dist": { 13 "type": "zip", 14 "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/0df8b3b3103819543681d24f1f622912d3bae8cd", 15 "reference": "0df8b3b3103819543681d24f1f622912d3bae8cd", 16 16 "shasum": "" 17 17 }, … … 22 22 }, 23 23 "require-dev": { 24 "automattic/jetpack-changelogger": "^6.0.1 0",24 "automattic/jetpack-changelogger": "^6.0.11", 25 25 "automattic/phpunit-select-config": "^1.0.3", 26 26 "brain/monkey": "^2.6.2", … … 31 31 "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." 32 32 }, 33 "time": "2025-12-0 1T22:34:35+00:00",33 "time": "2025-12-08T13:55:22+00:00", 34 34 "type": "jetpack-library", 35 35 "extra": { … … 59 59 "description": "Asset management utilities for Jetpack ecosystem packages", 60 60 "support": { 61 "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.1 4"61 "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.15" 62 62 }, 63 63 "install-path": "../../jetpack_vendor/automattic/jetpack-assets" -
autocomplete-woocommerce-orders/tags/3.5.4/vendor/composer/installed.php
r3409477 r3417278 2 2 'root' => array( 3 3 'name' => 'quadlayers/autocomplete-woocommerce-orders', 4 'pretty_version' => 'v3.5. 3',5 'version' => '3.5. 3.0',6 'reference' => ' 3a57ebad68ec4cfc8edd95c64c9ca89d0cd5fd85',4 'pretty_version' => 'v3.5.4', 5 'version' => '3.5.4.0', 6 'reference' => 'eb77b5722f03104e8044163ab6f5c710ef927876', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'automattic/jetpack-assets' => array( 14 'pretty_version' => 'v4.3.1 4',15 'version' => '4.3.1 4.0',16 'reference' => ' 9402905e3dc72216309df8c08c67bb855f50058d',14 'pretty_version' => 'v4.3.15', 15 'version' => '4.3.15.0', 16 'reference' => '0df8b3b3103819543681d24f1f622912d3bae8cd', 17 17 'type' => 'jetpack-library', 18 18 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', … … 57 57 ), 58 58 'quadlayers/autocomplete-woocommerce-orders' => array( 59 'pretty_version' => 'v3.5. 3',60 'version' => '3.5. 3.0',61 'reference' => ' 3a57ebad68ec4cfc8edd95c64c9ca89d0cd5fd85',59 'pretty_version' => 'v3.5.4', 60 'version' => '3.5.4.0', 61 'reference' => 'eb77b5722f03104e8044163ab6f5c710ef927876', 62 62 'type' => 'project', 63 63 'install_path' => __DIR__ . '/../../', -
autocomplete-woocommerce-orders/trunk/autocomplete-woocommerce-orders.php
r3409477 r3417278 5 5 * Plugin URI: https://wordpress.org/plugins/autocomplete-woocommerce-orders/ 6 6 * Description: Autocomplete your WooCommerce orders with ease. This plugins works with most major payment providers including PayPal, SagePay and Stripe. 7 * Version: 3.5. 37 * Version: 3.5.4 8 8 * Text Domain: autocomplete-woocommerce-orders 9 9 * Author: QuadLayers … … 15 15 * Requires PHP: 5.6 16 16 * WC requires at least: 4.0 17 * WC tested up to: 10. 317 * WC tested up to: 10.4 18 18 */ 19 19 … … 26 26 */ 27 27 define( 'ACO_PLUGIN_NAME', 'Autocomplete WooCommerce Orders' ); 28 define( 'ACO_PLUGIN_VERSION', '3.5. 3' );28 define( 'ACO_PLUGIN_VERSION', '3.5.4' ); 29 29 define( 'ACO_PLUGIN_FILE', __FILE__ ); 30 30 define( 'ACO_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR ); -
autocomplete-woocommerce-orders/trunk/build/frontend/js/index.asset.php
r2911732 r3417278 1 <?php return array('dependencies' => array(), 'version' => ' 31d6cfe0d16ae931b73c');1 <?php return array('dependencies' => array(), 'version' => '417bf4cff1e2486c334c'); -
autocomplete-woocommerce-orders/trunk/build/frontend/js/index.js
r2911732 r3417278 1 /******/ (() => { // webpackBootstrap 2 3 /******/ })() 4 ; -
autocomplete-woocommerce-orders/trunk/jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md
r3409477 r3417278 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [4.3.15] - 2025-12-08 9 ### Fixed 10 - Ensure proper flags are used with `json_encode()`. [#46092] 7 11 8 12 ## [4.3.14] - 2025-12-01 … … 745 749 - Statically access asset tools 746 750 751 [4.3.15]: https://github.com/Automattic/jetpack-assets/compare/v4.3.14...v4.3.15 747 752 [4.3.14]: https://github.com/Automattic/jetpack-assets/compare/v4.3.13...v4.3.14 748 753 [4.3.13]: https://github.com/Automattic/jetpack-assets/compare/v4.3.12...v4.3.13 -
autocomplete-woocommerce-orders/trunk/jetpack_vendor/automattic/jetpack-assets/src/class-assets.php
r3197549 r3417278 531 531 $data['domainMap'] = (object) $data['domainMap']; // Ensure it becomes a json object. 532 532 $data['domainPaths'] = (object) $data['domainPaths']; // Ensure it becomes a json object. 533 $wp_scripts->add_inline_script( $handle, 'wp.jpI18nLoader.state = ' . wp_json_encode( $data, JSON_UNESCAPED_SLASHES ) . ';' );533 $wp_scripts->add_inline_script( $handle, 'wp.jpI18nLoader.state = ' . wp_json_encode( $data, JSON_UNESCAPED_SLASHES | JSON_HEX_TAG | JSON_HEX_AMP ) . ';' ); 534 534 } 535 535 -
autocomplete-woocommerce-orders/trunk/jetpack_vendor/i18n-map.php
r3409477 r3417278 7 7 'jetpack-assets' => array( 8 8 'path' => 'jetpack_vendor/automattic/jetpack-assets', 9 'ver' => '4.3.1 4',9 'ver' => '4.3.15', 10 10 ), 11 11 'wp-dashboard-widget-news' => array( -
autocomplete-woocommerce-orders/trunk/languages/autocomplete-woocommerce-orders.pot
r3409477 r3417278 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Autocomplete WooCommerce Orders 3.5. 3\n"5 "Project-Id-Version: Autocomplete WooCommerce Orders 3.5.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/autocomplete-woocommerce-orders\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-12- 03T12:28:12+00:00\n"12 "POT-Creation-Date: 2025-12-11T10:53:21+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" -
autocomplete-woocommerce-orders/trunk/readme.txt
r3409477 r3417278 6 6 Requires PHP: 5.6 7 7 Tested up to: 6.9 8 Stable tag: 3.5. 38 Stable tag: 3.5.4 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 11 WC requires at least: 4.0 12 WC tested up to: 10. 312 WC tested up to: 10.4 13 13 14 14 Enhance your WooCommerce store with Autocomplete Orders. Automatically complete orders after payment, perfect for virtual goods and subscriptions. … … 65 65 == Changelog == 66 66 67 = 3.5.4 = 68 * WooCommerce compatibility 69 67 70 = 3.5.3 = 68 71 * WordPress compatibility -
autocomplete-woocommerce-orders/trunk/vendor/composer/autoload_static.php
r3367292 r3417278 12 12 13 13 public static $prefixLengthsPsr4 = array ( 14 'Q' => 14 'Q' => 15 15 array ( 16 16 'QuadLayers\\WP_Plugin_Table_Links\\' => 33, … … 25 25 26 26 public static $prefixDirsPsr4 = array ( 27 'QuadLayers\\WP_Plugin_Table_Links\\' => 27 'QuadLayers\\WP_Plugin_Table_Links\\' => 28 28 array ( 29 29 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-plugin-table-links/src', 30 30 ), 31 'QuadLayers\\WP_Plugin_Suggestions\\' => 31 'QuadLayers\\WP_Plugin_Suggestions\\' => 32 32 array ( 33 33 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-plugin-suggestions/src', 34 34 ), 35 'QuadLayers\\WP_Plugin_Install_Tab\\' => 35 'QuadLayers\\WP_Plugin_Install_Tab\\' => 36 36 array ( 37 37 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-plugin-install-tab/src', 38 38 ), 39 'QuadLayers\\WP_Notice_Plugin_Required\\' => 39 'QuadLayers\\WP_Notice_Plugin_Required\\' => 40 40 array ( 41 41 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-notice-plugin-required/src', 42 42 ), 43 'QuadLayers\\WP_Notice_Plugin_Promote\\' => 43 'QuadLayers\\WP_Notice_Plugin_Promote\\' => 44 44 array ( 45 45 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-notice-plugin-promote/src', 46 46 ), 47 'QuadLayers\\WP_Dashboard_Widget_News\\' => 47 'QuadLayers\\WP_Dashboard_Widget_News\\' => 48 48 array ( 49 49 0 => __DIR__ . '/../..' . '/jetpack_vendor/quadlayers/wp-dashboard-widget-news/src', 50 50 ), 51 'QuadLayers\\PluginFeedback\\' => 51 'QuadLayers\\PluginFeedback\\' => 52 52 array ( 53 53 0 => __DIR__ . '/..' . '/franmastromarino/wp-plugin-feedback/src', -
autocomplete-woocommerce-orders/trunk/vendor/composer/installed.json
r3409477 r3417278 3 3 { 4 4 "name": "automattic/jetpack-assets", 5 "version": "v4.3.1 4",6 "version_normalized": "4.3.1 4.0",5 "version": "v4.3.15", 6 "version_normalized": "4.3.15.0", 7 7 "source": { 8 8 "type": "git", 9 9 "url": "https://github.com/Automattic/jetpack-assets.git", 10 "reference": " 9402905e3dc72216309df8c08c67bb855f50058d"11 }, 12 "dist": { 13 "type": "zip", 14 "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/ 9402905e3dc72216309df8c08c67bb855f50058d",15 "reference": " 9402905e3dc72216309df8c08c67bb855f50058d",10 "reference": "0df8b3b3103819543681d24f1f622912d3bae8cd" 11 }, 12 "dist": { 13 "type": "zip", 14 "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/0df8b3b3103819543681d24f1f622912d3bae8cd", 15 "reference": "0df8b3b3103819543681d24f1f622912d3bae8cd", 16 16 "shasum": "" 17 17 }, … … 22 22 }, 23 23 "require-dev": { 24 "automattic/jetpack-changelogger": "^6.0.1 0",24 "automattic/jetpack-changelogger": "^6.0.11", 25 25 "automattic/phpunit-select-config": "^1.0.3", 26 26 "brain/monkey": "^2.6.2", … … 31 31 "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." 32 32 }, 33 "time": "2025-12-0 1T22:34:35+00:00",33 "time": "2025-12-08T13:55:22+00:00", 34 34 "type": "jetpack-library", 35 35 "extra": { … … 59 59 "description": "Asset management utilities for Jetpack ecosystem packages", 60 60 "support": { 61 "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.1 4"61 "source": "https://github.com/Automattic/jetpack-assets/tree/v4.3.15" 62 62 }, 63 63 "install-path": "../../jetpack_vendor/automattic/jetpack-assets" -
autocomplete-woocommerce-orders/trunk/vendor/composer/installed.php
r3409477 r3417278 2 2 'root' => array( 3 3 'name' => 'quadlayers/autocomplete-woocommerce-orders', 4 'pretty_version' => 'v3.5. 3',5 'version' => '3.5. 3.0',6 'reference' => ' 3a57ebad68ec4cfc8edd95c64c9ca89d0cd5fd85',4 'pretty_version' => 'v3.5.4', 5 'version' => '3.5.4.0', 6 'reference' => 'eb77b5722f03104e8044163ab6f5c710ef927876', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'automattic/jetpack-assets' => array( 14 'pretty_version' => 'v4.3.1 4',15 'version' => '4.3.1 4.0',16 'reference' => ' 9402905e3dc72216309df8c08c67bb855f50058d',14 'pretty_version' => 'v4.3.15', 15 'version' => '4.3.15.0', 16 'reference' => '0df8b3b3103819543681d24f1f622912d3bae8cd', 17 17 'type' => 'jetpack-library', 18 18 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', … … 57 57 ), 58 58 'quadlayers/autocomplete-woocommerce-orders' => array( 59 'pretty_version' => 'v3.5. 3',60 'version' => '3.5. 3.0',61 'reference' => ' 3a57ebad68ec4cfc8edd95c64c9ca89d0cd5fd85',59 'pretty_version' => 'v3.5.4', 60 'version' => '3.5.4.0', 61 'reference' => 'eb77b5722f03104e8044163ab6f5c710ef927876', 62 62 'type' => 'project', 63 63 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.