Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kubewarden/policy-sdk-rust
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.9.9
Choose a base ref
...
head repository: kubewarden/policy-sdk-rust
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.9.10
Choose a head ref
  • 9 commits
  • 1 file changed
  • 4 contributors

Commits on Dec 25, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b4e3a8c View commit details

Commits on Jan 2, 2024

  1. Merge pull request #123 from kubewarden/renovate/all-minor-patch

    chore(deps): update all non-major dependencies
    viccuad authored Jan 2, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7081954 View commit details

Commits on Jan 8, 2024

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    07355a5 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ae9b1e3 View commit details
  3. Merge pull request #125 from kubewarden/renovate/serial_test-3.x

    chore(deps): update rust crate serial_test to v3
    fabriziosestito authored Jan 8, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    fe1f110 View commit details
  4. Merge pull request #124 from kubewarden/renovate/all-minor-patch

    fix(deps): update rust crate serde_yaml to 0.9.30
    viccuad authored Jan 8, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    33046c5 View commit details

Commits on Jan 22, 2024

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c7798e1 View commit details
  2. build: Bump version to 0.9.10

    Signed-off-by: Víctor Cuadrado Juan <vcuadradojuan@suse.de>
    viccuad committed Jan 22, 2024

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    viccuad Víctor Cuadrado Juan
    Copy the full SHA
    9b269f2 View commit details
  3. Merge pull request #127 from kubewarden/renovate/all-minor-patch

    chore(deps): update rust crate k8s-openapi to 0.21.0
    viccuad authored Jan 22, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3ec5eb7 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 Cargo.toml
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
name = "kubewarden-policy-sdk"
description = "Kubewarden Policy SDK for the Rust language"
repository = "https://github.com/kubewarden/policy-sdk-rust"
version = "0.9.9"
version = "0.9.10"
authors = [
"Flavio Castelli <fcastelli@suse.com>",
"Rafael Fernández López <rfernandezlopez@suse.com>",
@@ -36,23 +36,23 @@ cfg-if = "1.0"
# This however can lead to issues when executing commands like
# cargo `build|check|doc`. That's because the `k8s-openapi` is specified again
# inside of the `dev-dependencies`, this time with a k8s feature enabled
k8s-openapi = { version = "0.20.0", default-features = false, optional = true }
k8s-openapi = { version = "0.21.0", default-features = false, optional = true }
num = "0.4"
num-derive = "0.4"
num-traits = "0.2"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.27"
serde_yaml = "0.9.30"
slog = "2.7.0"
url = { version = "2.5.0", features = ["serde"] }
wapc-guest = "1.1.0"
chrono = { version = "0.4", default-features = false }

[dev-dependencies]
assert-json-diff = "2.0.2"
mockall = "0.12.0"
serial_test = "2.0.0"
k8s-openapi = { version = "0.20.0", default-features = false, features = [
mockall = "0.12.1"
serial_test = "3.0.0"
k8s-openapi = { version = "0.21.0", default-features = false, features = [
"v1_27",
] }
jsonpath_lib = "0.3.0"