Skip to content

Commit 6735657

Browse files
authored
uv: add system-certs and mark native-tls as deprecated (#5667)
see https://github.com/astral-sh/uv/releases/tag/0.11.9
1 parent 3493194 commit 6735657

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/schemas/json/uv.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,10 +322,14 @@
322322
"description": "Whether the project is managed by uv. If `false`, uv will ignore the project when\n`uv run` is invoked.",
323323
"type": ["boolean", "null"]
324324
},
325-
"native-tls": {
325+
"system-certs": {
326326
"description": "Whether to load TLS certificates from the platform's native certificate store.\n\nBy default, uv loads certificates from the bundled `webpki-roots` crate. The\n`webpki-roots` are a reliable set of trust roots from Mozilla, and including them in uv\nimproves portability and performance (especially on macOS).\n\nHowever, in some cases, you may want to use the platform's native certificate store,\nespecially if you're relying on a corporate trust root (e.g., for a mandatory proxy) that's\nincluded in your system's certificate store.",
327327
"type": ["boolean", "null"]
328328
},
329+
"native-tls": {
330+
"description": "(Deprecated: use `system-certs` instead.) Whether to load TLS certificates from the platform's native certificate store.\n\nBy default, uv loads certificates from the bundled `webpki-roots` crate. The\n`webpki-roots` are a reliable set of trust roots from Mozilla, and including them in uv\nimproves portability and performance (especially on macOS).\n\nHowever, in some cases, you may want to use the platform's native certificate store,\nespecially if you're relying on a corporate trust root (e.g., for a mandatory proxy) that's\nincluded in your system's certificate store.",
331+
"type": ["boolean", "null"]
332+
},
329333
"no-binary": {
330334
"description": "Don't install pre-built wheels.\n\nThe given packages will be built and installed from source. The resolver will still use\npre-built wheels to extract package metadata, if available.",
331335
"type": ["boolean", "null"]

0 commit comments

Comments
 (0)