Plugin Directory

Changeset 2765261


Ignore:
Timestamp:
08/02/2022 03:26:07 PM (4 years ago)
Author:
wpkaren
Message:

Updating trunk to version 1.1.0

Location:
jetpack-search/trunk
Files:
24 edited

Legend:

Unmodified
Added
Removed
  • jetpack-search/trunk/CHANGELOG.md

    r2763220 r2765261  
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
    77
    8 ## [1.1.0-beta] - 2022-07-29
    9 ### Changed
    10 - E2E tests: bump @playwright/test and allure-playwright versions
    11 - Renaming master to trunk.
    12 - Renaming `master` references to `trunk`
    13 - Updated package dependencies.
     8## [1.1.0] - 2022-08-02
     9### Added
     10- Dashboard: new Record Meter feature to show the breakdown of records in your search index.
    1411
    1512### Fixed
    16 - E2E tests: fixed pretest cleanup script not running
    17 - Search: update plugin README
     13- Customization: fix fill color for gridicons in dark mode.
     14- Customization: hide unsupported taxonomies from Search widget.
     15- Customization: re-enable auto-collapsing sidebar in Customberg.
     16- Dashboard: fix currency code in upsell page.
     17- Dashboard: fix pricing issue before site is connected to Jetpack.
     18- Dashboard: minor CSS changes for Hello Dolly compatibility.
     19- Instant Search: avoid search query on component mount.
     20- Instant Search: consistent design for focus states in Search overlay.
     21- Instant Search: don't open modal if only sort parameter is set.
     22- Instant Search: fix header letter spacing in modal.
     23- Instant Search: fix irrelevant widgets added to sidebar during auto config.
     24- Instant Search: fix keyboard handling on search options.
     25- Instant Search: prevent hidden submit button appearing on focus.
     26- Instant Search: restore support for filtering by multiple post types with post_type=.
     27- Search: redirect to the Search Dashboard on activation only when Jetpack plugin does not exist.
    1828
    1929## 1.0.0 - 2022-05-30
     
    2131- Initial release.
    2232
    23 [1.1.0-beta]: https://github.com/Automattic/jetpack-search-plugin/compare/v1.0.0...v1.1.0-beta
     33[1.1.0-beta]: https://github.com/Automattic/jetpack-search-plugin/compare/1.0.0...1.1.0-beta
  • jetpack-search/trunk/composer.json

    r2763220 r2765261  
    5353    "config": {
    5454        "sort-packages": true,
    55         "autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta",
     55        "autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0",
    5656        "allow-plugins": {
    5757            "automattic/jetpack-autoloader": true,
  • jetpack-search/trunk/jetpack-search.php

    r2763220 r2765261  
    55 * Plugin URI: https://jetpack.com/search/
    66 * Description: A cloud-powered replacement for WordPress' search.
    7  * Version: 1.1.0-beta
     7 * Version: 1.1.0
    88 * Author: Automattic
    99 * Author URI: https://jetpack.com/
     
    2727define( 'JETPACK_SEARCH_PLUGIN__FILE_RELATIVE_PATH', plugin_basename( __FILE__ ) );
    2828define( 'JETPACK_SEARCH_PLUGIN__SLUG', 'jetpack-search' );
    29 define( 'JETPACK_SEARCH_PLUGIN__VERSION', '1.1.0-beta' );
     29define( 'JETPACK_SEARCH_PLUGIN__VERSION', '1.1.0' );
    3030
    3131defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) || define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' );
  • jetpack-search/trunk/jetpack_vendor/i18n-map.php

    r2763220 r2765261  
    2121      'ver' => '0.1.4',
    2222    ),
     23    'jetpack-password-checker' => array(
     24      'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
     25      'ver' => '0.2.6',
     26    ),
    2327    'jetpack-assets' => array(
    2428      'path' => 'jetpack_vendor/automattic/jetpack-assets',
     
    2933      'ver' => '1.9.3',
    3034    ),
    31     'jetpack-password-checker' => array(
    32       'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
    33       'ver' => '0.2.6',
    34     ),
    3535    'jetpack-idc' => array(
    3636      'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis',
    3737      'ver' => '0.8.18',
     38    ),
     39    'jetpack-sync' => array(
     40      'path' => 'jetpack_vendor/automattic/jetpack-sync',
     41      'ver' => '1.37.0',
    3842    ),
    3943    'jetpack-my-jetpack' => array(
     
    4549      'ver' => '0.17.0',
    4650    ),
    47     'jetpack-sync' => array(
    48       'path' => 'jetpack_vendor/automattic/jetpack-sync',
    49       'ver' => '1.37.0',
    50     ),
    5151  ),
    5252);
  • jetpack-search/trunk/readme.txt

    r2763223 r2765261  
    112112
    113113== Changelog ==
    114 ### 1.1.0-beta - 2022-07-29
    115 #### Changed
    116 - E2E tests: bump @playwright/test and allure-playwright versions
    117 - Renaming master to trunk.
    118 - Renaming `master` references to `trunk`
    119 - Updated package dependencies.
     114### 1.1.0 - 2022-08-02
     115#### Added
     116- Dashboard: new Record Meter feature to show the breakdown of records in your search index.
    120117
    121118#### Fixed
    122 - E2E tests: fixed pretest cleanup script not running
    123 - Search: update plugin README
     119- Customization: fix fill color for gridicons in dark mode.
     120- Customization: hide unsupported taxonomies from Search widget.
     121- Customization: re-enable auto-collapsing sidebar in Customberg.
     122- Dashboard: fix currency code in upsell page.
     123- Dashboard: fix pricing issue before site is connected to Jetpack.
     124- Dashboard: minor CSS changes for Hello Dolly compatibility.
     125- Instant Search: avoid search query on component mount.
     126- Instant Search: consistent design for focus states in Search overlay.
     127- Instant Search: don't open modal if only sort parameter is set.
     128- Instant Search: fix header letter spacing in modal.
     129- Instant Search: fix irrelevant widgets added to sidebar during auto config.
     130- Instant Search: fix keyboard handling on search options.
     131- Instant Search: prevent hidden submit button appearing on focus.
     132- Instant Search: restore support for filtering by multiple post types with post_type=.
     133- Search: redirect to the Search Dashboard on activation only when Jetpack plugin does not exist.
    124134
    125135== Testimonials ==
  • jetpack-search/trunk/src/class-jetpack-search-plugin.php

    r2734341 r2765261  
    9191        }
    9292
    93         if ( JETPACK_SEARCH_PLUGIN__FILE_RELATIVE_PATH === $plugin ) {
     93        // Redirect to the Search Dashboard only when Jetpack plugin is not activated.
     94        if ( JETPACK_SEARCH_PLUGIN__FILE_RELATIVE_PATH === $plugin && ! class_exists( 'Jetpack' ) ) {
    9495            wp_safe_redirect( esc_url( admin_url( 'admin.php?page=jetpack-search' ) ) );
    9596            exit;
  • jetpack-search/trunk/vendor/autoload.php

    r2763220 r2765261  
    1010require_once __DIR__ . '/composer/autoload_real.php';
    1111
    12 return ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta::getLoader();
     12return ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0::getLoader();
  • jetpack-search/trunk/vendor/autoload_packages.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/composer/autoload_real.php

    r2763220 r2765261  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta
     5class ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0
    66{
    77    private static $loader;
     
    2323        }
    2424
    25         spl_autoload_register(array('ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta', 'loadClassLoader'), true, true);
     25        spl_autoload_register(array('ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0', 'loadClassLoader'), true, true);
    2626        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    27         spl_autoload_unregister(array('ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta', 'loadClassLoader'));
     27        spl_autoload_unregister(array('ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0', 'loadClassLoader'));
    2828
    2929        require __DIR__ . '/autoload_static.php';
    30         call_user_func(\Composer\Autoload\ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta::getInitializer($loader));
     30        call_user_func(\Composer\Autoload\ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0::getInitializer($loader));
    3131
    3232        $loader->setClassMapAuthoritative(true);
    3333        $loader->register(true);
    3434
    35         $includeFiles = \Composer\Autoload\ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta::$files;
     35        $includeFiles = \Composer\Autoload\ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0::$files;
    3636        foreach ($includeFiles as $fileIdentifier => $file) {
    37             composerRequireb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta($fileIdentifier, $file);
     37            composerRequireb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0($fileIdentifier, $file);
    3838        }
    3939
     
    4747 * @return void
    4848 */
    49 function composerRequireb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta($fileIdentifier, $file)
     49function composerRequireb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0($fileIdentifier, $file)
    5050{
    5151    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • jetpack-search/trunk/vendor/composer/autoload_static.php

    r2763220 r2765261  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta
     7class ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0
    88{
    99    public static $files = array (
     
    192192    {
    193193        return \Closure::bind(function () use ($loader) {
    194             $loader->prefixLengthsPsr4 = ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta::$prefixLengthsPsr4;
    195             $loader->prefixDirsPsr4 = ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta::$prefixDirsPsr4;
    196             $loader->classMap = ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta::$classMap;
     194            $loader->prefixLengthsPsr4 = ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0::$prefixLengthsPsr4;
     195            $loader->prefixDirsPsr4 = ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0::$prefixDirsPsr4;
     196            $loader->classMap = ComposerStaticInitb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0::$classMap;
    197197
    198198        }, null, ClassLoader::class);
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-autoloader-handler.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-autoloader-locator.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-autoloader.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-container.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-hook-manager.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-latest-autoloader-guard.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-manifest-reader.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-path-processor.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-php-autoloader.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-plugin-locator.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-plugins-handler.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-shutdown-handler.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-version-loader.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
  • jetpack-search/trunk/vendor/jetpack-autoloader/class-version-selector.php

    r2763220 r2765261  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0_beta;
     8namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ1_1_0;
    99
    1010 // phpcs:ignore
Note: See TracChangeset for help on using the changeset viewer.