Skip to content

Commit b702918

Browse files
w1amalexanderankin
andauthored
chore: Use 'latest' tag for Qdrant module (#815)
Switches the Qdrant image tag to `latest` by default. This makes it easier to use new features like the [Batch Search API](https://qdrant.tech/documentation/concepts/search/#batch-search-api) without manually updating the version. The latest version is 1.13.5 as of today. You can still override the image if needed, but this keeps things simple and up to date by default. --------- Co-authored-by: David Ankin <[email protected]>
1 parent 16fb2b2 commit b702918

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/qdrant/testcontainers/qdrant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class QdrantContainer(DbContainer):
3939

4040
def __init__(
4141
self,
42-
image: str = "qdrant/qdrant:v1.8.3",
42+
image: str = "qdrant/qdrant:v1.13.5",
4343
rest_port: int = 6333,
4444
grpc_port: int = 6334,
4545
api_key: Optional[str] = None,

0 commit comments

Comments
 (0)