Skip to content

Commit b22061f

Browse files
authored
Merge pull request #158 from weaviate/dev/1.26
Add support for new Weaviate `v1.26` features in TSv3
2 parents 285b63d + 2987a27 commit b22061f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3168
-517
lines changed

.github/workflows/main.yaml

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,18 @@ on:
77
pull_request:
88

99
env:
10-
WEAVIATE_124: 1.24.20
11-
WEAVIATE_125: 1.25.7
10+
WEAVIATE_124: 1.24.21
11+
WEAVIATE_125: 1.25.8
12+
WEAVIATE_126: 1.26.1
1213

1314
jobs:
1415
checks:
1516
runs-on: ubuntu-latest
16-
strategy:
17-
fail-fast: false
18-
matrix:
19-
node: [
20-
"18.x",
21-
"20.x",
22-
"22.x"
23-
]
2417
steps:
2518
- uses: actions/checkout@v3
2619
- uses: actions/setup-node@v3
2720
with:
28-
node-version: ${{ matrix.node }}
21+
node-version: '18.x'
2922
- name: "Run checks"
3023
run: |
3124
npm ci
@@ -40,12 +33,11 @@ jobs:
4033
fail-fast: false
4134
matrix:
4235
versions: [
43-
{ node: "18.x", weaviate: $WEAVIATE_124},
44-
{ node: "20.x", weaviate: $WEAVIATE_124},
4536
{ node: "22.x", weaviate: $WEAVIATE_124},
46-
{ node: "18.x", weaviate: $WEAVIATE_125},
47-
{ node: "20.x", weaviate: $WEAVIATE_125},
48-
{ node: "22.x", weaviate: $WEAVIATE_125}
37+
{ node: "22.x", weaviate: $WEAVIATE_125},
38+
{ node: "18.x", weaviate: $WEAVIATE_126},
39+
{ node: "20.x", weaviate: $WEAVIATE_126},
40+
{ node: "22.x", weaviate: $WEAVIATE_126}
4941
]
5042
steps:
5143
- uses: actions/checkout@v3
@@ -91,7 +83,7 @@ jobs:
9183
registry-url: 'https://registry.npmjs.org'
9284
- run: npm ci
9385
- run: npm run build
94-
- run: npm publish
86+
- run: npm publish --tag next
9587
env:
9688
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}
9789
- run: npm run docs

0 commit comments

Comments
 (0)