Weaviate v1.34.2 adds a /debug/config endpoint to inspect live node configuration and makes file replication chunk size configurable.
$ git clone --branch v1.34.2 https://github.com/weaviate/weaviate.git # already have the repo? check out this version: $ git checkout v1.34.2
$ curl -s http://<weaviate-host>:8080/debug/config | jq .
- ›Adds
GET /debug/configendpoint to dump the current node configuration at runtime, with sensitive data automatically omitted. - ›Makes file chunk size configurable for the file replication service.
- ›Adds support for the
knowledgesetting in the Contextual AI API module integration.
1 more release in this issue · 2025-11-30
Weaviate v1.33.7 adds a /debug/config endpoint to inspect live node configuration without exposing sensitive data.
$ git clone --branch v1.33.7 https://github.com/weaviate/weaviate.git # already have the repo? check out this version: $ git checkout v1.33.7
$ curl http://localhost:8080/debug/config - ›Adds
GET /debug/configendpoint to dump the running node's configuration at runtime, with sensitive data automatically redacted.