searchkit

Search UI for Elasticsearch & Opensearch. Compatible with Algolia's Instantsearch and Autocomplete components. React & Vue support

APACHE-2.0 License

Downloads
162K
Stars
4.7K
Committers
64

Bot releases are visible (Hide)

searchkit - @searchkit/[email protected]

Published by joemcelroy almost 2 years ago

What's Changed

  • Debug mode support: Able to emit elasticsearch query
  • Better Error Messaging with connecting to Elasticsearch

Full Changelog: https://github.com/searchkit/searchkit/compare/@searchkit/[email protected]...@searchkit/[email protected]

searchkit - @searchkit/[email protected]

Published by joemcelroy almost 2 years ago

searchkit - @searchkit/[email protected]

Published by joemcelroy almost 2 years ago

What's Changed

Full Changelog: https://github.com/searchkit/searchkit/compare/v3.0.0...@searchkit/[email protected]

searchkit - @searchkit/[email protected]

Published by joemcelroy almost 2 years ago

What's Changed

Full Changelog: https://github.com/searchkit/searchkit/compare/v3.0.0...@searchkit/[email protected]

searchkit - v3.0.0

Published by github-actions[bot] about 2 years ago

searchkit - v3.0.0-canary.58

Published by github-actions[bot] over 2 years ago

searchkit - Release 57: Elastic Cloud Id Support

Published by github-actions[bot] over 2 years ago

searchkit - R56

Published by github-actions[bot] over 2 years ago

What's Changed

Full Changelog: https://github.com/searchkit/searchkit/compare/v3.0.0-canary.55...v3.0.0-canary.56

searchkit - r55 release

Published by github-actions[bot] over 2 years ago

searchkit - R54

Published by github-actions[bot] over 2 years ago

searchkit - Source Fields Release

Published by github-actions[bot] over 2 years ago

searchkit - Allow default sorting option

Published by github-actions[bot] over 2 years ago

fixes #1093

Allows a default sort option to be used when no sort is specified.

sortOptions: [
    {id: 'relevance', label: 'Relevance', field: '_score'},
    {
      id: 'released',
      label: 'Recent Releases',
      field: {released: 'desc'},
      defaultOption: true,
    },
    {
      id: 'title-released',
      label: 'Recent titles',
      field: [{released: 'desc'}, {title: 'desc'}],
    },
    {
      id: 'multiple_sort',
      label: 'Multiple sort',
      field: [
        {post_date: {order: 'asc'}},
        'user',
        {name: 'desc'},
        {age: 'desc'},
        '_score',
      ],
    },
  ],```
searchkit - Sort order refinement facet

Published by github-actions[bot] over 2 years ago

searchkit - r50: Geo distance facet optional limits

Published by github-actions[bot] over 2 years ago

Allow from and to to be optional attribues for range.

       new GeoDistanceOptionsFacet({
          field: 'location',
          origin: '37.7749, -122.4194',
          unit: 'mi',
          ranges: [
            { to: 1000, label: '0 - 1000' },
            { to: 2000, label: '0 - 2000' },
            { from: 1000, to: 2000, label: '1000 - 2000' }
          ],
          label: 'location',
          identifier: 'location'
        }) 
searchkit - Searchkit SDK improvements

Published by github-actions[bot] over 2 years ago

  • remove @apollo/client dep in searchkit/client
  • add a hook in SDK for use in browser
searchkit - Searchkit SDK Release Fixes

Published by github-actions[bot] over 2 years ago

  • Example of Searchkit SDK being used within the browser, not using GraphQL, in examples/with-sdk
searchkit - Searchkit Release 47

Published by github-actions[bot] over 2 years ago

searchkit - #1040 Simplify logging out the Elasticsearch query via env flag

Published by github-actions[bot] almost 3 years ago

fixes #1040

searchkit - fix elasticsearch SDK version to 7.13 for opensearch compat

Published by github-actions[bot] about 3 years ago

short term fix to resolve issue when using opensearch