From aa8d0a36f100817a27af7d9891e51913c15c682f Mon Sep 17 00:00:00 2001 From: Josh <50523060+JosefAschauer@users.noreply.github.com> Date: Tue, 3 Feb 2026 03:24:51 +0100 Subject: [PATCH] Update default Docling version to 2.71.0 to resolve table parsing issues (#12952) ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- docker/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 60030dbe2..4fb5cbde3 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -207,7 +207,7 @@ function start_mcp_server() { function ensure_docling() { [[ "${USE_DOCLING}" == "true" ]] || { echo "[docling] disabled by USE_DOCLING"; return 0; } - DOCLING_PIN="${DOCLING_VERSION:-==2.58.0}" + DOCLING_PIN="${DOCLING_VERSION:-==2.71.0}" "$PY" -c "import importlib.util,sys; sys.exit(0 if importlib.util.find_spec('docling') else 1)" \ || uv pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --extra-index-url https://pypi.org/simple --no-cache-dir "docling${DOCLING_PIN}" }