From 6dc0aa543a99b0b2fb471b64f1c6872071ab59b8 Mon Sep 17 00:00:00 2001 From: Alec Reynolds Date: Fri, 20 Sep 2024 12:01:20 -0700 Subject: [PATCH] #50: Support Solr 9.x minor versions. --- builders/solr.js | 18 ++++++++++++++++++ docs/index.md | 9 +++++++++ examples/9.x/.lando.yml | 2 +- 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/builders/solr.js b/builders/solr.js index ce29997..e101d2c 100644 --- a/builders/solr.js +++ b/builders/solr.js @@ -6,6 +6,15 @@ const path = require('path'); // Versions const supportedVersions = [ + '9.9', + '9.8', + '9.7', + '9.6', + '9.5', + '9.4', + '9.3', + '9.2', + '9.1', '9.0', '9', '8.11', @@ -138,6 +147,15 @@ const parseConfig = options => { case '8.1': return parse8(options); case '8.0': return parse8(options); case '8': return parse8(options); + case '9.9': return parse9(options); + case '9.8': return parse9(options); + case '9.7': return parse9(options); + case '9.6': return parse9(options); + case '9.5': return parse9(options); + case '9.4': return parse9(options); + case '9.3': return parse9(options); + case '9.2': return parse9(options); + case '9.1': return parse9(options); case '9.0': return parse9(options); case '9': return parse9(options); default: return parseElse(options); diff --git a/docs/index.md b/docs/index.md index 23f5ad5..fb1fe88 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,6 +18,15 @@ services: ## Supported versions +* [9.9](https://hub.docker.com/_/solr/) **(experimental)** +* [9.8](https://hub.docker.com/_/solr/) **(experimental)** +* [9.7](https://hub.docker.com/_/solr/) **(experimental)** +* [9.6](https://hub.docker.com/_/solr/) **(experimental)** +* [9.5](https://hub.docker.com/_/solr/) **(experimental)** +* [9.4](https://hub.docker.com/_/solr/) **(experimental)** +* [9.3](https://hub.docker.com/_/solr/) **(experimental)** +* [9.2](https://hub.docker.com/_/solr/) **(experimental)** +* [9.1](https://hub.docker.com/_/solr/) **(experimental)** * [9](https://hub.docker.com/_/solr/) **(experimental)** * [9.0](https://hub.docker.com/_/solr/) **(experimental)** * [8](https://hub.docker.com/_/solr/) diff --git a/examples/9.x/.lando.yml b/examples/9.x/.lando.yml index 1033cae..2947cdf 100644 --- a/examples/9.x/.lando.yml +++ b/examples/9.x/.lando.yml @@ -6,7 +6,7 @@ services: config: dir: '9.x-conf' patch: - type: solr:9.0 + type: solr:9.9 core: solo portforward: true config: