From da969e7709d49c275dab805d17a7e48288ebacb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 7 Aug 2026 20:11:05 -0600 Subject: [PATCH 1/3] Upgrade NBXplorer and BTCPay Server --- site-cookbooks/kosmos-bitcoin/attributes/default.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site-cookbooks/kosmos-bitcoin/attributes/default.rb b/site-cookbooks/kosmos-bitcoin/attributes/default.rb index a99c5e8..460b174 100644 --- a/site-cookbooks/kosmos-bitcoin/attributes/default.rb +++ b/site-cookbooks/kosmos-bitcoin/attributes/default.rb @@ -87,7 +87,7 @@ node.default['lndhub-go']['branding'] = { } node.default['nbxplorer']['repo'] = 'https://github.com/dgarage/NBXplorer' -node.default['nbxplorer']['revision'] = 'v2.5.26' +node.default['nbxplorer']['revision'] = 'v2.6.10' node.default['nbxplorer']['source_dir'] = '/opt/nbxplorer' node.default['nbxplorer']['config_path'] = "/home/#{node['bitcoin']['username']}/.nbxplorer/Main/settings.config" node.default['nbxplorer']['port'] = '24445' @@ -95,7 +95,7 @@ node.default['nbxplorer']['postgres']['database'] = 'nbxplorer' node.default['nbxplorer']['postgres']['user'] = 'nbxplorer' node.default['btcpay']['repo'] = 'https://github.com/btcpayserver/btcpayserver' -node.default['btcpay']['revision'] = 'v2.3.7' +node.default['btcpay']['revision'] = 'v2.4.2' node.default['btcpay']['source_dir'] = '/opt/btcpay' node.default['btcpay']['config_path'] = "/home/#{node['bitcoin']['username']}/.btcpayserver/Main/settings.config" node.default['btcpay']['log_path'] = "/home/#{node['bitcoin']['username']}/.btcpayserver/debug.log" From f453a3004dcc27f32b58dc77753d7d792b18dd85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 7 Aug 2026 20:11:32 -0600 Subject: [PATCH 2/3] Fix implicit conversion of integer to string --- site-cookbooks/kosmos-bitcoin/recipes/btcpay.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-cookbooks/kosmos-bitcoin/recipes/btcpay.rb b/site-cookbooks/kosmos-bitcoin/recipes/btcpay.rb index b657fb1..66f475f 100644 --- a/site-cookbooks/kosmos-bitcoin/recipes/btcpay.rb +++ b/site-cookbooks/kosmos-bitcoin/recipes/btcpay.rb @@ -21,7 +21,7 @@ bash 'build_btcpay' do systemctl stop btcpayserver.service ./build.sh EOH - environment "DOTNET_CLI_TELEMETRY_OPTOUT" => 1 + environment "DOTNET_CLI_TELEMETRY_OPTOUT" => "1" action :nothing notifies :restart, "service[btcpayserver]", :delayed end From 956a58a310091911a426956f663787aadd3f3b2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 7 Aug 2026 20:12:01 -0600 Subject: [PATCH 3/3] Upgrade Node.js to LTS --- site-cookbooks/kosmos-bitcoin/recipes/rtl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-cookbooks/kosmos-bitcoin/recipes/rtl.rb b/site-cookbooks/kosmos-bitcoin/recipes/rtl.rb index 080eb8b..118cd32 100644 --- a/site-cookbooks/kosmos-bitcoin/recipes/rtl.rb +++ b/site-cookbooks/kosmos-bitcoin/recipes/rtl.rb @@ -3,7 +3,7 @@ # Recipe:: rtl # -node.override["kosmos_nodejs"]["version"] = "18.20.8" +node.override["kosmos_nodejs"]["version"] = "22.23.1" include_recipe 'kosmos-nodejs' app_name = "rtl"