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: libbpf/libbpf-rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.24.2
Choose a base ref
...
head repository: libbpf/libbpf-rs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.24.3
Choose a head ref
  • 7 commits
  • 5 files changed
  • 2 contributors

Commits on Aug 15, 2024

  1. libbpf-cargo: Explicitly import libbpf_rs::AsRawLibbpf trait

    In the past we wrote the fully qualified syntax for usage of the
    libbpf_rs::AsRawLibbpf trait inside the generated skeletons. We don't
    need to do that: given that we are in a custom module, it is safe for us
    to just import the trait.
    
    Signed-off-by: Daniel Müller <deso@posteo.net>
    d-e-s-o authored and danielocfb committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    5ad6ae1 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. build(deps): bump clap from 4.5.15 to 4.5.16

    Bumps [clap](https://github.com/clap-rs/clap) from 4.5.15 to 4.5.16.
    - [Release notes](https://github.com/clap-rs/clap/releases)
    - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
    - [Commits](clap-rs/clap@clap_complete-v4.5.15...clap_complete-v4.5.16)
    
    ---
    updated-dependencies:
    - dependency-name: clap
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and d-e-s-o committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    e8a7832 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. build(deps): bump serde from 1.0.207 to 1.0.208

    Bumps [serde](https://github.com/serde-rs/serde) from 1.0.207 to 1.0.208.
    - [Release notes](https://github.com/serde-rs/serde/releases)
    - [Commits](serde-rs/serde@v1.0.207...v1.0.208)
    
    ---
    updated-dependencies:
    - dependency-name: serde
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and d-e-s-o committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    95d4469 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. build(deps): bump libc from 0.2.155 to 0.2.158

    Bumps [libc](https://github.com/rust-lang/libc) from 0.2.155 to 0.2.158.
    - [Release notes](https://github.com/rust-lang/libc/releases)
    - [Changelog](https://github.com/rust-lang/libc/blob/0.2.158/CHANGELOG.md)
    - [Commits](rust-lang/libc@0.2.155...0.2.158)
    
    ---
    updated-dependencies:
    - dependency-name: libc
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and d-e-s-o committed Aug 20, 2024
    Configuration menu
    Copy the full SHA
    6877dc5 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. build(deps): bump test-tag from 0.1.3 to 0.1.4

    Bumps [test-tag](https://github.com/d-e-s-o/test-tag) from 0.1.3 to 0.1.4.
    - [Release notes](https://github.com/d-e-s-o/test-tag/releases)
    - [Changelog](https://github.com/d-e-s-o/test-tag/blob/main/CHANGELOG.md)
    - [Commits](d-e-s-o/test-tag@v0.1.3...v0.1.4)
    
    ---
    updated-dependencies:
    - dependency-name: test-tag
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and d-e-s-o committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    658277e View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. libbpf-cargo: Suppress some Clippy warnings

    With the changes to initialize maps inline during skeleton open/load, we
    may end up with Clippy complaining that a loop never loops or a match
    never matches, if there are no maps present.
    Silence the warnings. Such patterns are to be expected in generated code
    like this.
    
    Closes: #921
    
    Signed-off-by: Daniel Müller <deso@posteo.net>
    d-e-s-o committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    ddbb119 View commit details
    Browse the repository at this point in the history
  2. Release 0.24.3

    Prepare for release of 0.24.3 by bumping both libbpf-rs and libbpf-cargo
    versions accordingly. The main change included is a fix for potential
    clippy warnings in the generated skeleton when no BPF maps are present
    in the corresponding object file.
    
    Signed-off-by: Daniel Müller <deso@posteo.net>
    d-e-s-o committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    57a11cf View commit details
    Browse the repository at this point in the history
Loading