Skip to content

Commit 3bc98fd

Browse files
authored
fix hash computations (#111)
with Nushell 0.100.0, `to nuon` has changed and now quotes strings that contain a `.`, thus breaking hash computations... this PR does the following 1. formats the registry NUON file so that it's easier to read and maintain 2. relax the "newline" test on registry files, not sure why we _want_ to have newlines in registry files 3. fix the computation of the hash of pkg files by using `to nuon` instead of `open --raw` 4. pin the Nushell version to 0.100.0 in the CI because having a moving target in a CI is very hard to work with > **Note** > > point 1, 2 and 3 are probably debatable and not mandatory for this PR but it was by far the easiest to get this PR going 😋
1 parent 7e3e577 commit 3bc98fd

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- uses: hustcer/[email protected]
3030
with:
31-
version: nightly
31+
version: "0.100.0"
3232

3333
- name: Show Nushell Version
3434
run: version

nupm/utils/registry.nu

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
use dirs.nu cache-dir
44
use log.nu throw-error
5-
use misc.nu [check-cols url hash-file]
5+
use misc.nu [check-cols url hash-file hash-fn]
66

77
# Columns of a registry file
88
export const REG_COLS = [ name path hash ]
@@ -84,7 +84,7 @@ export def search-package [
8484
http get $url | save --force $pkg_file_path
8585
}
8686

87-
let new_hash = $pkg_file_path | hash-file
87+
let new_hash = open $pkg_file_path | to nuon | hash-fn
8888

8989
if $new_hash != $row.hash {
9090
throw-error ($'Content of package file ($pkg_file_path)'

tests/mod.nu

-5
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,3 @@ export def generate-local-registry [] {
171171
assert equal $actual $expected
172172
}
173173
}
174-
175-
export def registry-files-no-newlines [] {
176-
assert (ls tests/packages/registry/*nuon
177-
| all { not (open $in.name --raw | str contains (char nl)) })
178-
}

tests/packages/registry/registry.nuon

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
[[name, path, hash]; [spam_custom, spam_custom.nuon, "md5-90c14f51108a3c067d1f1e11f156ca98"], [spam_module, spam_module.nuon, "md5-c14d7a703fb0e587cf19934c5a397619"], [spam_script, spam_script.nuon, "md5-d7724c6282cc7eb878178b79f8617e29"]]
1+
[
2+
[name, path, hash];
3+
4+
[spam_custom, spam_custom.nuon, "md5-7b3a5119d1af5a025dae32bcfc7cab96"],
5+
[spam_module, spam_module.nuon, "md5-618c7c8ed97b423f111790d97bcd8486"],
6+
[spam_script, spam_script.nuon, "md5-ce1b060a68ebb42291e364b5daa6d47a"],
7+
]

0 commit comments

Comments
 (0)