Skip to content

Commit 418c3bc

Browse files
Merge branch 'main' into main
2 parents b39974e + 9de6cf1 commit 418c3bc

File tree

19 files changed

+1094
-850
lines changed

19 files changed

+1094
-850
lines changed

.github/workflows/main.yaml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ on:
99
env:
1010
WEAVIATE_127: 1.27.27
1111
WEAVIATE_128: 1.28.16
12-
WEAVIATE_129: 1.29.9
13-
WEAVIATE_130: 1.30.17
14-
WEAVIATE_131: 1.31.16
15-
WEAVIATE_132: 1.32.10
16-
WEAVIATE_133: 1.33.0
12+
WEAVIATE_129: 1.29.11
13+
WEAVIATE_130: 1.30.22
14+
WEAVIATE_131: 1.31.20
15+
WEAVIATE_132: 1.32.18
16+
WEAVIATE_133: 1.33.6
17+
WEAVIATE_134: 1.34.1
1718

1819
concurrency:
1920
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -41,15 +42,16 @@ jobs:
4142
fail-fast: false
4243
matrix:
4344
versions: [
44-
{ node: "22.x", weaviate: $WEAVIATE_127},
45-
{ node: "22.x", weaviate: $WEAVIATE_128},
46-
{ node: "22.x", weaviate: $WEAVIATE_129},
47-
{ node: "22.x", weaviate: $WEAVIATE_130},
48-
{ node: "22.x", weaviate: $WEAVIATE_131},
49-
{ node: "22.x", weaviate: $WEAVIATE_132},
50-
{ node: "18.x", weaviate: $WEAVIATE_133},
51-
{ node: "20.x", weaviate: $WEAVIATE_133},
52-
{ node: "22.x", weaviate: $WEAVIATE_133},
45+
{ node: "24.x", weaviate: $WEAVIATE_127},
46+
{ node: "24.x", weaviate: $WEAVIATE_128},
47+
{ node: "24.x", weaviate: $WEAVIATE_129},
48+
{ node: "24.x", weaviate: $WEAVIATE_130},
49+
{ node: "24.x", weaviate: $WEAVIATE_131},
50+
{ node: "24.x", weaviate: $WEAVIATE_132},
51+
{ node: "24.x", weaviate: $WEAVIATE_133},
52+
{ node: "20.x", weaviate: $WEAVIATE_134},
53+
{ node: "22.x", weaviate: $WEAVIATE_134},
54+
{ node: "24.x", weaviate: $WEAVIATE_134},
5355
]
5456
steps:
5557
- uses: actions/checkout@v3
@@ -80,7 +82,7 @@ jobs:
8082
fail-fast: false
8183
matrix:
8284
versions: [
83-
{ node: "22.x", weaviate: $WEAVIATE_130}
85+
{ node: "24.x", weaviate: $WEAVIATE_134},
8486
]
8587
steps:
8688
- uses: actions/checkout@v3

ci/docker-compose-wcs.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@ services:
1313
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
1414
ports:
1515
- 8085:8085
16+
- 50056:50056
1617
restart: on-failure:0
1718
environment:
19+
GRPC_PORT: 50056
1820
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
1921
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'false'
2022
AUTHENTICATION_OIDC_ENABLED: 'true'
21-
AUTHENTICATION_OIDC_CLIENT_ID: 'wcs'
22-
AUTHENTICATION_OIDC_ISSUER: 'https://auth.wcs.api.weaviate.io/auth/realms/SeMI'
23+
AUTHENTICATION_OIDC_CLIENT_ID: 'Peuc12y02UA0eAED1dqSjE5HtGUrpBsx'
24+
AUTHENTICATION_OIDC_ISSUER: 'https://auth.weaviate.cloud/Peuc12y02UA0eAED1dqSjE5HtGUrpBsx'
2325
AUTHENTICATION_OIDC_USERNAME_CLAIM: 'email'
24-
AUTHENTICATION_OIDC_GROUPS_CLAIM: 'groups'
26+
AUTHENTICATION_OIDC_GROUPS_CLAIM: 'roles'
2527
AUTHORIZATION_ADMINLIST_ENABLED: 'true'
2628
AUTHORIZATION_ADMINLIST_USERS: 'oidc-test-user@weaviate.io'
2729
AUTHENTICATION_OIDC_SCOPES: 'openid,email'

package-lock.json

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

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "weaviate-client",
3-
"version": "3.9.0",
3+
"version": "3.10.0",
44
"description": "JS/TS client for Weaviate",
55
"main": "dist/node/cjs/index.js",
66
"type": "module",
@@ -17,7 +17,7 @@
1717
}
1818
},
1919
"engines": {
20-
"node": ">=18.0.0"
20+
"node": ">=20.0.0"
2121
},
2222
"scripts": {
2323
"test": "jest --no-cache --useStderr --runInBand --detectOpenHandles",
@@ -51,12 +51,12 @@
5151
},
5252
"homepage": "https://github.com/weaviate/typescript-client#readme",
5353
"dependencies": {
54-
"abort-controller-x": "^0.4.3",
55-
"graphql": "^16.11.0",
54+
"abort-controller-x": "^0.5.0",
55+
"graphql": "^16.12.0",
5656
"graphql-request": "^6.1.0",
5757
"long": "^5.3.2",
58-
"nice-grpc": "^2.1.12",
59-
"nice-grpc-client-middleware-retry": "^3.1.11",
58+
"nice-grpc": "^2.1.13",
59+
"nice-grpc-client-middleware-retry": "^3.1.12",
6060
"nice-grpc-common": "^2.0.2",
6161
"uuid": "^9.0.1"
6262
},

0 commit comments

Comments
 (0)