nodejs-dist-indexer 1.7.29 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +1 -0
- package/package.json +1 -1
- package/src/transform-filename.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.8.0](https://github.com/nodejs/nodejs-dist-indexer/compare/v1.7.30...v1.8.0) (2026-03-03)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* add riscv64 pointer compression ([#69](https://github.com/nodejs/nodejs-dist-indexer/issues/69)) ([e87a58a](https://github.com/nodejs/nodejs-dist-indexer/commit/e87a58ad23da9cd259e00d30c9ab4d40f26df18d))
|
|
6
|
+
|
|
7
|
+
## [1.7.30](https://github.com/nodejs/nodejs-dist-indexer/compare/v1.7.29...v1.7.30) (2026-02-08)
|
|
8
|
+
|
|
9
|
+
### Trivial Changes
|
|
10
|
+
|
|
11
|
+
* **deps:** bump semver from 7.7.3 to 7.7.4 ([#68](https://github.com/nodejs/nodejs-dist-indexer/issues/68)) ([b0318db](https://github.com/nodejs/nodejs-dist-indexer/commit/b0318db804f98bf9a9ab28986550c5d651aa0fbe))
|
|
12
|
+
|
|
1
13
|
## [1.7.29](https://github.com/nodejs/nodejs-dist-indexer/compare/v1.7.28...v1.7.29) (2026-01-21)
|
|
2
14
|
|
|
3
15
|
### Trivial Changes
|
package/README.md
CHANGED
|
@@ -39,6 +39,7 @@ OS / architecture / packaging specifiers used in the listings include:
|
|
|
39
39
|
* **linux-loong64**: normally .tar.gz and .tar.xz
|
|
40
40
|
* **linux-ppc64le**: normally .tar.gz and .tar.xz
|
|
41
41
|
* **linux-riscv64**: normally .tar.gz and .tar.xz
|
|
42
|
+
* **linux-riscv64-pointer-compression**: normally .tar.gz and .tar.xz
|
|
42
43
|
* **linux-s390x**: normally .tar.gz and .tar.xz
|
|
43
44
|
* **linux-x64**: normally .tar.gz and .tar.xz
|
|
44
45
|
* **linux-x64-debug**: normally .tar.gz and .tar.xz
|
package/package.json
CHANGED
|
@@ -36,6 +36,7 @@ const types = {
|
|
|
36
36
|
// unofficial-builds:
|
|
37
37
|
'linux-loong64': 'linux-loong64',
|
|
38
38
|
'linux-riscv64': 'linux-riscv64',
|
|
39
|
+
'linux-riscv64-pointer-compression': 'linux-riscv64-pointer-compression',
|
|
39
40
|
'linux-x64-glibc-217': 'linux-x64-glibc-217',
|
|
40
41
|
'linux-x64-musl': 'linux-x64-musl',
|
|
41
42
|
'linux-arm64-musl': 'linux-arm64-musl',
|