From 85134bf7d4ced36a7991a3a8f22fb27f5ad71dfb Mon Sep 17 00:00:00 2001 From: Fabrizio Fortino Date: Sat, 18 May 2024 07:32:41 +0200 Subject: [PATCH] Dependencies: Upgrade Elasticsearch to 8.13.4 (#687) --- build.sbt | 6 +++--- client-python/requirements.txt | 2 +- docker/Dockerfile | 2 +- docs/pages/installation.md | 4 ++-- version | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build.sbt b/build.sbt index 48b7b6f7..5ec452bd 100644 --- a/build.sbt +++ b/build.sbt @@ -6,8 +6,8 @@ Global / scalaVersion := "3.3.3" Global / scalacOptions += "-explain" lazy val CirceVersion = "0.14.7" -lazy val ElasticsearchVersion = "8.13.3" -lazy val Elastic4sVersion = "8.11.5" +lazy val ElasticsearchVersion = "8.13.4" +lazy val Elastic4sVersion = "8.12.0" lazy val ElastiknnVersion = IO.read(file("version")).strip() lazy val LuceneVersion = "9.10.0" @@ -54,7 +54,7 @@ lazy val `elastiknn-client-elastic4s` = project name := "client-elastic4s", version := ElastiknnVersion, libraryDependencies ++= Seq( - "com.sksamuel.elastic4s" %% "elastic4s-client-esjava" % Elastic4sVersion + "nl.gn0s1s" %% "elastic4s-client-esjava" % Elastic4sVersion ), TestSettings ) diff --git a/client-python/requirements.txt b/client-python/requirements.txt index 47eb5186..8209e3db 100644 --- a/client-python/requirements.txt +++ b/client-python/requirements.txt @@ -1,3 +1,3 @@ -elasticsearch==8.13.0 +elasticsearch==8.13.1 tqdm==4.61.1 scipy==1.10.1 diff --git a/docker/Dockerfile b/docker/Dockerfile index 776a04d2..769ca401 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,3 +1,3 @@ -FROM docker.elastic.co/elasticsearch/elasticsearch:8.13.3 +FROM docker.elastic.co/elasticsearch/elasticsearch:8.13.4 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 69764ff7..a220e4b4 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.3 -RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.13.0.0/elastiknn-8.13.3.0.zip +FROM docker.elastic.co/elasticsearch/elasticsearch:8.13.4 +RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.13.4.0/elastiknn-8.13.4.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 2d455351..e92f94d2 100644 --- a/version +++ b/version @@ -1 +1 @@ -8.13.3.0 \ No newline at end of file +8.13.4.0 \ No newline at end of file