From 464603091f73181fbe4ef9da86a7f509c2e007cb Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 7 Jul 2026 23:57:57 +0200 Subject: [PATCH 1/3] Migrate to new `str lowercase` command (nushell/nushell#18364) Changes made in this commit will fix #132 --- nupm/utils/dirs.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nupm/utils/dirs.nu b/nupm/utils/dirs.nu index 108f964..07988c7 100644 --- a/nupm/utils/dirs.nu +++ b/nupm/utils/dirs.nu @@ -62,13 +62,13 @@ export def nupm-home-prompt [--no-confirm]: nothing -> bool { mut answer = '' - while ($answer | str downcase) not-in [ y n ] { + while ($answer | str lowercase) not-in [ y n ] { $answer = (input ( $'Root directory "($env.NUPM_HOME)" does not exist.' + ' Do you want to create it? [y/n] ')) } - if ($answer | str downcase) not-in [ y Y ] { + if ($answer | str lowercase) not-in [ y Y ] { return false } From 2eb2bb2771860d70139d6f46bee2a530208b73ba Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 8 Jul 2026 11:53:59 +0200 Subject: [PATCH 2/3] ci: upgrade CI nu version to 0.114.0 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d66d088..1281101 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - uses: hustcer/setup-nu@v3.10 with: - version: "0.110.0" + version: "0.114.0" - name: Show Nushell Version run: version From d7d14084d963fe3936b2521dd991e6375aeb9b61 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 12 Jul 2026 23:16:47 +0200 Subject: [PATCH 3/3] Ignore path separators to address changes in nushell/nushell#17653 --- nupm/utils/package.nu | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nupm/utils/package.nu b/nupm/utils/package.nu index 0adf94c..b7a9373 100644 --- a/nupm/utils/package.nu +++ b/nupm/utils/package.nu @@ -48,9 +48,11 @@ export def list-package-files [pkg_dir: path, pkg: record]: nothing -> list