Skip to content

Commit

Permalink
Merge pull request #1186 from weaviate/changelog_v466
Browse files Browse the repository at this point in the history
Changelog v4.6.7
  • Loading branch information
tsmith023 committed Jul 19, 2024
2 parents ff87f2e + 640db5c commit 629aad3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changelog
=========

Version 4.6.7
--------------

This patch version includes:

- Fix batching with references. Under some circumstances a reference could be added before its ``to``-object and the reference would be lost.
- Fix node status for timed out nodes
- Fix parsing the year 0. While weaviate allows to add dates with year zero ("0000-01-30T00:00:00Z"), the datetime library is based on the gregorian calendar which does not have a year zero. The client will years with 0 as the minimum date that is possible in datetime (``datetime.datetime(1, 1, 1, 0, 0)``) and emit a warning
- Support for custom rerankers and generative modules using ``Configure.Generative.custom()`` and ``Configure.Reranker.custom()``
- Add support for kagome_kr tokenizer. Requires Weaviate 1.25.8
- Increase default embedded version to 1.25.8

Version 4.6.6
--------------

Expand Down
3 changes: 3 additions & 0 deletions weaviate/collections/classes/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ class Tokenization(str, Enum):
Tokenize using GSE (for Chinese and Japanese).
`TRIGRAM`
Tokenize into trigrams.
`KAGOME_KR`
Tokenize using the 'Kagome' tokenizer and a Korean MeCab dictionary (for Korean).
"""

WORD = "word"
Expand All @@ -145,6 +147,7 @@ class Tokenization(str, Enum):
FIELD = "field"
GSE = "gse"
TRIGRAM = "trigram"
KAGOME_KR = "kagome_kr"


class GenerativeSearches(str, Enum):
Expand Down
2 changes: 1 addition & 1 deletion weaviate/embedded.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
class EmbeddedOptions:
persistence_data_path: str = os.environ.get("XDG_DATA_HOME", DEFAULT_PERSISTENCE_DATA_PATH)
binary_path: str = os.environ.get("XDG_CACHE_HOME", DEFAULT_BINARY_PATH)
version: str = "1.23.7"
version: str = "1.25.8"
port: int = DEFAULT_PORT
hostname: str = "127.0.0.1"
additional_env_vars: Optional[Dict[str, str]] = None
Expand Down

0 comments on commit 629aad3

Please sign in to comment.