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 ", 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>;