From 93ea66bdff8afd260abf494518d690558c9bb9b5 Mon Sep 17 00:00:00 2001 From: Bouncheck <36934780+Bouncheck@users.noreply.github.com> Date: Wed, 7 May 2025 03:02:28 +0200 Subject: [PATCH 1/2] Add recent releases to documentation versions list Created some branches for those versions according to existing format. Note that `scylla-4.19.0.x` corresponds to the latest released `4.19.0.1` and not current master (`scylla-4.x`). If the next released version is `4.19.0.2` then `scylla-4.19.0.x` will need to be moved with whatever documentation backports it has on top of `4.19.0.2`. However it's unlikely that `4.19.0.2` will not have the same changes already, so it should not be an issue. --- docs/source/conf.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index ce2bb388069..29a0d2c209c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,10 +22,13 @@ 'scylla-4.12.0.x', 'scylla-4.13.0.x', 'scylla-4.14.1.x', - 'scylla-4.15.0.x' + 'scylla-4.15.0.x', + 'scylla-4.17.0.x', + 'scylla-4.18.1.x', + 'scylla-4.19.0.x' ] # Set the latest version. -LATEST_VERSION = 'scylla-4.15.0.x' +LATEST_VERSION = 'scylla-4.19.0.x' # Set which versions are not released yet. UNSTABLE_VERSIONS = [] # Set which versions are deprecated @@ -99,6 +102,9 @@ 'scylla-4.13.0.x', 'scylla-4.14.1.x', 'scylla-4.15.0.x', + 'scylla-4.17.0.x', + 'scylla-4.18.1.x', + 'scylla-4.19.0.x' ] suppress_warnings = ["ref.any", "myst.header","myst.xref_missing","autosectionlabel"] From b1ef0176cffd1af65b26365c39cd93f2efc3ce1e Mon Sep 17 00:00:00 2001 From: Bouncheck <36934780+Bouncheck@users.noreply.github.com> Date: Thu, 8 May 2025 22:57:27 +0200 Subject: [PATCH 2/2] Adjust path in javadoc.sh Valid module for 4.x is "core" and not "driver-core". Wrong path leads to script failing on `mv` step. --- docs/_utils/javadoc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_utils/javadoc.sh b/docs/_utils/javadoc.sh index 5fadf3954d4..0c39996f68b 100755 --- a/docs/_utils/javadoc.sh +++ b/docs/_utils/javadoc.sh @@ -14,4 +14,4 @@ fi mvn javadoc:javadoc -T 1C [ -d $OUTPUT_DIR ] && rm -r $OUTPUT_DIR mkdir -p "$OUTPUT_DIR" -mv -f driver-core/target/site/apidocs/* $OUTPUT_DIR +mv -f core/target/site/apidocs/* $OUTPUT_DIR