Skip to content

Commit 972789d

Browse files
Merge branch 'main' into dependabot/docker/packages/modules/arangodb/dependencies-84d89e5bfe
2 parents 9c17e10 + f5b7b46 commit 972789d

File tree

8 files changed

+170
-163
lines changed

8 files changed

+170
-163
lines changed

.github/actions/npm-setup/action.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,7 @@ runs:
5050
id: npm-cache
5151
with:
5252
path: ${{ env.CACHE_PATHS }}
53-
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)) }}
54-
restore-keys: |
55-
${{ inputs.runner }}-node-${{ inputs.node-version }}-${{ inputs.workspace }}-
56-
${{ inputs.runner }}-node-${{ inputs.node-version }}-
53+
key: ${{ inputs.runner }}-node-${{ inputs.node-version }}-${{ inputs.workspace }}-${{ hashFiles('package-lock.json') }}
5754

5855
- name: Install dependencies
5956
if: steps.npm-cache.outputs.cache-hit != 'true'

package-lock.json

Lines changed: 162 additions & 152 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
"eslint-config-prettier": "^10.1.5",
2727
"eslint-plugin-prettier": "^5.4.0",
2828
"husky": "^9.1.7",
29-
"lint-staged": "^16.0.0",
29+
"lint-staged": "^16.1.0",
3030
"ls-engines": "^0.9.3",
3131
"npm-check-updates": "^18.0.1",
3232
"prettier": "^3.5.3",
3333
"prettier-plugin-organize-imports": "^4.1.0",
3434
"shx": "^0.4.0",
3535
"ts-node": "^10.9.2",
3636
"typescript": "^5.8.3",
37-
"typescript-eslint": "^8.32.1",
37+
"typescript-eslint": "^8.33.0",
3838
"vitest": "^3.1.3"
3939
},
4040
"overrides": {

packages/modules/chromadb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"build": "tsc --project tsconfig.build.json"
3030
},
3131
"devDependencies": {
32-
"chromadb": "2.4.3",
32+
"chromadb": "2.4.6",
3333
"ollama": "^0.5.15"
3434
},
3535
"dependencies": {

packages/modules/chromadb/src/chromadb-container.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ describe("ChromaDB", { timeout: 360_000 }, () => {
8282
it("should reconnect with volume and persistence data", async () => {
8383
const sourcePath = fs.mkdtempSync(path.join(os.tmpdir(), "chroma-temp"));
8484
const container = await new ChromaDBContainer(IMAGE)
85-
.withBindMounts([{ source: sourcePath, target: "/chroma/chroma" }])
85+
.withBindMounts([{ source: sourcePath, target: "/data" }])
8686
.start();
8787
const client = await connectTo(container);
8888
const collection = await client.createCollection({ name: "test", metadata: { "hnsw:space": "cosine" } });

packages/modules/couchbase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
"testcontainers": "^11.0.0"
3333
},
3434
"devDependencies": {
35-
"couchbase": "4.4.0"
35+
"couchbase": "4.4.6"
3636
}
3737
}

packages/modules/mongodb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"build": "tsc --project tsconfig.build.json"
3030
},
3131
"devDependencies": {
32-
"mongoose": "^8.15.0"
32+
"mongoose": "^8.15.1"
3333
},
3434
"dependencies": {
3535
"testcontainers": "^11.0.0"

packages/modules/toxiproxy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"toxiproxy-node-client": "^4.0.0"
3434
},
3535
"devDependencies": {
36-
"@testcontainers/redis": "^10.16.0",
36+
"@testcontainers/redis": "^11.0.0",
3737
"redis": "^5.1.0"
3838
}
3939
}

0 commit comments

Comments
 (0)