Skip to content

Commit 629aad3

Browse files
authored
Merge pull request #1186 from weaviate/changelog_v466
Changelog v4.6.7
2 parents ff87f2e + 640db5c commit 629aad3

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

docs/changelog.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
=========
33

4+
Version 4.6.7
5+
--------------
6+
7+
This patch version includes:
8+
9+
- Fix batching with references. Under some circumstances a reference could be added before its ``to``-object and the reference would be lost.
10+
- Fix node status for timed out nodes
11+
- 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
12+
- Support for custom rerankers and generative modules using ``Configure.Generative.custom()`` and ``Configure.Reranker.custom()``
13+
- Add support for kagome_kr tokenizer. Requires Weaviate 1.25.8
14+
- Increase default embedded version to 1.25.8
15+
416
Version 4.6.6
517
--------------
618

weaviate/collections/classes/config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ class Tokenization(str, Enum):
137137
Tokenize using GSE (for Chinese and Japanese).
138138
`TRIGRAM`
139139
Tokenize into trigrams.
140+
`KAGOME_KR`
141+
Tokenize using the 'Kagome' tokenizer and a Korean MeCab dictionary (for Korean).
140142
"""
141143

142144
WORD = "word"
@@ -145,6 +147,7 @@ class Tokenization(str, Enum):
145147
FIELD = "field"
146148
GSE = "gse"
147149
TRIGRAM = "trigram"
150+
KAGOME_KR = "kagome_kr"
148151

149152

150153
class GenerativeSearches(str, Enum):

weaviate/embedded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
class EmbeddedOptions:
3636
persistence_data_path: str = os.environ.get("XDG_DATA_HOME", DEFAULT_PERSISTENCE_DATA_PATH)
3737
binary_path: str = os.environ.get("XDG_CACHE_HOME", DEFAULT_BINARY_PATH)
38-
version: str = "1.23.7"
38+
version: str = "1.25.8"
3939
port: int = DEFAULT_PORT
4040
hostname: str = "127.0.0.1"
4141
additional_env_vars: Optional[Dict[str, str]] = None

0 commit comments

Comments
 (0)