From 8bbb1508a557f3df473d403627600bdacd9a5e2c Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Mon, 23 Mar 2026 10:39:07 +0200 Subject: [PATCH 1/5] [biome] Update to version to 2.4.8 --- B/biome/build_tarballs.jl | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/B/biome/build_tarballs.jl b/B/biome/build_tarballs.jl index f0115474264..080c5dfdb9f 100644 --- a/B/biome/build_tarballs.jl +++ b/B/biome/build_tarballs.jl @@ -3,15 +3,12 @@ using BinaryBuilder, Pkg name = "biome" -#version = v"2.3.5" -version = v"2.0.6" +version = v"2.4.8" # Collection of sources required to complete build sources = [ - # ArchiveSource("https://github.com/biomejs/biome/archive/refs/tags/@biomejs/biome@2.3.5.tar.gz", - # "39c685ea028d5dd8db101b93c96a0956fb6f7846da93caa49231a62c612daa77"), - ArchiveSource("https://github.com/biomejs/biome/archive/refs/tags/@biomejs/biome@2.0.6.tar.gz", - "52d5e449346bfb15855a3bac85ba5d43b81d0fb1a99be9d4b7dca8c51521404c"), + ArchiveSource("https://github.com/biomejs/biome/archive/refs/tags/@biomejs/biome@2.4.8.tar.gz", + "1600ed6c4b405d385929e34b678825129096be605dfb834ce7aef57011274ad4"), ] # Bash recipe for building across all platforms @@ -53,6 +50,5 @@ dependencies = Dependency[] # Build the tarballs, and possibly a `build.jl` as well. build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; - #compilers=[:c, :rust], julia_compat="1.6", preferred_rust_version=v"1.91", - compilers=[:c, :rust], julia_compat="1.6", preferred_rust_version=v"1.87", + compilers=[:c, :rust], julia_compat="1.6", preferred_rust_version=v"1.94", lock_microarchitecture=false) From ff2998e36aa444fa675820d8c317acb84a87391b Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Mon, 23 Mar 2026 11:44:27 +0200 Subject: [PATCH 2/5] Update B/biome/build_tarballs.jl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mosè Giordano <765740+giordano@users.noreply.github.com> --- B/biome/build_tarballs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/B/biome/build_tarballs.jl b/B/biome/build_tarballs.jl index 080c5dfdb9f..9d29818971b 100644 --- a/B/biome/build_tarballs.jl +++ b/B/biome/build_tarballs.jl @@ -7,7 +7,7 @@ version = v"2.4.8" # Collection of sources required to complete build sources = [ - ArchiveSource("https://github.com/biomejs/biome/archive/refs/tags/@biomejs/biome@2.4.8.tar.gz", + ArchiveSource("https://github.com/biomejs/biome/archive/refs/tags/@biomejs/biome@$(version).tar.gz", "1600ed6c4b405d385929e34b678825129096be605dfb834ce7aef57011274ad4"), ] From 62f07f1bceac6d704155a3fcb7adda04959a2142 Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Tue, 24 Mar 2026 16:06:50 +0200 Subject: [PATCH 3/5] use GitSource for the source --- B/biome/build_tarballs.jl | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/B/biome/build_tarballs.jl b/B/biome/build_tarballs.jl index 9d29818971b..14ffe613c46 100644 --- a/B/biome/build_tarballs.jl +++ b/B/biome/build_tarballs.jl @@ -3,12 +3,11 @@ using BinaryBuilder, Pkg name = "biome" -version = v"2.4.8" # Collection of sources required to complete build sources = [ - ArchiveSource("https://github.com/biomejs/biome/archive/refs/tags/@biomejs/biome@$(version).tar.gz", - "1600ed6c4b405d385929e34b678825129096be605dfb834ce7aef57011274ad4"), + GitSource("https://github.com/biomejs/biome.git", + "f4bf3411cc34ae6458b298a03c6255ac3cd00231"), # @biomejs/biome@2.4.8 ] # Bash recipe for building across all platforms @@ -50,5 +49,5 @@ dependencies = Dependency[] # Build the tarballs, and possibly a `build.jl` as well. build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; - compilers=[:c, :rust], julia_compat="1.6", preferred_rust_version=v"1.94", - lock_microarchitecture=false) + compilers=[:c, :rust], julia_compat="1.6", preferred_rust_version=v"1.94", + lock_microarchitecture=false) From 400f0697f07c4a3ef932a21be4afcb8130c84964 Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Tue, 24 Mar 2026 16:08:10 +0200 Subject: [PATCH 4/5] put version back.. --- B/biome/build_tarballs.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/B/biome/build_tarballs.jl b/B/biome/build_tarballs.jl index 14ffe613c46..6348fa5fad3 100644 --- a/B/biome/build_tarballs.jl +++ b/B/biome/build_tarballs.jl @@ -3,6 +3,7 @@ using BinaryBuilder, Pkg name = "biome" +version = v"2.4.8" # Collection of sources required to complete build sources = [ From e7365c20b3493ab5e5e20d84f5c040882ab9d438 Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Tue, 24 Mar 2026 17:52:54 +0200 Subject: [PATCH 5/5] Update B/biome/build_tarballs.jl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mosè Giordano <765740+giordano@users.noreply.github.com> --- B/biome/build_tarballs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/B/biome/build_tarballs.jl b/B/biome/build_tarballs.jl index 6348fa5fad3..32911a6e3d3 100644 --- a/B/biome/build_tarballs.jl +++ b/B/biome/build_tarballs.jl @@ -13,7 +13,7 @@ sources = [ # Bash recipe for building across all platforms script = raw""" -cd $WORKSPACE/srcdir/biome--biomejs-biome-*/ +cd $WORKSPACE/srcdir/biome* # The BIOME_VERSION stuff is some weird stuff you need to do. From # Biome's CONTRIBUTING.md about production builds: #