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: containernetworking/plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.9.0
Choose a base ref
...
head repository: containernetworking/plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.9.1
Choose a head ref
  • 6 commits
  • 59 files changed
  • 5 contributors

Commits on Dec 16, 2025

  1. bandwidth: handle nil bandwidth in CHECK

    Somehow we missed this case; if CHECK is called with no bandwidth
    configuration, we segfault. Oops.
    
    Fixes: #1221
    
    Signed-off-by: Casey Callendrello <[email protected]>
    squeed committed Dec 16, 2025
    Configuration menu
    Copy the full SHA
    8c4a6b3 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2026

  1. vrf: fix route filtering to preserve IPAM-configured routes

    The previous implementation filtered out routes without an explicit
    source address (route.Src == nil), which incorrectly removed routes
    added by IPAM plugins. IPAM plugins typically configure routes without
    setting a source address, causing those routes to be lost when the
    interface was moved to the VRF.
    
    The SCOPE_UNIVERSE filter already excludes local and connected routes
    that are automatically recreated by the kernel, so the additional
    route.Src filter was both unnecessary and harmful.
    
    Fixes #1223
    
    Signed-off-by: Marcelo Guerrero <[email protected]>
    mlguerrero12 authored and squeed committed Feb 16, 2026
    Configuration menu
    Copy the full SHA
    ccc8314 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2026

  1. fix(test): use shorter veth peer name

    The "test" prefix on hostVethName exceeds the 15-char Linux interface
    name limit (IFNAMSIZ), causing ERANGE instead of EEXIST. Shorten the
    prefix so the test exercises the intended error path.
    
    Signed-off-by: Marcelo Guerrero <[email protected]>
    mlguerrero12 authored and squeed committed Feb 17, 2026
    Configuration menu
    Copy the full SHA
    dfb1f9a View commit details
    Browse the repository at this point in the history
  2. CVE-2025-52881: Bump selinux to 1.13.0

    Signed-off-by: sbiradar10 <[email protected]>
    sbiradar10 authored and squeed committed Feb 17, 2026
    Configuration menu
    Copy the full SHA
    dada84a View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2026

  1. build(deps): bump golangci/golangci-lint-action from 8 to 9

    Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 8 to 9.
    - [Release notes](https://github.com/golangci/golangci-lint-action/releases)
    - [Commits](golangci/golangci-lint-action@v8...v9)
    
    ---
    updated-dependencies:
    - dependency-name: golangci/golangci-lint-action
      dependency-version: '9'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and squeed committed Feb 18, 2026
    Configuration menu
    Copy the full SHA
    4161e44 View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2026

  1. bridge: include attempted IP address in AddrAdd error message

    This PR includes the IP in the `AddrAdd` error message which could help debug better with any issues while adding the IP address to the bridge and improves the readability.
    
    Signed-off-by: Amulyam24 <[email protected]>
    Amulyam24 authored and mlguerrero12 committed Feb 19, 2026
    Configuration menu
    Copy the full SHA
    adc3e6b View commit details
    Browse the repository at this point in the history
Loading