@pnpm/pnpr 0.1.0-alpha.7 → 0.1.0-alpha.8
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 +20 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @pnpm/pnpr
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.8
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Added an opt-in proof of concept that lets installs reuse a dependency's build output across machines, by publishing and restoring signed, organization-scoped artifacts through pnpr instead of running the lifecycle scripts locally.
|
|
8
|
+
|
|
9
|
+
Configure it with the new `remoteSideEffectsCache` setting. A workspace names the eligible `organization` and `packages`; everything describing the act of signing — `publish`, `keyId`, `builderId`, `trustedKeys`, `privateKey` and the provenance fields — is refused in `pnpm-workspace.yaml` and read from the global config file or the environment instead.
|
|
10
|
+
|
|
11
|
+
- Hosted pnpr registries now serve newly published original artifacts from registry-scoped SHA-512 digest URLs.
|
|
12
|
+
|
|
13
|
+
- Allowed `pnpm update --patches` to refresh registry revisions through a configured pnpr server while retaining locked package versions.
|
|
14
|
+
|
|
15
|
+
- Added explicit registry revision selection with `<version>+rN` and `pnpm update --patches` for refreshing revision artifacts without changing package versions. Registry-backed lockfile policy checks recognize historical revisions, and pnpr now preserves safe revision histories from upstream registries.
|
|
16
|
+
|
|
17
|
+
- Added support for registry replacement tarballs using standard integrity values, explicit revision fields, registry routing from the `registries` setting, non-redirecting integrity-addressed URLs, canonical safe-integer revision numbers, and pnpr proxying for immutable upstream revision artifacts.
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Forward `patchedDependencies` hashes and `packageExtensions` to pnpr so server-side resolution preserves patches and package extensions in the lockfile and installed packages.
|
|
22
|
+
|
|
3
23
|
## 0.1.0-alpha.7
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/pnpr",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.8",
|
|
4
4
|
"description": "pnpm-compatible npm registry server, written in Rust",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"LICENSE.md"
|
|
29
29
|
],
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"@pnpm/pnpr.win32-x64": "0.1.0-alpha.
|
|
32
|
-
"@pnpm/pnpr.win32-arm64": "0.1.0-alpha.
|
|
33
|
-
"@pnpm/pnpr.darwin-x64": "0.1.0-alpha.
|
|
34
|
-
"@pnpm/pnpr.darwin-arm64": "0.1.0-alpha.
|
|
35
|
-
"@pnpm/pnpr.linux-x64": "0.1.0-alpha.
|
|
36
|
-
"@pnpm/pnpr.linux-arm64": "0.1.0-alpha.
|
|
37
|
-
"@pnpm/pnpr.linux-x64-musl": "0.1.0-alpha.
|
|
38
|
-
"@pnpm/pnpr.linux-arm64-musl": "0.1.0-alpha.
|
|
31
|
+
"@pnpm/pnpr.win32-x64": "0.1.0-alpha.8",
|
|
32
|
+
"@pnpm/pnpr.win32-arm64": "0.1.0-alpha.8",
|
|
33
|
+
"@pnpm/pnpr.darwin-x64": "0.1.0-alpha.8",
|
|
34
|
+
"@pnpm/pnpr.darwin-arm64": "0.1.0-alpha.8",
|
|
35
|
+
"@pnpm/pnpr.linux-x64": "0.1.0-alpha.8",
|
|
36
|
+
"@pnpm/pnpr.linux-arm64": "0.1.0-alpha.8",
|
|
37
|
+
"@pnpm/pnpr.linux-x64-musl": "0.1.0-alpha.8",
|
|
38
|
+
"@pnpm/pnpr.linux-arm64-musl": "0.1.0-alpha.8"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"preinstall": "node install.js"
|