Weaviate v0.22.11 Release Notes

Release Date: 2020-06-24 // almost 4 years ago

  • ๐Ÿณ Docker image/tag: semitechnologies/weaviate:0.22.11
    ๐Ÿ‘€ See also: example docker compose files in English, German, Dutch, Italian and Czech.

    ๐Ÿ’ฅ Breaking Changes

    none

    ๐Ÿ†• New Features

    โž• Add _nearestNeighbors underscore prop to REST and GraphQL API (#1169)
    Display information about the neighboring concepts of an object in a single (GET /v1/{kind}/{id}) or list (GET /v1/{kinds}) REST response by setting the ?include=_nearestNeighbors property. The same can be achieved in a GraphQL Get {} query by requesting the _nearestNeighbors{} prop alongside the schema-defined props.

    Note: Displaying nearest neighbors leads to n additional searches, where n is the number of search results. Use carefully in high-load situations or scale up Weaviate accordingly.

    ๐Ÿ›  Fixes

    • Missing classification distances in meta/_classification responses (#1176)
      ๐Ÿš€ Release 0.22.8 introduced an issue where the kNN-classification distances were sometimes not shown when the ?meta=true (deprecated) or the ?include=_classification flags were set. This release fixes this issue.