Closed (fixed)
Project:
Qdrant VDB Provider
Version:
1.0.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Reporter:
Created:
13 Feb 2026 at 09:14 UTC
Updated:
15 Jul 2026 at 09:25 UTC
Jump to comment: Most recent
Module required drupal/ai-ai_search ^1.2, but ai-ai_search project is deprecated. It was moved to drupal/ai.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
stmh commentedNot sure where this is coming from. the composer.json requires drupal/ai and the module dependencies lists
ai:ai_search (^1.2)I think drupal/ai-ai_search is a transitive package. composer info reports
Comment #3
kumkum29 commentedHello,
I tried updating the module to the latest version, but I'm getting this error:
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires drupal/ai_vdb_provider_qdrant 1.0.x-dev@dev -> satisfiable by drupal/ai_vdb_provider_qdrant[1.0.x-dev (alias of dev-1.0.x)].
- drupal/ai_vdb_provider_qdrant dev-1.0.x requires drupal/search_api ^1.x-dev -> found drupal/search_api[dev-1.x, 1.x-dev (alias of dev-1.x)] but it does not match your minimum-stability.
- drupal/ai_vdb_provider_qdrant 1.0.x-dev is an alias of drupal/ai_vdb_provider_qdrant dev-1.0.x and thus requires it to be installed too.
How can I fix this?
Thanks.
Comment #4
stmh commentedThe issue is that drupal/ai_vdb_provider_qdrant requires drupal/search_api ^1.x-dev, which doesn't meet your project's minimum-stability setting.
The quickest fix is to allow that specific dev dependency by adding it to your composer.json:
composer require drupal/search_api:1.x-devComment #8
marios anagnostopoulos commentedAs @theodorosploumis noted in pr 3, the module should not depend on another module's dev version if possible.
I Updated the pr branch, and this its good to go.
Best regards
Comment #9
stmh commentedthanks, merged to 1.0.x
Comment #10
marios anagnostopoulos commentedAwesome, thanks, looking forward to the next release.
Do you think we could also bump the ai_search dependency to 2.x?
Comment #11
stmh commentedwe can do this in a new 2.x branch, as requiring ai_search 2.x pulls in the whole 2.x versions of ai -- which are afaik not stable yet. Please create a new issue for that