From 3d57f1082f3887aad6c029b0494d72cac442c22e Mon Sep 17 00:00:00 2001 From: soustruh Date: Tue, 29 Jul 2025 13:45:12 +0200 Subject: [PATCH 1/2] Revert "properties not present in older configurations are no longer mandatory" This reverts commit ba79149f0ac56a04c3435b367dbd694d95b17286. --- component_config/configSchema.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/component_config/configSchema.json b/component_config/configSchema.json index 1ab8f2e..19effd1 100644 --- a/component_config/configSchema.json +++ b/component_config/configSchema.json @@ -2,7 +2,9 @@ "type": "object", "title": "Configuration", "required": [ - "user_properties" + "venv", + "user_properties", + "source" ], "properties": { "venv": { From f1457c858c32aa0ff50f4a30fd750c72102db32e Mon Sep 17 00:00:00 2001 From: soustruh Date: Tue, 29 Jul 2025 13:48:28 +0200 Subject: [PATCH 2/2] =?UTF-8?q?python=203.14=20is=20a=20release=20candidat?= =?UTF-8?q?e=20now=20=F0=9F=90=8D=20=F0=9F=A5=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- component_config/configSchema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component_config/configSchema.json b/component_config/configSchema.json index 19effd1..a58489b 100644 --- a/component_config/configSchema.json +++ b/component_config/configSchema.json @@ -21,7 +21,7 @@ "options": { "tooltip": "- **Isolated environment** takes a couple of seconds to start, but gives you the opportuninty to pick one of the latest versions of Python. It's also a safer choice as it prevents package collisions.\n- Non-isolated environment (used to be the default choice) might start a bit faster, but can lead to issues mentioned above. It will also become a subject to deprecation in the future.\n- We recommmend you **update the code regularly** to make sure it runs with the latest versions of all packages. This will help you avoid issues with abandoned packages and **security vulnerabilities**.", "enum_titles": [ - "Python 3.14 beta – Isolated environment (just the packages of your choice)", + "Python 3.14 RC – Isolated environment (just the packages of your choice)", "Python 3.13 – Isolated environment (just the packages of your choice) – This is the recommended choice 🐙", "Python 3.12 – Isolated environment (just the packages of your choice)", "Python 3.10 – Shared environment (contains many pre-installed packages in legacy versions) – This used to be the default choice"