@mhalder/qdrant-mcp-server 3.0.0 → 3.1.0
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/.github/workflows/ci.yml +4 -1
- package/CHANGELOG.md +6 -0
- package/README.md +2 -2
- package/package.json +2 -2
package/.github/workflows/ci.yml
CHANGED
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
|
|
14
14
|
strategy:
|
|
15
15
|
matrix:
|
|
16
|
-
node-version: [22.x]
|
|
16
|
+
node-version: [22.x, 24.x]
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
19
|
- name: Checkout code
|
|
@@ -27,6 +27,9 @@ jobs:
|
|
|
27
27
|
|
|
28
28
|
- name: Install dependencies
|
|
29
29
|
run: npm ci
|
|
30
|
+
env:
|
|
31
|
+
# Node 24 requires C++20 for native modules
|
|
32
|
+
CXXFLAGS: ${{ matrix.node-version == '24.x' && '-std=c++20' || '' }}
|
|
30
33
|
|
|
31
34
|
- name: Type check
|
|
32
35
|
run: npm run type-check
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 3.1.0 (2026-01-22)
|
|
2
|
+
|
|
3
|
+
* Merge pull request #48 from mhalder/feat/node-24-support ([d6b57ae](https://github.com/mhalder/qdrant-mcp-server/commit/d6b57ae)), closes [#48](https://github.com/mhalder/qdrant-mcp-server/issues/48)
|
|
4
|
+
* fix(ci): enable C++20 for Node 24 native module builds ([8fca70e](https://github.com/mhalder/qdrant-mcp-server/commit/8fca70e))
|
|
5
|
+
* feat: add Node.js 24 support ([bf39405](https://github.com/mhalder/qdrant-mcp-server/commit/bf39405)), closes [#47](https://github.com/mhalder/qdrant-mcp-server/issues/47)
|
|
6
|
+
|
|
1
7
|
## 3.0.0 (2026-01-22)
|
|
2
8
|
|
|
3
9
|
* feat!(indexer): use git remote URL for consistent collection naming ([f51f82d](https://github.com/mhalder/qdrant-mcp-server/commit/f51f82d))
|
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ A Model Context Protocol (MCP) server providing semantic search capabilities usi
|
|
|
25
25
|
|
|
26
26
|
### Prerequisites
|
|
27
27
|
|
|
28
|
-
- Node.js 22
|
|
28
|
+
- Node.js 22.x or 24.x
|
|
29
29
|
- Podman or Docker with Compose support
|
|
30
30
|
|
|
31
31
|
### Installation
|
|
@@ -596,7 +596,7 @@ npm run test:coverage # Coverage report
|
|
|
596
596
|
- **Integration Tests**: Code indexer (56), scanner (15), chunker (24), synchronizer (42), snapshot (26), merkle tree (28)
|
|
597
597
|
- **Git History Tests**: Git extractor (28), extractor integration (11), chunker (30), indexer (42), synchronizer (18)
|
|
598
598
|
|
|
599
|
-
**CI/CD**: GitHub Actions runs build, type-check, and tests on Node.js 22
|
|
599
|
+
**CI/CD**: GitHub Actions runs build, type-check, and tests on Node.js 22.x and 24.x for every push/PR.
|
|
600
600
|
|
|
601
601
|
## Contributing
|
|
602
602
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mhalder/qdrant-mcp-server",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "MCP server for semantic search using local Qdrant and Ollama (default) with support for OpenAI, Cohere, and Voyage AI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"author": "mhalder",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=22.0.0 <
|
|
29
|
+
"node": ">=22.0.0 <25.0.0"
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|