From 7e76914fd59e26949f13486abc192eef143bd2b6 Mon Sep 17 00:00:00 2001 From: Daniel Alley Date: Thu, 9 Jan 2025 16:41:35 -0500 Subject: [PATCH 1/2] Quiet a lint warning about improper flag usage --- pulp_certguard/tests/functional/artifacts/x509/gensrv.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pulp_certguard/tests/functional/artifacts/x509/gensrv.sh b/pulp_certguard/tests/functional/artifacts/x509/gensrv.sh index ae868115756..f44933b9700 100755 --- a/pulp_certguard/tests/functional/artifacts/x509/gensrv.sh +++ b/pulp_certguard/tests/functional/artifacts/x509/gensrv.sh @@ -32,7 +32,7 @@ then -CA certificates/ca.pem \ -CAkey keys/ca.pem \ -CAcreateserial \ - -set_serial $RANDOM + -set_serial $RANDOM \ -subj "/CN=$HOSTNAME" &> /dev/null else openssl x509 \ @@ -45,7 +45,7 @@ else -CA certificates/ca.pem \ -CAkey keys/ca.pem \ -CAcreateserial \ - -set_serial $RANDOM + -set_serial $RANDOM \ -subj "/CN=$HOSTNAME" &> /dev/null fi From b51e4e9aafa9a5cfe7cd6026cd90b117f20ed7d0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 21:00:43 +0000 Subject: [PATCH 2/2] Update cryptography requirement Updates the requirements on [cryptography](https://github.com/pyca/cryptography) to permit the latest version. - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pyca/cryptography/compare/38.0.1...44.0.2) --- updated-dependencies: - dependency-name: cryptography dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c648cfd27cf..05ed3002cc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ dependencies = [ "async-timeout>=4.0.3,<4.0.4;python_version<'3.11'", "backoff>=2.1.2,<2.2.2", "click>=8.1.0,<=8.1.8", - "cryptography>=38.0.1,<44.0.1", + "cryptography>=38.0.1,<44.0.3", "Django~=4.2.0", # LTS version, switch only if we have a compelling reason to", "django-filter>=23.1,<=24.3", "django-guid>=3.3,<=3.5.0",