Skip to content

Commit 2d50875

Browse files
authored
Add support for named vectors in 1.24 release (#110)
1 parent ac788af commit 2d50875

22 files changed

+330
-38
lines changed

.github/workflows/main.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
pull_request:
88

99

10+
env:
11+
WEAVIATE_VERSION: preview--f005cb8
12+
1013
jobs:
1114
checks:
1215
runs-on: ubuntu-latest
@@ -32,7 +35,7 @@ jobs:
3235
- name: "Install dependencies"
3336
run: |
3437
npm install
35-
ci/run_dependencies.sh
38+
ci/run_dependencies.sh ${{ env.WEAVIATE_VERSION }}
3639
- name: "Run tests with authentication tests"
3740
if: ${{ !github.event.pull_request.head.repo.fork }}
3841
env:
@@ -49,7 +52,7 @@ jobs:
4952
npm test
5053
npm run build
5154
- name: "Stop Weaviate"
52-
run: ci/stop_dependencies.sh
55+
run: ci/stop_dependencies.sh ${{ env.WEAVIATE_VERSION }}
5356

5457
publish:
5558
needs: tests

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ weaviate-data/
1010
*.tgz
1111
.npmrc
1212
.eslintcache
13+
test.sh

ci/docker-compose-azure-cc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- --scheme
1111
- http
1212
- --write-timeout=600s
13-
image: semitechnologies/weaviate:1.23.0-rc.1
13+
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
1414
ports:
1515
- 8081:8081
1616
restart: on-failure:0

ci/docker-compose-cluster.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version: '3.4'
33
services:
44
weaviate-node-1:
5-
image: semitechnologies/weaviate:1.23.0-rc.1
5+
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
66
restart: on-failure:0
77
ports:
88
- "8087:8080"
@@ -26,7 +26,7 @@ services:
2626
- '8080'
2727
- --scheme
2828
- http
29-
image: semitechnologies/weaviate:1.23.0-rc.1
29+
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
3030
ports:
3131
- 8088:8080
3232
- 6061:6060

ci/docker-compose-okta-cc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- --scheme
1111
- http
1212
- --write-timeout=600s
13-
image: semitechnologies/weaviate:1.23.0-rc.1
13+
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
1414
ports:
1515
- 8082:8082
1616
restart: on-failure:0

ci/docker-compose-okta-users.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- --scheme
1111
- http
1212
- --write-timeout=600s
13-
image: semitechnologies/weaviate:1.23.0-rc.1
13+
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
1414
ports:
1515
- 8083:8083
1616
restart: on-failure:0

ci/docker-compose-openai.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
- '8086'
1010
- --scheme
1111
- http
12-
image: semitechnologies/weaviate:1.23.0-rc.1
12+
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
1313
ports:
1414
- 8086:8086
1515
restart: on-failure:0

ci/docker-compose-wcs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- --scheme
1111
- http
1212
- --write-timeout=600s
13-
image: semitechnologies/weaviate:1.23.0-rc.1
13+
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
1414
ports:
1515
- 8085:8085
1616
restart: on-failure:0

ci/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version: '3.4'
33
services:
44
weaviate:
5-
image: semitechnologies/weaviate:1.23.0-rc.1
5+
image: semitechnologies/weaviate:${WEAVIATE_VERSION}
66
restart: on-failure:0
77
ports:
88
- "8080:8080"

ci/run_dependencies.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
set -eou pipefail
44

5+
export WEAVIATE_VERSION=$1
6+
57
source ./ci/compose.sh
68

79
echo "Stop existing session if running"

0 commit comments

Comments
 (0)