All Versions
16
Latest Version
Avg Release Cycle
24 days
Latest Release
1220 days ago

Changelog History
Page 1

  • v3.6.16 Changes

    November 25, 2020

    sends hidden stories in the moderation endpoint

  • v3.6.15 Changes

    November 10, 2020

    ๐Ÿ›  Fix for date facet fields.

  • v3.6.14 Changes

    November 03, 2020

    โšก๏ธ Update the way that records get indexed and remove old implementation. Records now store their index_updated and index_updated_at flags and are intended on being processed by the provided index_processor to be indexed. This removes the complexity of the queue and the reliance on Sidekiq for indexing.

    ๐Ÿ”„ Changes required to get your indexing to work again:

    โž• Add these fields to your RecordSchema:

      model_field :index_updated, field_options: { type: Boolean }, index_fields: { index_updated: 1 }
      model_field :index_updated_at, field_options: { type: DateTime }, index_fields: { index_updated_at: 1 }
    

    โšก๏ธ Build an index for the index_updated field in your Mongo Database:

    db.records.createIndex({ index_updated: 1 }, { background: true })
    

    ๐Ÿ’Ž Then run the rake task that comes with the SJ Engine as a long running ruby process:

    bundle exec rake index_processor:run[1000]
    

    ๐Ÿ‘ท Note that this process is intended on running all the time, it is not a cronjob or a one off job. You can just start it up and leave it running. If you are not running on Kubernetes you should have something in place to restart it if it dies.

    ๐Ÿ†“ If you run into trouble, feel free to open an issue and we will get back to you as soon as we can.

  • v3.6.13 Changes

    October 29, 2020

    Treat facet integer fields as strings.
    Fix functionality for the exclude_filters_from_facets flag.

  • v3.6.12

    September 23, 2020
  • v3.6.11 Changes

    September 13, 2020

    Increase the number of threads that are used for facetting and allow it to be set through the environment variable SOLR_FACET_THREADS.

  • v3.6.10 Changes

    August 30, 2020

    Fix for users who do not have thumbnail_url or large_thumbnail_url defined in their RecordSchema where saving a record would break because of a callback which requires those fields.

  • v3.6.9 Changes

    August 26, 2020

    โž• Add default field and split on whitespace to the solr query.

  • v3.6.8 Changes

    August 06, 2020

    ๐Ÿ‘ท Increase the retry count for the DailyMetricsWorker while we are having issues with Solr timing out.

  • v3.6.7

    July 28, 2020