From 22507bb0c90fcaa5d1367a3e55ba3c889e26c016 Mon Sep 17 00:00:00 2001 From: pbobruk Date: Tue, 9 Apr 2024 15:26:29 +0200 Subject: [PATCH 1/2] add support for elasticsearch 8.13.2 --- README.md | 4 ++-- build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2cf9506..130180b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Originally created by https://github.com/monterail/elasticsearch-analysis-morfol ## Install ``` -bin/elasticsearch-plugin install pl.allegro.tech.elasticsearch.plugin:elasticsearch-analysis-morfologik:8.13.1 +bin/elasticsearch-plugin install pl.allegro.tech.elasticsearch.plugin:elasticsearch-analysis-morfologik:8.13.2 ``` *tip: select proper plugin version, should be the same as elasticsearch version* @@ -75,7 +75,7 @@ Response: All ready to install plugins are deployed to [maven central](https://repo1.maven.org/maven2/pl/allegro/tech/elasticsearch/plugin/elasticsearch-analysis-morfologik/). ### Elasticsearch 8.x -- 8.13.x (8.13.1) +- 8.13.x (8.13.1, 8.13.2) - 8.12.x (8.12.0, 8.12.1, 8.12.2) - 8.11.x (8.11.0, 8.11.1, 8.11.2, 8.11.3, 8.11.4) - 8.10.x (8.10.4) diff --git a/build.gradle b/build.gradle index b8249cd..96304e6 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { pluginClassname = 'pl.allegro.tech.elasticsearch.plugin.analysis.morfologik.AnalysisMorfologikPlugin' pluginDescription = 'Morfologik Polish Lemmatizer plugin for Elasticsearch' versions = [ - 'elasticsearch' : '8.13.1', + 'elasticsearch' : '8.13.2', 'lucene' : '8.11.2', 'log4j' : '2.20.0', 'spock' : '2.3-groovy-3.0', From 68fedafc0a276bec481dd1e303deae311a374dc1 Mon Sep 17 00:00:00 2001 From: pbobruk Date: Tue, 9 Apr 2024 15:33:05 +0200 Subject: [PATCH 2/2] upgrade groovy & testcontainers --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 96304e6..8f0abb8 100644 --- a/build.gradle +++ b/build.gradle @@ -8,8 +8,8 @@ buildscript { 'lucene' : '8.11.2', 'log4j' : '2.20.0', 'spock' : '2.3-groovy-3.0', - 'groovy' : '3.0.19', - 'testcontainers': '1.19.1' + 'groovy' : '3.0.21', + 'testcontainers': '1.19.7' ] } }