From 1bcd544387d5646c14651368c1e1006a4f468712 Mon Sep 17 00:00:00 2001 From: YAMADA Tsuyoshi Date: Mon, 22 Jun 2026 22:40:34 +0900 Subject: [PATCH 1/2] nodejs: updated nodejs version to 26.3.1 --- nodejs/README.md | 4 ++-- spec/nodejs/00base_spec.rb | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nodejs/README.md b/nodejs/README.md index 2ad5f0d1d..888be2dbe 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 v26.3.0 is installed with [nodenv](https://github.com/nodenv/nodenv) + * node.js v26.3.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 @@ -56,7 +56,7 @@ If you need root privilege, use `sudo bash -lc "..."`. For example, install LTS version of nodejs: ``` -sudo bash -lc "nodenv install 24.16.0" +sudo bash -lc "nodenv install 24.17.0" ``` diff --git a/spec/nodejs/00base_spec.rb b/spec/nodejs/00base_spec.rb index 4a80c8e5d..3dab0cff7 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 "26.3.0\n" } + its(:stdout){ should eq "26.3.1\n" } end [ { - nodejs: '26.3.0', + nodejs: '26.3.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 - 26 => 26.3.0 - 26.3 => 26.3.0 + 26 => 26.3.1 + 26.3 => 26.3.1 ALIASES } end { - '26' => '26.3.0', - '26.3' => '26.3.0', + '26' => '26.3.1', + '26.3' => '26.3.1', }.each do |src, dest| describe file("/opt/nodenv/versions/#{src}") do it { should be_symlink } From 177a919268471f36de1e358d7bfb2a8a865fb2c0 Mon Sep 17 00:00:00 2001 From: YAMADA Tsuyoshi Date: Mon, 22 Jun 2026 22:40:54 +0900 Subject: [PATCH 2/2] rails7: updated nodejs version to 26.3.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 5879ca9f1..30483a1ea 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 "26.3.0\n" } + its(:stdout){ should eq "26.3.1\n" } end [ { - nodejs: '26.3.0', + nodejs: '26.3.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 - 26 => 26.3.0 - 26.3 => 26.3.0 + 26 => 26.3.1 + 26.3 => 26.3.1 ALIASES } end { - '26' => '26.3.0', - '26.3' => '26.3.0', + '26' => '26.3.1', + '26.3' => '26.3.1', }.each do |src, dest| describe file("/opt/nodenv/versions/#{src}") do it { should be_symlink }