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 906f4a6dd430163daf2f3108c37ae0ddd0000a72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 20:21:24 +0000 Subject: [PATCH 2/2] Update whitenoise requirement from <6.9.0,>=5.0 to >=5.0,<6.10.0 Updates the requirements on [whitenoise](https://github.com/evansd/whitenoise) to permit the latest version. - [Changelog](https://github.com/evansd/whitenoise/blob/main/docs/changelog.rst) - [Commits](https://github.com/evansd/whitenoise/compare/v5.0...6.9.0) --- updated-dependencies: - dependency-name: whitenoise 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..591b6a89584 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,7 +66,7 @@ dependencies = [ "tablib<3.6.0", "url-normalize>=1.4.3,<=1.4.3", "uuid6>=2023.5.2,<=2024.7.10", - "whitenoise>=5.0,<6.9.0", + "whitenoise>=5.0,<6.10.0", "yarl>=1.8,<1.18.4", ]