From cdcb4e2eb08363db9f3e7a7fd1d49db34be369e1 Mon Sep 17 00:00:00 2001 From: Fabrizio Fortino Date: Fri, 5 Apr 2024 15:49:31 +0200 Subject: [PATCH] Dependencies: Upgrade Elasticsearch to 8.13.1 (#675) --- 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 bdd107b00..33b5269a3 100644 --- a/build.sbt +++ b/build.sbt @@ -6,10 +6,10 @@ Global / scalaVersion := "3.3.3" Global / scalacOptions += "-explain" lazy val CirceVersion = "0.14.6" -lazy val ElasticsearchVersion = "8.13.0" +lazy val ElasticsearchVersion = "8.13.1" lazy val Elastic4sVersion = "8.11.5" lazy val ElastiknnVersion = IO.read(file("version")).strip() -lazy val LuceneVersion = "9.9.1" +lazy val LuceneVersion = "9.10.0" lazy val TestSettings = Seq( Test / parallelExecution := false, diff --git a/client-python/requirements.txt b/client-python/requirements.txt index 254efe2a7..47eb51862 100644 --- a/client-python/requirements.txt +++ b/client-python/requirements.txt @@ -1,3 +1,3 @@ -elasticsearch==8.12.1 +elasticsearch==8.13.0 tqdm==4.61.1 scipy==1.10.1 diff --git a/docker/Dockerfile b/docker/Dockerfile index 1a175d014..fb74f8443 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,3 +1,3 @@ -FROM docker.elastic.co/elasticsearch/elasticsearch:8.13.0 +FROM docker.elastic.co/elasticsearch/elasticsearch:8.13.1 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 24c679b20..ab93d7e5b 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.13.0 -RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.13.0.0/elastiknn-8.13.0.0.zip +FROM docker.elastic.co/elasticsearch/elasticsearch:8.13.1 +RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.13.0.0/elastiknn-8.13.1.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 4cf144e92..c46be3496 100644 --- a/version +++ b/version @@ -1 +1 @@ -8.13.0.0 \ No newline at end of file +8.13.1.0 \ No newline at end of file