Skip to content

Commit c0b4eb2

Browse files
authored
Merge pull request #105 from semi-technologies/bump_ver_1.17
bumps up weaviate to 1.17.0
2 parents b94d4d4 + 4483c33 commit c0b4eb2

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

ci/docker-compose-okta.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.17.0-prealpha-8950d6f
13+
image: semitechnologies/weaviate:1.17.0
1414
ports:
1515
- 8082:8082
1616
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.17.0-prealpha-8950d6f
13+
image: semitechnologies/weaviate:1.17.0
1414
ports:
1515
- 8083:8083
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.17.0-prealpha-8950d6f
5+
image: semitechnologies/weaviate:1.17.0
66
restart: on-failure:0
77
ports:
88
- "8080:8080"

cluster/journey.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const weaviate = require("../index");
22
const { createTestFoodSchemaAndData, cleanupTestFood, PIZZA_CLASS_NAME, SOUP_CLASS_NAME } = require("../utils/testData");
33

4-
const EXPECTED_WEAVIATE_VERSION = "1.17.0-prealpha"
5-
const EXPECTED_WEAVIATE_GIT_HASH = "8950d6f"
4+
const EXPECTED_WEAVIATE_VERSION = "1.17.0"
5+
const EXPECTED_WEAVIATE_GIT_HASH = "37d3b17"
66

77
describe("cluster nodes endpoint", () => {
88
const client = weaviate.client({

graphql/journey.test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ describe("the graphql journey", () => {
168168
return client.graphql
169169
.get()
170170
.withClassName("Article")
171-
.withBm25({ query: "Apple", properties: ["title", "url"]})
171+
.withBm25({ query: "Apple", properties: ["title", "url"] })
172172
.withFields("_additional { id }")
173173
.do()
174174
.then((res) => {
@@ -181,7 +181,7 @@ describe("the graphql journey", () => {
181181
return client.graphql
182182
.get()
183183
.withClassName("Article")
184-
.withBm25({ query: "Apple", properties: ["url"]})
184+
.withBm25({ query: "Apple", properties: ["url"] })
185185
.withFields("_additional { id }")
186186
.do()
187187
.then((res) => {
@@ -194,7 +194,7 @@ describe("the graphql journey", () => {
194194
return client.graphql
195195
.get()
196196
.withClassName("Article")
197-
.withHybrid({ query: "apple", alpha: 0}) // TODO change to Apple
197+
.withHybrid({ query: "apple", alpha: 0 })
198198
.withFields("_additional { id }")
199199
.do()
200200
.then((res) => {
@@ -207,7 +207,7 @@ describe("the graphql journey", () => {
207207
return client.graphql
208208
.get()
209209
.withClassName("Article")
210-
.withHybrid({ query: "apple", alpha: 0.5}) // TODO change to Apple
210+
.withHybrid({ query: "Apple", alpha: 0.5 })
211211
.withFields("_additional { id }")
212212
.do()
213213
.then((res) => {
@@ -222,7 +222,7 @@ describe("the graphql journey", () => {
222222
return client.graphql
223223
.get()
224224
.withClassName("Article")
225-
.withHybrid({ query: "Apple", alpha: 0.5, vector: dummyVec300x0})
225+
.withHybrid({ query: "Apple", alpha: 0.5, vector: dummyVec300x0 })
226226
.withFields("_additional { id }")
227227
.do()
228228
.then((res) => {

0 commit comments

Comments
 (0)