Changeset 3076702
- Timestamp:
- 04/25/2024 12:01:42 AM (2 years ago)
- Location:
- solr-power
- Files:
-
- 16 edited
- 1 copied
-
tags/2.5.3 (copied) (copied from solr-power/trunk)
-
tags/2.5.3/CHANGELOG.md (modified) (1 diff)
-
tags/2.5.3/includes/class-solrpower-wp-query.php (modified) (1 diff)
-
tags/2.5.3/readme.txt (modified) (3 diffs)
-
tags/2.5.3/solr-power.php (modified) (2 diffs)
-
tags/2.5.3/vendor/autoload.php (modified) (1 diff)
-
tags/2.5.3/vendor/composer/autoload_real.php (modified) (2 diffs)
-
tags/2.5.3/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/2.5.3/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/includes/class-solrpower-wp-query.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/solr-power.php (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
solr-power/tags/2.5.3/CHANGELOG.md
r2966102 r3076702 1 1 ## 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/)) 2 5 3 6 ### 2.5.2 (September 12, 2023) ### -
solr-power/tags/2.5.3/includes/class-solrpower-wp-query.php
r2943905 r3076702 741 741 $multi_query[] = '(' . $field . ':(' . implode( 'OR', $terms ) . '))'; 742 742 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 ) . '))'; 744 744 } 745 745 $query[] = '(' . implode( 'OR', $multi_query ) . ')'; -
solr-power/tags/2.5.3/readme.txt
r2966102 r3076702 4 4 Requires at least: 4.6 5 5 Requires PHP: 7.1 6 Tested up to: 6. 37 Stable tag: 2.5. 26 Tested up to: 6.5.2 7 Stable tag: 2.5.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 216 216 = Explicit Commit vs Autocommit = 217 217 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. 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. 219 219 220 220 By 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. … … 235 235 236 236 == 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/)) 237 240 238 241 = 2.5.2 (September 12, 2023) = -
solr-power/tags/2.5.3/solr-power.php
r2966102 r3076702 3 3 * Plugin Name: Solr Power 4 4 * Description: Allows WordPress sites to index and search content with ApacheSolr. 5 * Version: 2.5. 25 * Version: 2.5.3 6 6 * Author: Pantheon 7 7 * Author URI: http://pantheon.io … … 11 11 **/ 12 12 13 define( 'SOLR_POWER_VERSION', '2.5. 2' );13 define( 'SOLR_POWER_VERSION', '2.5.3' ); 14 14 15 15 /** -
solr-power/tags/2.5.3/vendor/autoload.php
r2966102 r3076702 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit a2efeaf070e3849370a78199e4e01539::getLoader();25 return ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d::getLoader(); -
solr-power/tags/2.5.3/vendor/composer/autoload_real.php
r2966102 r3076702 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit a2efeaf070e3849370a78199e4e015395 class ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit a2efeaf070e3849370a78199e4e01539', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit a2efeaf070e3849370a78199e4e01539', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit a2efeaf070e3849370a78199e4e01539::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit9971da5872d73092e02191e0753f5a2d::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
solr-power/tags/2.5.3/vendor/composer/autoload_static.php
r2966102 r3076702 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit a2efeaf070e3849370a78199e4e015397 class ComposerStaticInit9971da5872d73092e02191e0753f5a2d 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 370 370 { 371 371 return \Closure::bind(function () use ($loader) { 372 $loader->prefixLengthsPsr4 = ComposerStaticInit a2efeaf070e3849370a78199e4e01539::$prefixLengthsPsr4;373 $loader->prefixDirsPsr4 = ComposerStaticInit a2efeaf070e3849370a78199e4e01539::$prefixDirsPsr4;374 $loader->classMap = ComposerStaticInit a2efeaf070e3849370a78199e4e01539::$classMap;372 $loader->prefixLengthsPsr4 = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$prefixLengthsPsr4; 373 $loader->prefixDirsPsr4 = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$prefixDirsPsr4; 374 $loader->classMap = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$classMap; 375 375 376 376 }, null, ClassLoader::class); -
solr-power/tags/2.5.3/vendor/composer/installed.php
r2966102 r3076702 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 3ba5ee896766bfe263a394d9d749ce5ce3db6709',6 'reference' => '4eb7e163f188620d88ed057f6f2761a5f11bf6c3', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 3ba5ee896766bfe263a394d9d749ce5ce3db6709',16 'reference' => '4eb7e163f188620d88ed057f6f2761a5f11bf6c3', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
solr-power/trunk/CHANGELOG.md
r2966102 r3076702 1 1 ## 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/)) 2 5 3 6 ### 2.5.2 (September 12, 2023) ### -
solr-power/trunk/includes/class-solrpower-wp-query.php
r2943905 r3076702 741 741 $multi_query[] = '(' . $field . ':(' . implode( 'OR', $terms ) . '))'; 742 742 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 ) . '))'; 744 744 } 745 745 $query[] = '(' . implode( 'OR', $multi_query ) . ')'; -
solr-power/trunk/readme.txt
r2966102 r3076702 4 4 Requires at least: 4.6 5 5 Requires PHP: 7.1 6 Tested up to: 6. 37 Stable tag: 2.5. 26 Tested up to: 6.5.2 7 Stable tag: 2.5.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 216 216 = Explicit Commit vs Autocommit = 217 217 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. 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. 219 219 220 220 By 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. … … 235 235 236 236 == 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/)) 237 240 238 241 = 2.5.2 (September 12, 2023) = -
solr-power/trunk/solr-power.php
r2966102 r3076702 3 3 * Plugin Name: Solr Power 4 4 * Description: Allows WordPress sites to index and search content with ApacheSolr. 5 * Version: 2.5. 25 * Version: 2.5.3 6 6 * Author: Pantheon 7 7 * Author URI: http://pantheon.io … … 11 11 **/ 12 12 13 define( 'SOLR_POWER_VERSION', '2.5. 2' );13 define( 'SOLR_POWER_VERSION', '2.5.3' ); 14 14 15 15 /** -
solr-power/trunk/vendor/autoload.php
r2966102 r3076702 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit a2efeaf070e3849370a78199e4e01539::getLoader();25 return ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d::getLoader(); -
solr-power/trunk/vendor/composer/autoload_real.php
r2966102 r3076702 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit a2efeaf070e3849370a78199e4e015395 class ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit a2efeaf070e3849370a78199e4e01539', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 29 spl_autoload_unregister(array('ComposerAutoloaderInit a2efeaf070e3849370a78199e4e01539', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInit9971da5872d73092e02191e0753f5a2d', 'loadClassLoader')); 30 30 31 31 require __DIR__ . '/autoload_static.php'; 32 call_user_func(\Composer\Autoload\ComposerStaticInit a2efeaf070e3849370a78199e4e01539::getInitializer($loader));32 call_user_func(\Composer\Autoload\ComposerStaticInit9971da5872d73092e02191e0753f5a2d::getInitializer($loader)); 33 33 34 34 $loader->register(true); -
solr-power/trunk/vendor/composer/autoload_static.php
r2966102 r3076702 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit a2efeaf070e3849370a78199e4e015397 class ComposerStaticInit9971da5872d73092e02191e0753f5a2d 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 370 370 { 371 371 return \Closure::bind(function () use ($loader) { 372 $loader->prefixLengthsPsr4 = ComposerStaticInit a2efeaf070e3849370a78199e4e01539::$prefixLengthsPsr4;373 $loader->prefixDirsPsr4 = ComposerStaticInit a2efeaf070e3849370a78199e4e01539::$prefixDirsPsr4;374 $loader->classMap = ComposerStaticInit a2efeaf070e3849370a78199e4e01539::$classMap;372 $loader->prefixLengthsPsr4 = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$prefixLengthsPsr4; 373 $loader->prefixDirsPsr4 = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$prefixDirsPsr4; 374 $loader->classMap = ComposerStaticInit9971da5872d73092e02191e0753f5a2d::$classMap; 375 375 376 376 }, null, ClassLoader::class); -
solr-power/trunk/vendor/composer/installed.php
r2966102 r3076702 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 3ba5ee896766bfe263a394d9d749ce5ce3db6709',6 'reference' => '4eb7e163f188620d88ed057f6f2761a5f11bf6c3', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 3ba5ee896766bfe263a394d9d749ce5ce3db6709',16 'reference' => '4eb7e163f188620d88ed057f6f2761a5f11bf6c3', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.