From 03ee9a15b5f01aa23f85baee63b9295e7811130d Mon Sep 17 00:00:00 2001 From: Oliver Meyer Date: Tue, 12 May 2026 09:26:45 +0200 Subject: [PATCH 1/2] fix(test): pin HETA version in E2E test --- tests/aignostics/application/cli_test.py | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/tests/aignostics/application/cli_test.py b/tests/aignostics/application/cli_test.py index 4c5b9aeb..c5d4a2e9 100644 --- a/tests/aignostics/application/cli_test.py +++ b/tests/aignostics/application/cli_test.py @@ -211,15 +211,21 @@ def test_cli_application_dump_schemata(runner: CliRunner, tmp_path: Path, record """Check application dump schemata works as expected.""" record_property("tested-item-id", "SPEC-APPLICATION-SERVICE") result = runner.invoke( - cli, ["application", "dump-schemata", HETA_APPLICATION_ID, "--destination", str(tmp_path), "--zip"] + cli, + [ + "application", + "dump-schemata", + HETA_APPLICATION_ID, + "--application-version", + HETA_APPLICATION_VERSION, + "--destination", + str(tmp_path), + "--zip", + ], ) - application_version = ApplicationService().application_version(HETA_APPLICATION_ID) - application_version = ApplicationService().application_version(HETA_APPLICATION_ID) assert result.exit_code == 0 assert "Zipped 11 files" in normalize_output(result.output) - zip_file = sanitize_path( - Path(tmp_path / f"{HETA_APPLICATION_ID}_{application_version.version_number}_schemata.zip") - ) + zip_file = sanitize_path(Path(tmp_path / f"{HETA_APPLICATION_ID}_{HETA_APPLICATION_VERSION}_schemata.zip")) assert zip_file.exists(), f"Expected zip file {zip_file} not found" From 71ff4b0c9f81531d7f2065447ed0ad29e26ff2fc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 12:02:35 +0200 Subject: [PATCH 2/2] chore(deps): update dependency urllib3 to v2.7.0 [security] (#637) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- uv.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uv.lock b/uv.lock index f901c5b0..b5cfdcb3 100644 --- a/uv.lock +++ b/uv.lock @@ -7907,11 +7907,11 @@ wheels = [ [[package]] name = "urllib3" -version = "2.6.3" +version = "2.7.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } +sdist = { url = "https://files.pythonhosted.org/packages/53/0c/06f8b233b8fd13b9e5ee11424ef85419ba0d8ba0b3138bf360be2ff56953/urllib3-2.7.0.tar.gz", hash = "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c", size = 433602, upload-time = "2026-05-07T16:13:18.596Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, + { url = "https://files.pythonhosted.org/packages/7f/3e/5db95bcf282c52709639744ca2a8b149baccf648e39c8cc87553df9eae0c/urllib3-2.7.0-py3-none-any.whl", hash = "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897", size = 131087, upload-time = "2026-05-07T16:13:17.151Z" }, ] [package.optional-dependencies]