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.
Files changed (2) hide show
  1. package/README.md +7 -3
  2. 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
- [![CI](https://github.com/astandrik/ydb-qdrant/actions/workflows/ci-ydb-qdrant.yml/badge.svg)](https://github.com/astandrik/ydb-qdrant/actions/workflows/ci-ydb-qdrant.yml)
3
+ [![Build](https://img.shields.io/github/actions/workflow/status/astandrik/ydb-qdrant/ci-build.yml?branch=main&label=build)](https://github.com/astandrik/ydb-qdrant/actions/workflows/ci-build.yml)
4
+ [![Tests](https://img.shields.io/github/actions/workflow/status/astandrik/ydb-qdrant/ci-tests.yml?branch=main&label=tests)](https://github.com/astandrik/ydb-qdrant/actions/workflows/ci-tests.yml)
5
+ [![Integration Tests](https://img.shields.io/github/actions/workflow/status/astandrik/ydb-qdrant/ci-integration.yml?branch=main&label=integration%20tests)](https://github.com/astandrik/ydb-qdrant/actions/workflows/ci-integration.yml)
6
+ [![Coverage](https://coveralls.io/repos/github/astandrik/ydb-qdrant/badge.svg?branch=main)](https://coveralls.io/github/astandrik/ydb-qdrant?branch=main)
4
7
  [![npm version](https://img.shields.io/npm/v/ydb-qdrant.svg)](https://www.npmjs.com/package/ydb-qdrant)
8
+ [![Docker Image](https://img.shields.io/badge/docker-ghcr.io%2Fastandrik%2Fydb--qdrant-blue?logo=docker)](https://github.com/users/astandrik/packages/container/package/ydb-qdrant)
5
9
  [![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](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 compose pull ydb-qdrant # or: docker-compose pull ydb-qdrant
297
- docker compose up -d ydb-qdrant # or: docker-compose up -d ydb-qdrant
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.0",
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
+ }