From 6cf4a48570485c5636a051bcce0f8f0094029759 Mon Sep 17 00:00:00 2001 From: YAMADA Tsuyoshi Date: Sun, 15 Feb 2026 17:39:50 +0900 Subject: [PATCH 1/2] nodejs: update nodejs version to 24.13.1 --- nodejs/README.md | 2 +- spec/nodejs/00base_spec.rb | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/nodejs/README.md b/nodejs/README.md index 16f871ef5..76b86b5bb 100644 --- a/nodejs/README.md +++ b/nodejs/README.md @@ -1,7 +1,7 @@ # about minimum2scp/nodejs image * based on minimum2scp/baseimage (see https://github.com/minimum2scp/dockerfiles/tree/master/baseimage) - * node.js v24.13.0 is installed with [nodenv](https://github.com/nodenv/nodenv) + * node.js v24.13.1 is installed with [nodenv](https://github.com/nodenv/nodenv) * nodenv is installed in /opt/nodenv * [yarn](https://yarnpkg.com/) is installed with deb package diff --git a/spec/nodejs/00base_spec.rb b/spec/nodejs/00base_spec.rb index b08768a64..fe60b36a4 100644 --- a/spec/nodejs/00base_spec.rb +++ b/spec/nodejs/00base_spec.rb @@ -63,12 +63,12 @@ describe command('nodenv version-name') do let(:login_shell){ true } - its(:stdout){ should eq "24.13.0\n" } + its(:stdout){ should eq "24.13.1\n" } end [ { - nodejs: '24.13.0', + nodejs: '24.13.1', }, ].each do |v| describe command('nodenv versions --bare --skip-aliases') do @@ -86,15 +86,15 @@ let(:login_shell){ true } its(:stdout){ should eq <<~ALIASES - 24 => 24.13.0 - 24.13 => 24.13.0 + 24 => 24.13.1 + 24.13 => 24.13.1 ALIASES } end { - '24' => '24.13.0', - '24.13' => '24.13.0', + '24' => '24.13.1', + '24.13' => '24.13.1', }.each do |src, dest| describe file("/opt/nodenv/versions/#{src}") do it { should be_symlink } From 70f299e5e702bcdcf37d5b9d0c6f7fe75e90d5f4 Mon Sep 17 00:00:00 2001 From: YAMADA Tsuyoshi Date: Sun, 15 Feb 2026 17:40:23 +0900 Subject: [PATCH 2/2] rails7: updated nodejs version to 24.13.1 --- spec/rails7/00base_spec.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spec/rails7/00base_spec.rb b/spec/rails7/00base_spec.rb index ff492b3eb..6df3b36ae 100644 --- a/spec/rails7/00base_spec.rb +++ b/spec/rails7/00base_spec.rb @@ -78,12 +78,12 @@ describe command('nodenv version-name') do let(:login_shell){ true } - its(:stdout){ should eq "24.13.0\n" } + its(:stdout){ should eq "24.13.1\n" } end [ { - nodejs: '24.13.0', + nodejs: '24.13.1', }, ].each do |v| describe command('nodenv versions --bare --skip-aliases') do @@ -102,15 +102,15 @@ let(:login_shell){ true } its(:stdout){ should eq <<~ALIASES - 24 => 24.13.0 - 24.13 => 24.13.0 + 24 => 24.13.1 + 24.13 => 24.13.1 ALIASES } end { - '24' => '24.13.0', - '24.13' => '24.13.0', + '24' => '24.13.1', + '24.13' => '24.13.1', }.each do |src, dest| describe file("/opt/nodenv/versions/#{src}") do it { should be_symlink }