From ea79342bcbd3d2f71db1fa74335973d6e16d2219 Mon Sep 17 00:00:00 2001 From: Wes Hinsley Date: Tue, 16 Dec 2025 15:26:59 +0000 Subject: [PATCH 1/2] Require constellation 1.5.0 --- deploy/pyproject.toml | 2 +- deploy/src/montagu_deploy/__about__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/pyproject.toml b/deploy/pyproject.toml index db8490464..a9db4d106 100644 --- a/deploy/pyproject.toml +++ b/deploy/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "constellation>=1.4.0", + "constellation>=1.5.0", "docopt", "psycopg2" ] diff --git a/deploy/src/montagu_deploy/__about__.py b/deploy/src/montagu_deploy/__about__.py index 175da359f..7a825f963 100644 --- a/deploy/src/montagu_deploy/__about__.py +++ b/deploy/src/montagu_deploy/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2023-present Alex # # SPDX-License-Identifier: MIT -__version__ = "0.1.2" +__version__ = "0.1.3" From 19bd8e5a4e5d6dd9d3e3cebdb0adb8aa67d5af9f Mon Sep 17 00:00:00 2001 From: Wes Hinsley Date: Tue, 16 Dec 2025 15:51:51 +0000 Subject: [PATCH 2/2] Update test for key.pem --- deploy/tests/test_constellation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/tests/test_constellation.py b/deploy/tests/test_constellation.py index e8f566d51..78f48d27b 100644 --- a/deploy/tests/test_constellation.py +++ b/deploy/tests/test_constellation.py @@ -91,7 +91,7 @@ def test_proxy_configured_self_signed(): api = get_container(cfg, "proxy") cert = docker_util.string_from_container(api, "/etc/montagu/proxy/certificate.pem") - key = docker_util.string_from_container(api, "/etc/montagu/proxy/ssl_key.pem") + key = docker_util.string_from_container(api, "/etc/montagu/proxy/key.pem") assert cert is not None assert key is not None