From e4d8b99a512b7336ea264e84fd8e82290fbb2202 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Wed, 12 Nov 2025 14:54:26 -0500 Subject: [PATCH 1/2] cibuildwheel: update to 3.3.0 (#5133) Signed-off-by: Henry Schreiner --- src/schemas/json/partial-cibuildwheel.json | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/src/schemas/json/partial-cibuildwheel.json b/src/schemas/json/partial-cibuildwheel.json index 0f573177a7e..06c0078228b 100644 --- a/src/schemas/json/partial-cibuildwheel.json +++ b/src/schemas/json/partial-cibuildwheel.json @@ -538,6 +538,37 @@ ], "title": "CIBW_TEST_ENVIRONMENT" }, + "test-runtime": { + "description": "Additional configuration for the test runner", + "oneOf": [ + { + "type": "string", + "pattern": "^$" + }, + { + "type": "object", + "additionalProperties": false + }, + { + "type": "string", + "pattern": "args:" + }, + { + "type": "object", + "additionalProperties": false, + "required": ["args"], + "properties": { + "args": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + ], + "title": "CIBW_TEST_RUNTIME" + }, "overrides": { "type": "array", "description": "An overrides array", @@ -605,6 +636,9 @@ }, "test-environment": { "$ref": "#/$defs/inherit" + }, + "test-runtime": { + "$ref": "#/$defs/inherit" } } }, @@ -715,6 +749,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } } @@ -843,6 +880,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -903,6 +943,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -976,6 +1019,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -1036,6 +1082,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -1096,6 +1145,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } }, @@ -1156,6 +1208,9 @@ }, "test-environment": { "$ref": "#/properties/test-environment" + }, + "test-runtime": { + "$ref": "#/properties/test-runtime" } } } From f024fa7d3b91e2b1783bd181094fcf591654af57 Mon Sep 17 00:00:00 2001 From: btea <2356281422@qq.com> Date: Thu, 13 Nov 2025 09:10:11 +0800 Subject: [PATCH 2/2] Update `trustPolicyExclude` description (#5135) Co-authored-by: btea --- src/schemas/json/pnpm-workspace.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schemas/json/pnpm-workspace.json b/src/schemas/json/pnpm-workspace.json index ba92f64dccd..8f3533c4468 100644 --- a/src/schemas/json/pnpm-workspace.json +++ b/src/schemas/json/pnpm-workspace.json @@ -807,7 +807,7 @@ ] }, "trustPolicyExclude": { - "description": "Exclude specific packages from trust policy checks.", + "description": "You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement.", "type": "array", "uniqueItems": true, "items": {