Skip to content

Commit

Permalink
Merge pull request #186 from weaviate/update-contextionary
Browse files Browse the repository at this point in the history
Update contextionary version to en0.16.0-v1.2.0
  • Loading branch information
antas-marcin committed Mar 9, 2023
2 parents f3d246e + 27b003e commit dc3d36a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
public class WeaviateVersion {

// to be set according to weaviate docker image
public static final String EXPECTED_WEAVIATE_VERSION = "1.18.0-alpha.1";
public static final String EXPECTED_WEAVIATE_VERSION = "1.18.0";
// to be set according to weaviate docker image
public static final String EXPECTED_WEAVIATE_GIT_HASH = "8ba0b2c";
public static final String EXPECTED_WEAVIATE_GIT_HASH = "8606543";

private WeaviateVersion() {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ public void testMiscMetaEndpoint() {
assertNull(meta.getError());
assertEquals("http://[::]:8080", meta.getResult().getHostname());
assertEquals(EXPECTED_WEAVIATE_VERSION, meta.getResult().getVersion());
assertEquals("{backup-filesystem={backupsPath=/tmp/backups}, text2vec-contextionary={version=en0.16.0-v1.1.0, wordCount=818072.0}}", meta.getResult().getModules().toString());
assertEquals("{backup-filesystem={backupsPath=/tmp/backups}, text2vec-contextionary={version=en0.16.0-v1.2.0, wordCount=818072.0}}", meta.getResult().getModules().toString());
}
}
2 changes: 1 addition & 1 deletion src/test/resources/docker-compose-azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:preview-hnsw-pq-8ba0b2c
image: semitechnologies/weaviate:1.18.0
restart: on-failure:0
environment:
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/docker-compose-okta-cc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:preview-hnsw-pq-8ba0b2c
image: semitechnologies/weaviate:1.18.0
restart: on-failure:0
environment:
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/docker-compose-okta-users.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:preview-hnsw-pq-8ba0b2c
image: semitechnologies/weaviate:1.18.0
restart: on-failure:0
environment:
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
Expand Down
4 changes: 2 additions & 2 deletions src/test/resources/docker-compose-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
- '8080'
- --scheme
- http
image: semitechnologies/weaviate:preview-hnsw-pq-8ba0b2c
image: semitechnologies/weaviate:1.18.0
links:
- "contextionary:contextionary"
restart: on-failure:0
Expand All @@ -25,7 +25,7 @@ services:
CLUSTER_GOSSIP_BIND_PORT: "7100"
CLUSTER_DATA_BIND_PORT: "7101"
contextionary:
image: semitechnologies/contextionary:en0.16.0-v1.1.0
image: semitechnologies/contextionary:en0.16.0-v1.2.0
environment:
OCCURRENCE_WEIGHT_LINEAR_FACTOR: 0.75
EXTENSIONS_STORAGE_MODE: weaviate
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/docker-compose-wcs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- --scheme
- http
- --write-timeout=600s
image: semitechnologies/weaviate:preview-hnsw-pq-8ba0b2c
image: semitechnologies/weaviate:1.18.0
restart: on-failure:0
environment:
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
Expand Down

0 comments on commit dc3d36a

Please sign in to comment.