From 8ea233405ab6cf0fd82d857f8a85413c64f22fbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= Date: Thu, 25 Jul 2024 14:23:45 +0200 Subject: [PATCH 1/2] build: Bump version to v1.15.0-rc2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Víctor Cuadrado Juan --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e4d2a592..3209314f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3666,7 +3666,7 @@ dependencies = [ [[package]] name = "policy-server" -version = "1.15.0-rc1" +version = "1.15.0-rc2" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 825436e1..39e18b45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "policy-server" -version = "1.15.0-rc1" +version = "1.15.0-rc2" authors = [ "Kubewarden Developers ", "Flavio Castelli ", From 20d3ab2ad4e3075c1deedd7b6dadfee810022395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= Date: Thu, 25 Jul 2024 14:33:13 +0200 Subject: [PATCH 2/2] chore: Fix docstring, make clippy happy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Víctor Cuadrado Juan --- src/evaluation/precompiled_policy.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/evaluation/precompiled_policy.rs b/src/evaluation/precompiled_policy.rs index 52f36697..27af65f1 100644 --- a/src/evaluation/precompiled_policy.rs +++ b/src/evaluation/precompiled_policy.rs @@ -67,6 +67,7 @@ impl PrecompiledPolicy { /// A dictionary with: /// * Key: the URL of the WebAssembly module /// * Value: a Result containing the precompiled policy or an error. +/// /// Errors are stored and will be reported to the user in the API response. pub(crate) type PrecompiledPolicies = HashMap>;