|
|
|
|
Changelog for ruby3.1-rubygem-thinking-sphinx-5.6.0-lp156.1.2.x86_64.rpm :
* Tue Jul 16 2024 Dan Čermák - ## 5.6.0 - 2024-07-07 [#]## Added * Support for Manticore 6.0 ([#1242](https://github.com/pat/thinking-sphinx/pull/1242)) * `sphinx`-prefixed search methods, in case the standard `search` is overridden from something unrelated. ([#1265](https://github.com/pat/thinking-sphinx/pull/1265)) * `none` / `search_none` scopes that can be chained to searches and will return no results. * Added `ThinkingSphinx::Processor#sync` to synchronise updates/deletions based on a real-time index\'s scope, by AATTakostadinov in [AATT1258](https://github.com/pat/thinking-sphinx/pull/1258). [#]## Changed * Improved Rails 7.1 support, by AATTjdelstrother in [#1252](https://github.com/pat/thinking-sphinx/pull/1252). [#]## Fixed * Handle both SQL and RT indices correctly for inheritance column checks, by AATTakostadinov in [#1249](https://github.com/pat/thinking-sphinx/pull/1249). * Ensure tests and CI work with recent Manticore versions, by AATTjdelstrother in [#1263](https://github.com/pat/thinking-sphinx/pull/1263). * Use `rm -rf` to delete test and temporary directories (instead of `rm -r`). * Fri Nov 03 2023 Dan Čermák - ## 5.5.1 - 2022-12-31 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v5.5.1) [#]## Changed * Fixed total count of results in pagination information for Manticore 5.0+, by disabling the cutoff limit. ([#1239](https://github.com/pat/thinking-sphinx/pull/1239)). [#]# 5.5.0 - 2022-12-30 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v5.5.0) [#]## Added * ThinkingSphinx::Processor, a public interface to perform index-related operations on model instances or model name/id combinations. In collaboration with AATTakostadinov ([#1215](https://github.com/pat/thinking-sphinx/issues/1215)). [#]## Changed * Confirmed support by testing against Ruby 3.1 and 3.2 by AATTjdelStrother ([#1237](https://github.com/pat/thinking-sphinx/pull/1237)). [#]## Fixed * Fix YAML loading, by AATTaepyornis ([#1217](https://github.com/pat/thinking-sphinx/pull/1217)). * Further fixes for File.exist? instead of the deprecated File.exists?, by AATTfunsim ([#1221](https://github.com/pat/thinking-sphinx/pull/1221)) and AATTgraaf ([1233](https://github.com/pat/thinking-sphinx/pull/1233)). * Treat unknown column errors as QueryErrors, so retrying the query occurs automatically. * Fix MariaDB error handling. * Tue Jan 25 2022 Stephan Kulow updated to version 5.4.0 see installed CHANGELOG.markdown [#]# 5.4.0 - 2021-12-21 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v5.4.0) [#]## Added * Rails 7 support, including contributions from AATTanthonyshull in [#1205](https://github.com/pat/thinking-sphinx/pull/1205). [#]## Changed * Confirmed support by testing against Manticore 4.0 and Sphinx 3.4. [#]## Fixed * Include instance_exec in ThinkingSphinx::Search::CORE_METHODS by AATTjdelStrother in [#1210](https://github.com/pat/thinking-sphinx/pull/1210). * Use File.exist? instead of the deprecated File.exists? ([#1211](https://github.com/pat/thinking-sphinx/issues/1211)). [#]# 5.3.0 - 2021-08-19 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v5.3.0) [#]## Changed * StaleIdsExceptions now include a URL in their error message with recommendations on how to resolve the problem. * Fire real-time callbacks on `after_commit` (including deletions) to ensure data is fully persisted to the database before updating Sphinx. More details in [#1204](https://github.com/pat/thinking-sphinx/pull/1204). [#]## Fixed * Ensure Thinking Sphinx\'s ActiveRecord components are loaded by either Rails\' after_initialise hook or ActiveSupport\'s on_load notification, because the order of these two events are not consistent. * Remove `app/indices` from eager_load_paths in Rails 4.2 and 5, to match the behaviour in 6. [#]# 5.2.1 - 2021-08-09 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v5.2.1) [#]## Fixed * Ensure ActiveRecord components are loaded for rake tasks, but only after the Rails application has initialised. More details in [#1199](https://github.com/pat/thinking-sphinx/issues/1199). * Thu Jun 24 2021 Stephan Kulow updated to version 5.2.0 see installed CHANGELOG.markdown [#]# 5.2.0 - 2021-06-12 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v5.2.0) [#]## Added * Confirmed support for Ruby 3.0. * Orphaned records in real-time indices can now be cleaned up without running `rails ts:rebuild`. Disabled by default, can be enabled by setting `real_time_tidy` to true per environment in `config/thinking_sphinx.yml` (and will need `ts:rebuild` to restructure indices upon initial deploy). More details in [#1192](https://github.com/pat/thinking-sphinx/pull/1192). [#]## Fixed * Avoid loading ActiveRecord during Rails initialisation so app configuration can still have an impact ([AATTjdelStrother](https://github.com/jdelStrother) in [#1194](https://github.com/pat/thinking-sphinx/pull/1194)). * Remove `app/indices` (in both the Rails app and engines) from Rails\' eager load paths, which was otherwise leading to indices being loaded more than once. (See [#1191](https://github.com/pat/thinking-sphinx/issues/1191) and [#1195](https://github.com/pat/thinking-sphinx/issues/1195)). * Wed Jan 20 2021 Stephan Kulow updated to version 5.1.0 see installed CHANGELOG.markdown [#]# 5.1.0 - 2020-12-28 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v5.1.0) [#]## Added * Support for Sphinx v3.3 and Manticore v3.5. * Support for Rails 6.1 (via [joiner](https://rubygems.org/gems/joiner) v0.6.0). [#]## Changed * `enable_star` is no longer available as a configuration option, as it\'s been enabled by default in Sphinx since v2.2.2, and is no longer allowed in Sphinx v3.3.1. * All timestamp attributes are now considered plain integer values from Sphinx\'s perspective. Sphinx was already expecting integers, but since Sphinx v3.3.1 it doesn\'t recognise timestamps as a data type. There is no functional difference with this change - Thinking Sphinx was always converting times to their UNIX epoch integer values. * Allow configuration of the maximum statement length ([AATTkalsan](https://github.com/kalsan) in [#1179](https://github.com/pat/thinking-sphinx/pull/1179)). * Respect `:path` values to navigate associations for Thinking Sphinx callbacks on SQL-backed indices. Discussed in [#1182](https://github.com/pat/thinking-sphinx/issues/1182). [#]## Fixed * Don\'t attempt to update delta flags on frozen model instances. * Fri Sep 25 2020 Stephan Kulow updated to version 5.0.0 see installed CHANGELOG.markdown [#]# 5.0.0 - 2020-07-20 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v5.0.0) [#]## Added * New interface for adding callbacks to indexed models (which is no longer done automatically). Discussed in [#1173](https://github.com/pat/thinking-sphinx/issues/1173) and committed via [#1175](https://github.com/pat/thinking-sphinx/pull/1175). * *This is a breaking change - you will need to add these callbacks. See [the full release notes](https://github.com/pat/thinking-sphinx/releases/tag/v5.0.0) for examples. * * * Fields and attributes can be overriden - whichever\'s defined last with a given name is the definition that\'s used. This is an edge case, but useful if you want to override any of the default fields/indices. (Requested by AATTkalsan in [#1172](https://github.com/pat/thinking-sphinx/issues/1172).) * Custom index_set_class implementations can now expect the `:instances` option to be set alongside `:classes`, which is useful in cases to limit the indices returned if you\'re splitting index data for given classes/models into shards. (Introduced in PR [#1171](https://github.com/pat/thinking-sphinx/pull/1171) after discussions with AATTlunaru in [#1166](https://github.com/pat/thinking-sphinx/issues/1166).) [#]## Changed * Sphinx 2.2.11 or newer is required, or Manticore 2.8.2 or newer. * Ruby 2.4 or newer is required. * Rails 4.2 or newer is required. * Remove internal uses of `send`, replaced with `public_send` as that\'s available in all supported Ruby versions. * Deletion statements are simplified by avoiding the need to calculate document keys/offsets (AATTnjakobsen via [#1134](https://github.com/pat/thinking-sphinx/issues/1134)). * Real-time data is deleted before replacing it, to avoid duplicate data when offsets change (AATTnjakobsen via [#1134](https://github.com/pat/thinking-sphinx/issues/1134)). * Use `reference_name` as per custom `index_set_class` definitions. Previously, the class method was called on `ThinkingSphinx::IndexSet` even if a custom subclass was configured. (As per discussinos with AATTkalsan in [#1172](https://github.com/pat/thinking-sphinx/issues/1172).) * Mon Feb 10 2020 Stephan Kulow - updated to version 4.4.1 see installed CHANGELOG.markdown [#]# 4.4.1 - 2019-08-23 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v4.4.1) [#]## Changed * Automatically remove `app/indices` from Zeitwerk\'s autoload paths in Rails 6.0 onwards (if using Zeitwerk as the autoloader). [#]# 4.4.0 - 2019-08-21 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v4.4.0) [#]## Added * Confirmed Rails 6.0 support. * Added ability to have custom real-time index processors (which handles all indices) and populators (which handles a particular index). These are available to get/set via `ThinkingSphinx::RealTime.processor` and `ThinkingSphinx::RealTime.populator` (and discussed in more detail in the [release notes](https://github.com/pat/thinking-sphinx/releases/tag/v4.4.0)). [#]## Changed * Improve failure message when tables don\'t exist for models associated with Sphinx indices ([Kiril Mitov](https://github.com/thebravoman) in [#1139](https://github.com/pat/thinking-sphinx/pull/1139)). [#]## Fixed * Injected has-many/habtm collection search calls as default extensions to associations in Rails 5+, as it\'s a more reliable approach in Rails 6.0.0. * Fri Jul 19 2019 Stephan Kulow - updated to version 4.3.2 see installed CHANGELOG.markdown [#]# 4.3.2 - 2019-07-10 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v4.3.2) [#]## Fixed * Reverted loading change behaviour from v4.3.1 for Rails v5 ([Eduardo J.](https://github.com/eduardoj) in [#1138](https://github.com/pat/thinking-sphinx/pull/1138)). [#]# 4.3.1 - 2019-06-27 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v4.3.1) [#]## Fixed * Fixed loading of index files to work with Rails 6 and Zeitwerk ([#1137](https://github.com/pat/thinking-sphinx/issues/1137)). [#]# 4.3.0 - 2019-05-18 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v4.3.0) [#]## Added * Allow overriding of Sphinx\'s running state, which is useful when Sphinx commands are interacting with a remote Sphinx daemon. As per discussions in [#1131](https://github.com/pat/thinking-sphinx/pull/1131). * Allow skipping of directory creation, as per discussions in [#1131](https://github.com/pat/thinking-sphinx/pull/1131). [#]## Fixed * Use ActiveSupport\'s lock monitor where possible (Rails 5.1.5 onwards) to avoid database deadlocks. Essential investigation by [Jonathan del Strother](https://github.com/jdelstrother) ([#1132](https://github.com/pat/thinking-sphinx/pull/1132)). * Allow facet searching on distributed indices ([#1135](https://github.com/pat/thinking-sphinx/pull/1132)). * Thu Mar 14 2019 Stephan Kulow - updated to version 4.2.0 see installed CHANGELOG.markdown [#]# 4.2.0 - 2019-03-09 [#]## Added * Allow changing the default encoding for MySQL database connections from utf8 to something else via the `mysql_encoding` setting in `config/thinking_sphinx.yml`. In the next significant release, the default will change to utf8mb4 (which is supported in MySQL 5.5.3 and newer). * Added Rails 6.0 and Manticore 2.8 to the test matrix. [#]## Changed * Use Arel\'s SQL literals for generated order clauses, to avoid warnings from Rails 6. [#]## Fixed * Fix usage of alternative primary keys in update and deletion callbacks and attribute access. * Ensure `respond_to?` takes Sphinx scopes into account ([Jonathan del Strother](https://github.com/jdelstrother) in [#1124](https://github.com/pat/thinking-sphinx/pull/1124)). * Add `:excerpts` as a known option for search requests. * Fix depolymorphed association join construction with Rails 6.0.0.beta2. * Reset ThinkingSphinx::Configuration\'s cached values when Rails reloads, to avoid holding onto stale references to ActiveRecord models ([#1125](https://github.com/pat/thinking-sphinx/issues/1125)). * Don\'t join against associations in `sql_query` if they\'re only used by query-sourced properties ([Hans de Graaff](https://github.com/graaff) in [#1127](https://github.com/pat/thinking-sphinx/pull/1127)). * Mon Jan 14 2019 Stephan Kulow - updated to version 4.1.0 see installed CHANGELOG.markdown [#]# 4.1.0 - 2018-12-28 [Release Notes](https://github.com/pat/thinking-sphinx/releases/tag/v4.1.0) [#]## Added * The `:sql` search option can now accept per-model settings with model names as keys. e.g. `ThinkingSphinx.search \"foo\", :sql => {\'Article\' => {:include => :user}}` (Sergey Malykh in [#1120](https://github.com/pat/thinking-sphinx/pull/1120)). [#]## Changed * Drop MRI 2.2 from the test matrix, and thus no longer officially supported (though the code will likely continue to work with 2.2 for a while). * Added MRI 2.6, Sphinx 3.1 and Manticore 2.7 to the test matrix. [#]## Fixed * Real-time indices now work with non-default integer primary keys (alongside UUIDs or other non-integer primary keys). * Tue Apr 10 2018 factory-autoAATTkulow.org- updated to version 4.0.0 HISTORY removed upstream * Fri Sep 29 2017 mdenizAATTsuse.com- updated to version 3.4.2 * [CHANGE] Allow use of deletion callbacks for rollback events. * [CHANGE] Remove extra deletion code in the Populator - it\'s also being done by the real-time rake interface. * [FIX] Real-time callback syntax for namespaced models accepts a string (as was already documented). * [FIX] Fix up logged warnings (and avoiding overwriting the existing warn method). * [FIX] Add missing search options to known values to avoid incorrect warnings. * Tue Aug 29 2017 mschnitzerAATTsuse.com- updated to version 3.4.1 see installed HISTORY 2017-08-29: 3.4.1 * [CHANGE] Treat \"Lost connection to MySQL server\" as a connection error (Manuel Schnitzer). * [FIX] Index normalisation will now work even when index model tables don\'t exist. 2017-08-28: 3.4.0 * [CHANGE] Delta callback logic now prioritises checking for high level settings rather than model changes. * [FIX] Index normalisation now occurs consistently, and removes unneccesary sphinx_internal_class_name fields from real-time indices. * [FEATURE] Rake tasks are now unified, so the original tasks will operate on real-time indices as well. * [FEATURE] Output warnings when unknown options are used in search calls. * [CHANGE] Allow for unsaved records when calculating document ids (and return nil). * [CHANGE] Display SphinxQL deletion statements in the log. * [CHANGE] Add support for Ruby\'s frozen string literals feature. * [FIX] Fix Sphinx connections in JRuby. * [FIX] Fix long SphinxQL query handling in JRuby. * [FEATURE] Allow generation of a single real-time index (Tim Brown). * [FIX] Always close the SphinxQL connection if Innertube\'s asking (AATTcmaion). * [CHANGE] Use saved_changes if it\'s available (in Rails 5.1+). * [FEATURE] Automatically use UTF8 in Sphinx for encodings that are extensions of UTF8. * [FIX] Get bigint primary keys working in Rails 5.1. * [CHANGE] Set a default connection timeout of 5 seconds. * [FIX] Fix handling of attached starts of Sphinx (via Henne Vogelsang). * [FIX] Fix multi-field conditions. * [FEATURE] Basic type checking for attribute filters. * [CHANGE] Don\'t search multi-table inheritance ancestors. * [FIX] Use the base class of STI models for polymorphic join generation (via Andrés Cirugeda). * [CHANGE] Handle non-computable queries as parse errors. * [FIX] Ensure ts:index now respects rake silent/quiet flags. Remove nodetach.patch: * The code was dropped by the author. Remove SLE-11-mysql-error.patch: * Implemented in the source code (https://github.com/pat/thinking-sphinx/commit/937ffa04ba4f21acd90f1047e6840df6d3eb3723) * Mon Mar 13 2017 hvogelAATTsuse.com- Add a patch from git, fixing foreground starting * Tue Dec 13 2016 cooloAATTsuse.com- updated to version 3.3.0 see installed HISTORY 2016-12-13: 3.3.0 * [FEATURE] Real-time callbacks can now be used with after_commit hooks if that\'s preferred over after_save. * [CHANGE] Only toggle the delta value if the record has changed or is new (rather than on every single save call). * [CHANGE] Delta indexing is now quiet by default (rather than verbose). * [FIX] Explicit source method in the SQLQuery Builder instead of relying on method missing, thus avoiding any global methods named \'source\' (Asaf Bartov). * [CHANGE] Use Riddle\'s reworked command interface for interacting with Sphinx\'s command-line tools. * [CHANGE] Respect Rake\'s quiet and silent flags for the Thinking Sphinx rake tasks. * [CHANGE] ts:start and ts:stop tasks default to verbose. * [FIX] Load indices before deleting index files, to ensure the files are actually found and deleted. * [FIX] Avoid loading ActiveRecord earlier than necessary. This avoids loading Rails out of order, which caused problems with Rails 5. * [FEATURE] Allow for custom batch sizes when populating real-time indices. * [FIX] Handle queries that are too long for Sphinx. * [FIX] Improve Rails 5 / JRuby support. * [CHANGE] Sort engine paths for loading indices to ensure they\'re consistent. * [CHANGE] Custom exception class for invalid database adapters. * [FIX] Fixed handling of multiple field tokens in wildcarding logic. * [CHANGE] Memoize the default primary keys per context. * [FIX] Ensure custom primary key columns are handled consistently (Julio Monteiro). * Sat May 14 2016 cooloAATTsuse.com- updated to version 3.2.0 see installed HISTORY 2016-05-13: 3.2.0 * [FIX] Ensure SQL table aliases are reliable for SQL-backed index queries. * [FEATURE] Add JSON attribute support for real-time indices. * [FEATURE] Add ability to disable *all * Sphinx-related callbacks via ThinkingSphinx::Callbacks.suspend! and ThinkingSphinx::Callbacks.resume!. Particularly useful for unit tests. * [FEATURE] Add native OutOfBoundsError for search queries outside the pagination bounds. * [CHANGE] Improved error messages for duplicate property names and missing columns. * [FIX] Fixed mysql2 compatibility for memory references (Roman Usherenko). * [FIX] Fixed JRuby compatibility with camelCase method names (Brandon Dewitt). * [FEATURE] Support MySQL SSL options on a per-index level (AATTarrtchiu). * [CHANGE] Don\'t populate search results when requesting just the count values (Andrew Roth). * [CHANGE] Reset delta column before core indexing begins (reverting behaviour introduced in 3.1.0). See issue #958 for further discussion. * [FEATURE] Allow for different indexing strategies (e.g. all at once, or one by one). * [FIX] Fix stale id handling for multiple search contexts (Jonathan del Strother). * [CHANGE] Use Sphinx\'s bulk insert ability (Chance Downs). * [CHANGE] Reduce memory/object usage for model references (Jonathan del Strother). * [CHANGE] Disable deletion callbacks when real-time indices are in place and all other real-time callbacks are disabled. * [FIX] Handle quoting of namespaced tables (Roman Usherenko). * [FIX] Make preload_indices thread-safe. * [FIX] Improved handling of marshalled/demarshalled search results. * [FEATURE] Allow rand_seed as a select option (Mattia Gheda). * [FEATURE] Add primary_key option for index definitions (Nathaneal Gray). * [FEATURE] Add ability to start searchd in the foreground (Andrey Novikov). * [CHANGE] Only use ERB to parse the YAML file if ERB is loaded. * Wed Mar 23 2016 olafAATTaepfle.de- Force fixed timestamps for patched gems (bsc#916047) * Tue Jun 02 2015 cooloAATTsuse.com- updated to version 3.1.4 see installed HISTORY 2015-06-01: 3.1.4 * [FIX] Kaminari expects prev_page to be available. * [CHANGE] Add a contributor code of conduct. * [FEATURE] Add JSON as a Sphinx type for attributes (Daniel Vandersluis). * [CHANGE] Remove polymorphic association and HABTM query support (when related to Thinking Sphinx) when ActiveRecord 3.2 is involved. * [FIX] Don\'t try to delete guard files if they don\'t exist (AATTexAspArk). * [FEATURE] minimal_group_by? can now be set in config/thinking_sphinx.yml to automatically apply to all index definitions. * [FIX] Handle database settings reliably, now that ActiveRecord 4.2 uses strings all the time. * [FIX] More consistent with escaping table names. * [CHANGE] Remove default charset_type - no longer required for Sphinx 2.2. * [FIX] Bug fix for association creation (with polymophic fields/attributes). * [CHANGE] Removing sql_query_info setting, as it\'s no longer used by Sphinx (nor is it actually used by Thinking Sphinx). * Mon Feb 09 2015 cooloAATTsuse.com- updated to version 3.1.3 * [CHANGE] Log excerpt SphinxQL queries just like the search queries. * [CHANGE] Load Railtie if Rails::Railtie is defined, instead of just Rails (Andrew Cone). * [CHANGE] Convert raw Sphinx results to an array when querying (Bryan Ricker). * [FIX] Generate de-polymorphised associations properly for Rails 4.2 * [FIX] Use reflect_on_association instead of reflections, to stick to the public ActiveRecord::Base API. * [FIX] Don\'t load ActiveRecord early - fixes a warning in Rails 4.2. * [FEATURE] Allow for custom offset references with the :offset_as option - thus one model across many schemas with Apartment can be treated differently. * [FEATURE] Allow for custom IndexSet classes. * [FIX] Don\'t double-up on STI filtering, already handled by Rails. * [CHANGE] Add bigint support for real-time indices, and use bigints for the sphinx_internal_id attribute (mapped to model primary keys) (Chance Downs). 2014-11-04: 3.1.2 * [CHANGE] regenerate task now only deletes index files for real-time indices. * [CHANGE] Raise an exception when a populated search query is modified (as it can\'t be requeried). * [FEATURE] Allow for custom paths for index files using :path option in the ThinkingSphinx::Index.define call. * [FIX] Ensure indexing guard files are removed when an exception is raised (Bobby Uhlenbrock). * [FIX] Don\'t update real-time indices for objects that are not persisted (Chance Downs). * [FEATURE] Allow the binlog path to be an empty string (Bobby Uhlenbrock). * [FIX] Use STI base class for polymorphic association replacements. * [FIX] Convert database setting keys to symbols for consistency with Rails (AATTdimko). * [FIX] Field weights and other search options are now respected from set_property. * [CHANGE] Log indices that aren\'t processed due to guard files existing. * [FEATURE] Add status task to report on whether Sphinx is running. * [FIX] Models with more than one index have correct facet counts (using Sphinx 2.1.x or newer). * [FEATURE] Real-time index callbacks can take a block for dynamic scoping. * [FIX] Some association fixes for Rails 4.1. * [CHANGE] Paginate records by 1000 results at a time when flagging as deleted. * [CHANGE] Default the Capistrano TS Rails environment to use rails_env, and then fall back to stage. * [CHANGE] rebuild task uses clear between stopping the daemon and indexing. * [FIX] Clear connections when raising connection errors. * [FEATURE] Allow casting of document ids pre-offset as bigints (via big_documents_id option). * Tue Oct 21 2014 adrianAATTsuse.de- support SLES 11 mysql error string * Mon Oct 13 2014 adrianAATTsuse.de- adapt to new rubygem packaging style
|
|
|