Skip to content

Commit

Permalink
changelog and embedded increase
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkkul committed Jul 19, 2024
1 parent 28871f8 commit 640db5c
Show file tree
Hide file tree
Showing 2 changed files with 13 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
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 640db5c

Please sign in to comment.