From 5c534bd80acd10d05c91b628577acef1fbc855de Mon Sep 17 00:00:00 2001 From: Alex Klibisz Date: Mon, 6 Nov 2023 21:59:55 -0500 Subject: [PATCH] Dependencies: Upgrade Elasticsearch to 8.10.0 (#577) --- build.sbt | 4 ++-- client-python/requirements.txt | 2 +- docker/Dockerfile | 2 +- docs/pages/installation.md | 4 ++-- version | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index 7cc252dc7..00769ee16 100644 --- a/build.sbt +++ b/build.sbt @@ -3,8 +3,8 @@ import ElasticsearchPluginPlugin.autoImport._ Global / scalaVersion := "2.13.10" lazy val CirceVersion = "0.14.3" -lazy val ElasticsearchVersion = "8.9.2" -lazy val Elastic4sVersion = "8.9.1" +lazy val ElasticsearchVersion = "8.10.0" +lazy val Elastic4sVersion = "8.10.0" lazy val ElastiknnVersion = IO.read(file("version")).strip() lazy val LuceneVersion = "9.7.0" diff --git a/client-python/requirements.txt b/client-python/requirements.txt index c77fa6543..1f1838d9b 100644 --- a/client-python/requirements.txt +++ b/client-python/requirements.txt @@ -1,3 +1,3 @@ -elasticsearch==8.9.0 +elasticsearch==8.10.0 tqdm==4.61.1 scipy==1.10.1 diff --git a/docker/Dockerfile b/docker/Dockerfile index 35a4b9757..44918bd55 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,3 +1,3 @@ -FROM docker.elastic.co/elasticsearch/elasticsearch:8.9.2 +FROM docker.elastic.co/elasticsearch/elasticsearch:8.10.0 COPY elastiknn-plugin/target/elastiknn*.zip . RUN elasticsearch-plugin install -b file:$(ls elastiknn*zip | sort | tail -n1) diff --git a/docs/pages/installation.md b/docs/pages/installation.md index 8dd7cfb92..a634d0e1b 100644 --- a/docs/pages/installation.md +++ b/docs/pages/installation.md @@ -42,8 +42,8 @@ Make a Dockerfile like below. The image version (`elasticsearch:A.B.C`) must match the plugin's version (e.g. `A.B.C.x/elastiknn-A.B.C.x`). ```docker -FROM docker.elastic.co/elasticsearch/elasticsearch:8.9.2 -RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.9.2.0/elastiknn-8.9.2.0.zip +FROM docker.elastic.co/elasticsearch/elasticsearch:8.10.0 +RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.10.0.0/elastiknn-8.10.0.0.zip ``` Build and run the Dockerfile. If you have any issues please refer to the [official docs.](https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html) diff --git a/version b/version index d55c8ec35..da9527235 100644 --- a/version +++ b/version @@ -1 +1 @@ -8.9.2.0 \ No newline at end of file +8.10.0.0 \ No newline at end of file