Skip to content

fix: bump qdrant client to v1.17.0 and disable version compatibility check#11886

Draft
roomote-v0[bot] wants to merge 1 commit intomainfrom
fix/qdrant-client-compatibility
Draft

fix: bump qdrant client to v1.17.0 and disable version compatibility check#11886
roomote-v0[bot] wants to merge 1 commit intomainfrom
fix/qdrant-client-compatibility

Conversation

@roomote-v0
Copy link
Contributor

@roomote-v0 roomote-v0 bot commented Mar 7, 2026

Related GitHub Issue

Closes: #11885

Description

This PR attempts to address Issue #11885. Feedback and guidance are welcome.

Two changes to prevent Qdrant client/server version incompatibility errors:

  1. Bumps @qdrant/js-client-rest from ^1.14.0 to ^1.17.0 -- fixes the immediate incompatibility with Qdrant server v1.16.3+
  2. Sets checkCompatibility: false in both QdrantClient constructor call sites in qdrant-client.ts -- prevents this class of breakage from recurring when users run a newer Qdrant server version that the client has not yet been updated to match

The Qdrant JS client enforces that the minor version difference between client and server must not exceed 1. By disabling this check, we avoid breaking users who pull the latest Qdrant Docker image before the client package catches up. The underlying REST API remains backward-compatible across these minor versions, so disabling the check is safe.

Test Procedure

  • All 66 existing tests in qdrant-client.spec.ts pass with the updated assertions that now expect checkCompatibility: false
  • Run: cd src && pnpm vitest run services/code-index/vector-store/__tests__/qdrant-client.spec.ts
  • Manual verification: connect to a Qdrant server v1.16.3+ and confirm no "Internal Server Error" during codebase indexing

Pre-Submission Checklist

  • Issue Linked: This PR is linked to an approved GitHub Issue (see "Related GitHub Issue" above).
  • Scope: My changes are focused on the linked issue (one major feature/fix per PR).
  • Self-Review: I have performed a thorough self-review of my code.
  • Testing: New and/or updated tests have been added to cover my changes.
  • Documentation Impact: No documentation changes needed for this code-only fix. The commenter's suggestion to document recommended Qdrant server versions in the docs site is valid but out of scope for this PR.
  • Contribution Guidelines: I have read and agree to the Contributor Guidelines.

Interactively review PR in Roo Code Cloud

…check

- Bumps @qdrant/js-client-rest from ^1.14.0 to ^1.17.0 to support Qdrant
  server v1.16.x+
- Sets checkCompatibility: false in QdrantClient constructor to prevent
  future client/server version mismatch errors when users run newer
  Qdrant server versions

Closes #11885
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[BUG] Qdrant client v1.14.0 incompatibility with Qdrant server v1.16.3 causes "Internal Server Error" in Roo Code 3.51.0

1 participant