@pnpm/pnpr 0.1.0-alpha.11 → 0.1.0-alpha.12

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @pnpm/pnpr
2
2
 
3
+ ## 0.1.0-alpha.12
4
+
5
+ pnpr 0.1.0-alpha.12 answers broad searches against an upstream registry instead of failing, and keeps Python resolution going when an index or a release carries metadata it cannot read.
6
+
7
+ ### Patch Changes
8
+
9
+ - `pnpm search` and `npm search` against an upstream with `search: true` no longer fail with a 400 error on broad terms. pnpr now truncates an upstream that holds more results than its fetch budget downloads. The results it could not download keep `total` approximate.
10
+
11
+ - Python resolution no longer fails on a release whose `Requires-Python` is not a version specifier, such as the trailing comma in `openpyxl` 3.0.x. pnpm now reads such a value as if the release declared no interpreter range [#14910](https://github.com/pnpm/pnpm/issues/14910).
12
+
13
+ - A Python release whose wheel metadata declares a requirement pnpm cannot read no longer fails the install. pnpm now resolves the project against the other releases of that package, and reports the unreadable requirement when none of them works.
14
+
15
+ - `pnpm install` no longer fails when a Python index lists a file pnpm cannot use, such as a release with no SHA-256 digest or an unreadable wheel filename. That file is left out and the project resolves against the remaining releases.
16
+
17
+ - `pnpm install` now includes dependencies referenced by weak Cargo features in `Cargo.lock`. Cargo no longer rejects the generated lockfile with `--locked` for crates such as `uuid` [#14978](https://github.com/pnpm/pnpm/issues/14978).
18
+
3
19
  ## 0.1.0-alpha.11
4
20
 
5
21
  pnpr now serves Cargo, Python, and container registries alongside npm, publishes across all of them in one transaction, and signs users in through OIDC.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/pnpr",
3
- "version": "0.1.0-alpha.11",
3
+ "version": "0.1.0-alpha.12",
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.11",
32
- "@pnpm/pnpr.win32-arm64": "0.1.0-alpha.11",
33
- "@pnpm/pnpr.darwin-x64": "0.1.0-alpha.11",
34
- "@pnpm/pnpr.darwin-arm64": "0.1.0-alpha.11",
35
- "@pnpm/pnpr.linux-x64": "0.1.0-alpha.11",
36
- "@pnpm/pnpr.linux-arm64": "0.1.0-alpha.11",
37
- "@pnpm/pnpr.linux-x64-musl": "0.1.0-alpha.11",
38
- "@pnpm/pnpr.linux-arm64-musl": "0.1.0-alpha.11"
31
+ "@pnpm/pnpr.win32-x64": "0.1.0-alpha.12",
32
+ "@pnpm/pnpr.win32-arm64": "0.1.0-alpha.12",
33
+ "@pnpm/pnpr.darwin-x64": "0.1.0-alpha.12",
34
+ "@pnpm/pnpr.darwin-arm64": "0.1.0-alpha.12",
35
+ "@pnpm/pnpr.linux-x64": "0.1.0-alpha.12",
36
+ "@pnpm/pnpr.linux-arm64": "0.1.0-alpha.12",
37
+ "@pnpm/pnpr.linux-x64-musl": "0.1.0-alpha.12",
38
+ "@pnpm/pnpr.linux-arm64-musl": "0.1.0-alpha.12"
39
39
  },
40
40
  "scripts": {
41
41
  "preinstall": "node install.js"