ydb-qdrant 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
<img src="https://ydb-qdrant.tech/logo.svg" alt="YDB Qdrant logo" height="56">
|
|
2
2
|
|
|
3
|
-
[](https://github.com/astandrik/ydb-qdrant/actions/workflows/ci-build.yml)
|
|
4
|
+
[](https://github.com/astandrik/ydb-qdrant/actions/workflows/ci-tests.yml)
|
|
5
|
+
[](https://github.com/astandrik/ydb-qdrant/actions/workflows/ci-integration.yml)
|
|
6
|
+
[](https://coveralls.io/github/astandrik/ydb-qdrant?branch=main)
|
|
4
7
|
[](https://www.npmjs.com/package/ydb-qdrant)
|
|
8
|
+
[](https://github.com/users/astandrik/packages/container/package/ydb-qdrant)
|
|
5
9
|
[](https://opensource.org/licenses/ISC)
|
|
6
10
|
|
|
7
11
|
# YDB Qdrant-compatible Service
|
|
@@ -293,8 +297,8 @@ LOG_LEVEL=info
|
|
|
293
297
|
- **Updating to a newer image with Compose** (no rebuild):
|
|
294
298
|
- Pull the latest tag and restart the service:
|
|
295
299
|
```bash
|
|
296
|
-
docker
|
|
297
|
-
docker
|
|
300
|
+
docker-compose pull ydb-qdrant
|
|
301
|
+
docker-compose up -d ydb-qdrant
|
|
298
302
|
```
|
|
299
303
|
|
|
300
304
|
- **Environment**: uses the same variables as documented in **Configure credentials** (`YDB_ENDPOINT`, `YDB_DATABASE`, one of the `YDB_*_CREDENTIALS` options, optional `PORT`/`LOG_LEVEL`).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ydb-qdrant",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"main": "dist/package/Api.js",
|
|
5
5
|
"types": "dist/package/Api.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
"logo.svg"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
|
-
"test": "vitest run",
|
|
17
|
+
"test": "vitest run --exclude \"test/integration/**\"",
|
|
18
|
+
"test:coverage": "vitest run --coverage --exclude \"test/integration/**\"",
|
|
19
|
+
"test:integration": "vitest run test/integration/YdbRealIntegration.test.ts",
|
|
18
20
|
"build": "tsc -p tsconfig.json",
|
|
19
21
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
20
22
|
"dev": "tsx watch src/index.ts",
|
|
@@ -67,6 +69,7 @@
|
|
|
67
69
|
"@eslint/js": "^9.39.1",
|
|
68
70
|
"@types/express": "^5.0.3",
|
|
69
71
|
"@types/node": "^24.9.1",
|
|
72
|
+
"@vitest/coverage-v8": "^4.0.12",
|
|
70
73
|
"docsify-cli": "^4.4.4",
|
|
71
74
|
"eslint": "^9.39.1",
|
|
72
75
|
"husky": "^9.1.7",
|
|
@@ -76,4 +79,4 @@
|
|
|
76
79
|
"typescript-eslint": "^8.47.0",
|
|
77
80
|
"vitest": "^4.0.12"
|
|
78
81
|
}
|
|
79
|
-
}
|
|
82
|
+
}
|