Skip to content

Commit

Permalink
Merge pull request #255 from weaviate/bump-weaviate-test-image-to-v1.…
Browse files Browse the repository at this point in the history
…23.1

Update Weaviate version to semitechnologies/weaviate:1.23.1
  • Loading branch information
antas-marcin authored Jan 8, 2024
2 parents b7f54f4 + 4b81116 commit 3cedb10
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 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.23.0";
public static final String EXPECTED_WEAVIATE_VERSION = "1.23.1";
// to be set according to weaviate docker image
public static final String EXPECTED_WEAVIATE_GIT_HASH = "bbf8c87";
public static final String EXPECTED_WEAVIATE_GIT_HASH = "54bae5f";

private WeaviateVersion() {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ public void shouldSendVectorWith_v1_23_0() {
testWeaviate("semitechnologies/weaviate:1.23.0");
}

@Test
public void shouldSendVectorWith_v1_23_1() {
testWeaviate("semitechnologies/weaviate:1.23.1");
}

private void testWeaviate(String image) {
WeaviateContainer.DockerContainer container = WeaviateContainer.create(image);
try {
Expand Down
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:1.23.0
image: semitechnologies/weaviate:1.23.1
restart: on-failure:0
environment:
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
Expand Down
4 changes: 2 additions & 2 deletions src/test/resources/docker-compose-cluster.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:1.23.0
image: semitechnologies/weaviate:1.23.1
restart: on-failure:0
environment:
LOG_LEVEL: 'debug'
Expand Down Expand Up @@ -41,7 +41,7 @@ services:
- '8088'
- --scheme
- http
image: semitechnologies/weaviate:1.23.0
image: semitechnologies/weaviate:1.23.1
restart: on-failure:0
environment:
LOG_LEVEL: 'debug'
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:1.23.0
image: semitechnologies/weaviate:1.23.1
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:1.23.0
image: semitechnologies/weaviate:1.23.1
restart: on-failure:0
environment:
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/docker-compose-proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
- '8080'
- --scheme
- http
image: semitechnologies/weaviate:1.23.0
image: semitechnologies/weaviate:1.23.1
restart: on-failure:0
environment:
LOG_LEVEL: "debug"
Expand Down
2 changes: 1 addition & 1 deletion 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:1.23.0
image: semitechnologies/weaviate:1.23.1
links:
- "contextionary:contextionary"
restart: on-failure:0
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:1.23.0
image: semitechnologies/weaviate:1.23.1
restart: on-failure:0
environment:
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
Expand Down

0 comments on commit 3cedb10

Please sign in to comment.