Plugin Directory

Changeset 3076702


Ignore:
Timestamp:
04/25/2024 12:01:42 AM (2 years ago)
Author:
getpantheon
Message:

Update to version 2.5.3 from GitHub

Location:
solr-power
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solr-power/tags/2.5.3/CHANGELOG.md

    r2966102 r3076702  
    11## Changelog ##
     2
     3### 2.5.3 (April 24, 2024) ###
     4* Fixes a very old bug that would cause tax queries to be built incorrectly. [[#622](https://github.com/pantheon-systems/solr-power/pull/622)] (props [@offshorealert](https://wordpress.org/support/users/offshorealert/))
    25
    36### 2.5.2 (September 12, 2023) ###
  • solr-power/tags/2.5.3/includes/class-solrpower-wp-query.php

    r2943905 r3076702  
    741741                    $multi_query[] = '(' . $field . ':(' . implode( 'OR', $terms ) . '))';
    742742                    if ( $tax_value['include_children'] && is_taxonomy_hierarchical( $tax_value['taxonomy'] ) ) {
    743                         $multi_query[] = '(parent_' . $field . ':' . implode( 'OR', $terms ) . ')';
     743                        $multi_query[] = '(parent_' . $field . ':(' . implode( 'OR', $terms ) . '))';
    744744                    }
    745745                    $query[] = '(' . implode( 'OR', $multi_query ) . ')';
  • solr-power/tags/2.5.3/readme.txt

    r2966102 r3076702  
    44Requires at least: 4.6
    55Requires PHP: 7.1
    6 Tested up to: 6.3
    7 Stable tag: 2.5.2
     6Tested up to: 6.5.2
     7Stable tag: 2.5.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    216216= Explicit Commit vs Autocommit =
    217217
    218 Once solr has sent the data to the solr server, solr must COMMIT the data to the index and adjust the index and relevancy ratings accordingly before that data can appear in search results. 
     218Once solr has sent the data to the solr server, solr must COMMIT the data to the index and adjust the index and relevancy ratings accordingly before that data can appear in search results.
    219219
    220220By default, Solr Search for WordPress has auto-commit disabled. The index is committed when the uncommitted item is two minutes old, or the cron runs. By default, the cron runs on the Pantheon platform every hour.
     
    235235
    236236== Changelog ==
     237
     238= 2.5.3 (April 24, 2024) =
     239* Fixes a very old bug that would cause tax queries to be built incorrectly. [[#622](https://github.com/pantheon-systems/solr-power/pull/622)] (props [@offshorealert](https://wordpress.org/support/users/offshorealert/))
    237240
    238241= 2.5.2 (September 12, 2023) =
  • solr-power/tags/2.5.3/solr-power.php

    r2966102 r3076702  
    33 * Plugin Name: Solr Power
    44 * Description: Allows WordPress sites to index and search content with ApacheSolr.
    5  * Version: 2.5.2
     5 * Version: 2.5.3
    66 * Author: Pantheon
    77 * Author URI: http://pantheon.io
     
    1111 **/
    1212
    13 define( 'SOLR_POWER_VERSION', '2.5.2' );
     13define( 'SOLR_POWER_VERSION', '2.5.3' );
    1414
    1515/**
  • solr-power/tags/2.5.3/vendor/autoload.php

    r2966102 r3076702  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInita2efeaf070e3849370a78199e4e01539::getLoader();
     25return ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d::getLoader();
  • solr-power/tags/2.5.3/vendor/composer/autoload_real.php

    r2966102 r3076702  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInita2efeaf070e3849370a78199e4e01539
     5class ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInita2efeaf070e3849370a78199e4e01539', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInita2efeaf070e3849370a78199e4e01539', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInita2efeaf070e3849370a78199e4e01539::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit9971da5872d73092e02191e0753f5a2d::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • solr-power/tags/2.5.3/vendor/composer/autoload_static.php

    r2966102 r3076702  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInita2efeaf070e3849370a78199e4e01539
     7class ComposerStaticInit9971da5872d73092e02191e0753f5a2d
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    370370    {
    371371        return \Closure::bind(function () use ($loader) {
    372             $loader->prefixLengthsPsr4 = ComposerStaticInita2efeaf070e3849370a78199e4e01539::$prefixLengthsPsr4;
    373             $loader->prefixDirsPsr4 = ComposerStaticInita2efeaf070e3849370a78199e4e01539::$prefixDirsPsr4;
    374             $loader->classMap = ComposerStaticInita2efeaf070e3849370a78199e4e01539::$classMap;
     372            $loader->prefixLengthsPsr4 = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$prefixLengthsPsr4;
     373            $loader->prefixDirsPsr4 = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$prefixDirsPsr4;
     374            $loader->classMap = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$classMap;
    375375
    376376        }, null, ClassLoader::class);
  • solr-power/tags/2.5.3/vendor/composer/installed.php

    r2966102 r3076702  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '3ba5ee896766bfe263a394d9d749ce5ce3db6709',
     6        'reference' => '4eb7e163f188620d88ed057f6f2761a5f11bf6c3',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '3ba5ee896766bfe263a394d9d749ce5ce3db6709',
     16            'reference' => '4eb7e163f188620d88ed057f6f2761a5f11bf6c3',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • solr-power/trunk/CHANGELOG.md

    r2966102 r3076702  
    11## Changelog ##
     2
     3### 2.5.3 (April 24, 2024) ###
     4* Fixes a very old bug that would cause tax queries to be built incorrectly. [[#622](https://github.com/pantheon-systems/solr-power/pull/622)] (props [@offshorealert](https://wordpress.org/support/users/offshorealert/))
    25
    36### 2.5.2 (September 12, 2023) ###
  • solr-power/trunk/includes/class-solrpower-wp-query.php

    r2943905 r3076702  
    741741                    $multi_query[] = '(' . $field . ':(' . implode( 'OR', $terms ) . '))';
    742742                    if ( $tax_value['include_children'] && is_taxonomy_hierarchical( $tax_value['taxonomy'] ) ) {
    743                         $multi_query[] = '(parent_' . $field . ':' . implode( 'OR', $terms ) . ')';
     743                        $multi_query[] = '(parent_' . $field . ':(' . implode( 'OR', $terms ) . '))';
    744744                    }
    745745                    $query[] = '(' . implode( 'OR', $multi_query ) . ')';
  • solr-power/trunk/readme.txt

    r2966102 r3076702  
    44Requires at least: 4.6
    55Requires PHP: 7.1
    6 Tested up to: 6.3
    7 Stable tag: 2.5.2
     6Tested up to: 6.5.2
     7Stable tag: 2.5.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    216216= Explicit Commit vs Autocommit =
    217217
    218 Once solr has sent the data to the solr server, solr must COMMIT the data to the index and adjust the index and relevancy ratings accordingly before that data can appear in search results. 
     218Once solr has sent the data to the solr server, solr must COMMIT the data to the index and adjust the index and relevancy ratings accordingly before that data can appear in search results.
    219219
    220220By default, Solr Search for WordPress has auto-commit disabled. The index is committed when the uncommitted item is two minutes old, or the cron runs. By default, the cron runs on the Pantheon platform every hour.
     
    235235
    236236== Changelog ==
     237
     238= 2.5.3 (April 24, 2024) =
     239* Fixes a very old bug that would cause tax queries to be built incorrectly. [[#622](https://github.com/pantheon-systems/solr-power/pull/622)] (props [@offshorealert](https://wordpress.org/support/users/offshorealert/))
    237240
    238241= 2.5.2 (September 12, 2023) =
  • solr-power/trunk/solr-power.php

    r2966102 r3076702  
    33 * Plugin Name: Solr Power
    44 * Description: Allows WordPress sites to index and search content with ApacheSolr.
    5  * Version: 2.5.2
     5 * Version: 2.5.3
    66 * Author: Pantheon
    77 * Author URI: http://pantheon.io
     
    1111 **/
    1212
    13 define( 'SOLR_POWER_VERSION', '2.5.2' );
     13define( 'SOLR_POWER_VERSION', '2.5.3' );
    1414
    1515/**
  • solr-power/trunk/vendor/autoload.php

    r2966102 r3076702  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInita2efeaf070e3849370a78199e4e01539::getLoader();
     25return ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d::getLoader();
  • solr-power/trunk/vendor/composer/autoload_real.php

    r2966102 r3076702  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInita2efeaf070e3849370a78199e4e01539
     5class ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInita2efeaf070e3849370a78199e4e01539', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInita2efeaf070e3849370a78199e4e01539', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInita2efeaf070e3849370a78199e4e01539::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit9971da5872d73092e02191e0753f5a2d::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • solr-power/trunk/vendor/composer/autoload_static.php

    r2966102 r3076702  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInita2efeaf070e3849370a78199e4e01539
     7class ComposerStaticInit9971da5872d73092e02191e0753f5a2d
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    370370    {
    371371        return \Closure::bind(function () use ($loader) {
    372             $loader->prefixLengthsPsr4 = ComposerStaticInita2efeaf070e3849370a78199e4e01539::$prefixLengthsPsr4;
    373             $loader->prefixDirsPsr4 = ComposerStaticInita2efeaf070e3849370a78199e4e01539::$prefixDirsPsr4;
    374             $loader->classMap = ComposerStaticInita2efeaf070e3849370a78199e4e01539::$classMap;
     372            $loader->prefixLengthsPsr4 = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$prefixLengthsPsr4;
     373            $loader->prefixDirsPsr4 = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$prefixDirsPsr4;
     374            $loader->classMap = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$classMap;
    375375
    376376        }, null, ClassLoader::class);
  • solr-power/trunk/vendor/composer/installed.php

    r2966102 r3076702  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '3ba5ee896766bfe263a394d9d749ce5ce3db6709',
     6        'reference' => '4eb7e163f188620d88ed057f6f2761a5f11bf6c3',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '3ba5ee896766bfe263a394d9d749ce5ce3db6709',
     16            'reference' => '4eb7e163f188620d88ed057f6f2761a5f11bf6c3',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.