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: NVIDIA/k8s-device-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dfcf728
Choose a base ref
...
head repository: NVIDIA/k8s-device-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fb1242a
Choose a head ref
  • 20 commits
  • 39 files changed
  • 3 contributors

Commits on Dec 2, 2025

  1. Bump actions/upload-pages-artifact from 3 to 4

    Bumps [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/upload-pages-artifact/releases)
    - [Commits](actions/upload-pages-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-pages-artifact
      dependency-version: '4'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 2, 2025
    Configuration menu
    Copy the full SHA
    fae0785 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2025

  1. Bump actions/upload-artifact from 5 to 6

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-version: '6'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 14, 2025
    Configuration menu
    Copy the full SHA
    7eb2996 View commit details
    Browse the repository at this point in the history
  2. Bump nvidia/distroless/go in /deployments/container

    Bumps nvidia/distroless/go from v3.2.1-dev to v3.2.2-dev.
    
    ---
    updated-dependencies:
    - dependency-name: nvidia/distroless/go
      dependency-version: v3.2.2-dev
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 14, 2025
    Configuration menu
    Copy the full SHA
    05b028c View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2026

  1. Merge pull request #1567 from NVIDIA/dependabot/github_actions/releas…

    …e-0.18/actions/upload-artifact-6
    
    Bump actions/upload-artifact from 5 to 6
    elezar authored Jan 5, 2026
    Configuration menu
    Copy the full SHA
    ce066df View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2026

  1. Fix race condition in config-manager when label is unset

    When the node label (nvidia.com/device-plugin.config) is not set, a race
    condition could cause the config-manager to hang indefinitely on startup.
    
    The issue occurred when the informer's AddFunc fired before the first Get()
    call, setting current="" and broadcasting. When Get() was subsequently called,
    it found lastRead == current (both empty strings) and waited forever, as no
    future events would wake it up.
    
    This fix adds an 'initialized' flag to SyncableConfig to ensure the first
    Get() call never waits, regardless of timing. Subsequent Get() calls still
    wait properly when the value hasn't changed.
    
    Signed-off-by: Uri Sternik <[email protected]>
    (cherry picked from commit ab05ace)
    uristernik authored and nvidia-backport-bot committed Jan 7, 2026
    Configuration menu
    Copy the full SHA
    09d5135 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2026

  1. fix: Ensure that cdi.FeatureFlags are passed to CDI library

    Although the cdi.FeatureFlags were added as CLI arguments to the
    device plugin, these were not passed to the nvcdi library construction.
    
    This change ensures that these are properly captured.
    
    Signed-off-by: Evan Lezar <[email protected]>
    (cherry picked from commit 2baf633)
    elezar authored and nvidia-backport-bot committed Jan 9, 2026
    Configuration menu
    Copy the full SHA
    4b3d76a View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2026

  1. Merge pull request #1577 from NVIDIA/backport-1541-to-release-0.18

    [release-0.18] Fix race condition in config-manager when label is unset
    elezar authored Jan 15, 2026
    Configuration menu
    Copy the full SHA
    b80634e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1581 from NVIDIA/backport-1566-to-release-0.18

    [release-0.18] fix: Ensure that cdi.FeatureFlags are passed to CDI library
    elezar authored Jan 15, 2026
    Configuration menu
    Copy the full SHA
    2b834b8 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1568 from NVIDIA/dependabot/docker/deployments/co…

    …ntainer/release-0.18/nvidia/distroless/go-v3.2.2-dev
    
    Bump nvidia/distroless/go from v3.2.1-dev to v3.2.2-dev in /deployments/container
    elezar authored Jan 15, 2026
    Configuration menu
    Copy the full SHA
    d2e0c6b View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2026

  1. Bump golang from 1.25.4 to 1.25.6 in /deployments/container

    Bumps golang from 1.25.4 to 1.25.6.
    
    ---
    updated-dependencies:
    - dependency-name: golang
      dependency-version: 1.25.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jan 18, 2026
    Configuration menu
    Copy the full SHA
    e69c3cb View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2026

  1. Merge pull request #1590 from NVIDIA/dependabot/docker/deployments/co…

    …ntainer/release-0.18/golang-1.25.6
    
    Bump golang from 1.25.4 to 1.25.6 in /deployments/container
    elezar authored Jan 19, 2026
    Configuration menu
    Copy the full SHA
    37540d9 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2026

  1. Merge pull request #1514 from NVIDIA/dependabot/github_actions/releas…

    …e-0.18/actions/upload-pages-artifact-4
    
    Bump actions/upload-pages-artifact from 3 to 4
    elezar authored Jan 23, 2026
    Configuration menu
    Copy the full SHA
    5c4b69e View commit details
    Browse the repository at this point in the history
  2. Bump github.com/sirupsen/logrus from 1.9.3 to 1.9.4

    Bumps [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus) from 1.9.3 to 1.9.4.
    - [Release notes](https://github.com/sirupsen/logrus/releases)
    - [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md)
    - [Commits](sirupsen/logrus@v1.9.3...v1.9.4)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/sirupsen/logrus
      dependency-version: 1.9.4
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jan 23, 2026
    Configuration menu
    Copy the full SHA
    68fdb74 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1592 from NVIDIA/dependabot/go_modules/release-0.…

    …18/github.com/sirupsen/logrus-1.9.4
    
    Bump github.com/sirupsen/logrus from 1.9.3 to 1.9.4
    elezar authored Jan 23, 2026
    Configuration menu
    Copy the full SHA
    3dde805 View commit details
    Browse the repository at this point in the history
  4. Bump github.com/NVIDIA/nvidia-container-toolkit to v1.18.2

    Signed-off-by: Evan Lezar <[email protected]>
    elezar committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    5c90e7c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #1598 from elezar/bump-nvidia-container-toolkit-v1…

    ….18.2
    
    Bump github.com/NVIDIA/nvidia-container-toolkit to v1.18.2
    elezar authored Jan 23, 2026
    Configuration menu
    Copy the full SHA
    764afb4 View commit details
    Browse the repository at this point in the history
  6. Bump version for v0.18.2 release

    Signed-off-by: Evan Lezar <[email protected]>
    elezar committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    419bad7 View commit details
    Browse the repository at this point in the history
  7. Bump version to 0.18.2 in deployments

    Signed-off-by: Evan Lezar <[email protected]>
    elezar committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    2e2d5c0 View commit details
    Browse the repository at this point in the history
  8. Bump version in CHANGELOG

    Signed-off-by: Evan Lezar <[email protected]>
    elezar committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    de63c4d View commit details
    Browse the repository at this point in the history
  9. Merge pull request #1600 from elezar/bump-release-v0.18.2

    Bump release v0.18.2
    elezar authored Jan 23, 2026
    Configuration menu
    Copy the full SHA
    fb1242a View commit details
    Browse the repository at this point in the history
Loading