This is an automated email from the ASF dual-hosted git repository.
pgj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/main by this push:
new 15f9d42f7 Bump Clouseau to 2.25.0
15f9d42f7 is described below
commit 15f9d42f7f64b18ad7cc4c26e6c206a47fad83af
Author: Gabor Pali <[email protected]>
AuthorDate: Tue Mar 25 08:25:50 2025 +0100
Bump Clouseau to 2.25.0
We have had a couple of new Clouseau releases in the past few
months. So catch up with them and use the latest version as both
the default for the `configure` script and implicitly for the CI.
---
configure | 2 +-
configure.ps1 | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/configure b/configure
index 70350a07b..928e71379 100755
--- a/configure
+++ b/configure
@@ -43,7 +43,7 @@ JS_ENGINE=${JS_ENGINE:-"spidermonkey"}
SM_VSN=${SM_VSN:-"91"}
CLOUSEAU_MTH=${CLOUSEAU_MTH:-"dist"}
CLOUSEAU_URI=${CLOUSEAU_URI:-"https://github.com/cloudant-labs/clouseau/releases/download/%s/clouseau-%s-dist.zip"}
-CLOUSEAU_VSN=${CLOUSEAU_VSN:-"2.23.1"}
+CLOUSEAU_VSN=${CLOUSEAU_VSN:-"2.25.0"}
CLOUSEAU_DIR="$(pwd)"/clouseau
ARCH="$(uname -m)"
ERLANG_VER="$(run_erlang 'io:put_chars(erlang:system_info(otp_release)).')"
diff --git a/configure.ps1 b/configure.ps1
index faf3669ec..c7c730c70 100644
--- a/configure.ps1
+++ b/configure.ps1
@@ -14,9 +14,9 @@
-CouchDBUser USER set the username to run as (defaults to current
user)
-SpiderMonkeyVersion VSN select the version of SpiderMonkey to use
(default 91)
-JSEngine ENGINE select JS engine to use (spidermonkey or quickjs)
(default spidermonkey)
- -ClouseauVersion VSN select the version of Clouseau to use (default
2.23.1)
+ -ClouseauVersion VSN select the version of Clouseau to use (default
2.25.0)
-ClouseauMethod MTH method for Clouseau to deploy: git or dist
(default dist)
- -ClouseauUri URI location for retrieving Clouseau (default
https://github.com/cloudant-labs/clouseau/releases/download/2.23.1/clouseau-2.23.1-dist.zip)
+ -ClouseauUri URI location for retrieving Clouseau (default
https://github.com/cloudant-labs/clouseau/releases/download/2.25.0/clouseau-2.25.0-dist.zip)
Installation directories:
-Prefix PREFIX install architecture-independent files in PREFIX
@@ -66,9 +66,9 @@ Param(
[ValidateNotNullOrEmpty()]
[string]$ClouseauMethod = "dist", # method for Clouseau to deploy: git or
dist (default dist)
[ValidateNotNullOrEmpty()]
- [string]$ClouseauVersion = "2.23.1", # select the version of Clouseau to
use (default 2.23.1)
+ [string]$ClouseauVersion = "2.25.0", # select the version of Clouseau to
use (default 2.25.0)
[ValidateNotNullOrEmpty()]
- [string]$ClouseauUri =
"https://github.com/cloudant-labs/clouseau/releases/download/{0}/clouseau-{0}-dist.zip",
# location for retrieving Clouseau (default
https://github.com/cloudant-labs/clouseau/releases/download/2.23.1/clouseau-2.23.1-dist.zip)
+ [string]$ClouseauUri =
"https://github.com/cloudant-labs/clouseau/releases/download/{0}/clouseau-{0}-dist.zip",
# location for retrieving Clouseau (default
https://github.com/cloudant-labs/clouseau/releases/download/2.25.0/clouseau-2.25.0-dist.zip)
[ValidateNotNullOrEmpty()]
[string]$Prefix = "C:\Program Files\Apache\CouchDB", # install
architecture-independent file location (default C:\Program Files\Apache\CouchDB)
[ValidateNotNullOrEmpty()]