This is an automated email from the ASF dual-hosted git repository.

ronny pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb-glazier.git


The following commit(s) were added to refs/heads/main by this push:
     new be8f5a8  Update dev dependencies (#50)
be8f5a8 is described below

commit be8f5a87cb3286f66c49a63335343e6867e7b0a5
Author: Ronny Berndt <[email protected]>
AuthorDate: Sat May 3 16:01:43 2025 +0200

    Update dev dependencies (#50)
    
    * update Erlang to v26.2.5.11
    * update SpiderMonkey
    * update VCPkg to 2025.04.09
    * update Java 8/21 JDKs
    * update Elixir to v1.18
    * remove duplicate java env setting
---
 bin/shell.ps1     |  1 -
 bin/variables.ps1 | 14 +++++++-------
 2 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/bin/shell.ps1 b/bin/shell.ps1
index 45a1b72..64973b9 100644
--- a/bin/shell.ps1
+++ b/bin/shell.ps1
@@ -35,7 +35,6 @@ $env:PATH += ";${elxInstallPath}\bin"
 $env:PATH += ";${vcpkgBase}\bin"
 $env:PATH += ";${env:wix}\bin"
 $env:PATH += ";${smInstallPath}\bin"
-$env:PATH += ";${toolsDir}\${java21Build}\bin"
 $env:PATH += ";${toolsDir}\msys64;${toolsDir}\msys64\ucrt64\bin"
 
 $env:LIB = "${vcpkgBase}\lib;${smInstallPath}\lib;" + $env:LIB
diff --git a/bin/variables.ps1 b/bin/variables.ps1
index 3047f82..3960e2a 100644
--- a/bin/variables.ps1
+++ b/bin/variables.ps1
@@ -17,7 +17,7 @@ $artifactDir = "${toolsDir}\ArtifactDownloads"
 # VCPKG SETTINGS
 
 # Download location of Vcpkg for Windows
-$vcpkgVersion = "2024.07.12"
+$vcpkgVersion = "2025.04.09"
 $vcpkgUri = 
"https://github.com/microsoft/vcpkg/archive/refs/tags/${vcpkgVersion}.zip";
 $vcpkgFile = "${artifactDir}\$(Split-Path $vcpkgUri -Leaf)"
 $vcpkgInstallPath = "${toolsDir}\vcpkg-${vcpkgVersion}"
@@ -26,7 +26,7 @@ $vcpkgBase = "${vcpkgInstallPath}\installed\x64-windows"
 # ERLANG BUILD SETTINGS
 
 # Download location of the Erlang/OTP Environment for Windows (x64)
-$erlVersion = "25.3.2.18"
+$erlVersion = "26.2.5.11"
 $erlBuildUri = 
"https://github.com/erlang/otp/releases/download/OTP-${erlVersion}/otp_win64_${erlVersion}.exe";
 $erlBuildFile = "${artifactDir}\$(Split-Path $erlBuildUri -Leaf)"
 $erlDir = "erl-${erlVersion}"
@@ -35,8 +35,8 @@ $erlInstallPath = "${toolsDir}\${erlDir}"
 # ERLANG BUILD SETTINGS
 
 # Download location of the Elixir binaries for Windows (x64)
-$elxVersion = "1.17.3"
-$elxBuildUri = 
"https://github.com/elixir-lang/elixir/releases/download/v${elxVersion}/elixir-otp-25.zip";
+$elxVersion = "1.18.3"
+$elxBuildUri = 
"https://github.com/elixir-lang/elixir/releases/download/v${elxVersion}/elixir-otp-26.zip";
 $elxBuildFile = "${artifactDir}\$(Split-Path $elxBuildUri -Leaf)"
 $elxDir = "elixir-${elxVersion}"
 $elxInstallPath = "${toolsDir}\${elxDir}"
@@ -45,7 +45,7 @@ $elxInstallPath = "${toolsDir}\${elxDir}"
 
 # Download location of the pre-build SpiderMonkey development files for 
Windows (x64)
 $smBuild = "Windows-mozjs-128"
-$smBuildVersion = "0.0.10"
+$smBuildVersion = "0.0.11"
 $smBuildUri = 
"https://github.com/big-r81/couchdb-sm/releases/download/v${smBuildVersion}/${smBuild}.tar.xz";
 $smBuildFile = "${artifactDir}\$(Split-Path $smBuildUri -Leaf)"
 $smInstallPath = "${toolsDir}\${smBuild}"
@@ -53,13 +53,13 @@ $smInstallPath = "${toolsDir}\${smBuild}"
 # JAVA 8 SETTINGS
 
 # Donwload location of OpenJDK 8 for Windows (x64)
-$java8Build = "zulu8.82.0.21-ca-jdk8.0.432-win_x64"
+$java8Build = "zulu8.86.0.25-ca-jdk8.0.452-win_x64"
 $java8BuildUri = "https://cdn.azul.com/zulu/bin/$java8Build.zip";
 $java8BuildFile = "${artifactDir}\$(Split-Path $java8BuildUri -Leaf)"
 
 # JAVA 21 SETTINGS
 
 # Donwload location of OpenJDK 21 for Windows (x64)
-$java21Build = "zulu21.38.21-ca-jdk21.0.5-win_x64"
+$java21Build = "zulu21.42.19-ca-jdk21.0.7-win_x64"
 $java21BuildUri = "https://cdn.azul.com/zulu/bin/$java21Build.zip";
 $java21BuildFile = "${artifactDir}\$(Split-Path $java21BuildUri -Leaf)"

Reply via email to