Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/actions/npm-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ runs:
id: npm-cache
with:
path: ${{ env.CACHE_PATHS }}
key: ${{ inputs.runner }}-node-${{ inputs.node-version }}-${{ inputs.workspace }}-${{ hashFiles('package-lock.json', 'packages/testcontainers/package-lock.json', format('packages/modules/{0}/package-lock.json', inputs.workspace)) }}
restore-keys: |
${{ inputs.runner }}-node-${{ inputs.node-version }}-${{ inputs.workspace }}-
${{ inputs.runner }}-node-${{ inputs.node-version }}-
key: ${{ inputs.runner }}-node-${{ inputs.node-version }}-${{ inputs.workspace }}-${{ hashFiles('package-lock.json') }}

- name: Install dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
Expand Down
314 changes: 162 additions & 152 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"lint-staged": "^16.1.0",
"ls-engines": "^0.9.3",
"npm-check-updates": "^18.0.1",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"typescript-eslint": "^8.33.0",
"vitest": "^3.1.3"
},
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion packages/modules/chromadb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM chromadb/chroma:0.6.3
FROM chromadb/chroma:1.0.10
2 changes: 1 addition & 1 deletion packages/modules/chromadb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"build": "tsc --project tsconfig.build.json"
},
"devDependencies": {
"chromadb": "2.4.3",
"chromadb": "2.4.6",
"ollama": "^0.5.15"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/modules/chromadb/src/chromadb-container.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ describe("ChromaDB", { timeout: 360_000 }, () => {
it("should reconnect with volume and persistence data", async () => {
const sourcePath = fs.mkdtempSync(path.join(os.tmpdir(), "chroma-temp"));
const container = await new ChromaDBContainer(IMAGE)
.withBindMounts([{ source: sourcePath, target: "/chroma/chroma" }])
.withBindMounts([{ source: sourcePath, target: "/data" }])
.start();
const client = await connectTo(container);
const collection = await client.createCollection({ name: "test", metadata: { "hnsw:space": "cosine" } });
Expand Down
2 changes: 1 addition & 1 deletion packages/modules/couchbase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"testcontainers": "^11.0.0"
},
"devDependencies": {
"couchbase": "4.4.0"
"couchbase": "4.4.6"
}
}
2 changes: 1 addition & 1 deletion packages/modules/mongodb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"build": "tsc --project tsconfig.build.json"
},
"devDependencies": {
"mongoose": "^8.15.0"
"mongoose": "^8.15.1"
},
"dependencies": {
"testcontainers": "^11.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/modules/toxiproxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"toxiproxy-node-client": "^4.0.0"
},
"devDependencies": {
"@testcontainers/redis": "^10.16.0",
"@testcontainers/redis": "^11.0.0",
"redis": "^5.1.0"
}
}
Loading