nodejs-dist-indexer 1.7.30 → 1.8.1

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 CHANGED
@@ -1,3 +1,15 @@
1
+ ## [1.8.1](https://github.com/nodejs/nodejs-dist-indexer/compare/v1.8.0...v1.8.1) (2026-03-03)
2
+
3
+ ### Trivial Changes
4
+
5
+ * **deps-dev:** bump minimatch from 3.1.2 to 3.1.5 ([#70](https://github.com/nodejs/nodejs-dist-indexer/issues/70)) ([f05febc](https://github.com/nodejs/nodejs-dist-indexer/commit/f05febc5dfd0a9a2fc179b34660b6318ae866498))
6
+
7
+ ## [1.8.0](https://github.com/nodejs/nodejs-dist-indexer/compare/v1.7.30...v1.8.0) (2026-03-03)
8
+
9
+ ### Features
10
+
11
+ * add riscv64 pointer compression ([#69](https://github.com/nodejs/nodejs-dist-indexer/issues/69)) ([e87a58a](https://github.com/nodejs/nodejs-dist-indexer/commit/e87a58ad23da9cd259e00d30c9ab4d40f26df18d))
12
+
1
13
  ## [1.7.30](https://github.com/nodejs/nodejs-dist-indexer/compare/v1.7.29...v1.7.30) (2026-02-08)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodejs-dist-indexer",
3
- "version": "1.7.30",
3
+ "version": "1.8.1",
4
4
  "description": "An application to create nodejs.org distribution index files: index.json and index.tab",
5
5
  "main": "src/dist-indexer.js",
6
6
  "author": "Rod Vagg <rod@vagg.org>",
@@ -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',