File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 11# NVIDIA Container Toolkit Changelog
22
3+ ## v1.18.0-rc.2
4+
5+ - Load settings from config.toml file during CDI generation
6+ - Use securejoin to resolve /proc
7+ - Refactor nvml CDI spec generation for consistency
8+ - Simplify nvcdi interface
9+ - Add SpecGenerator interface
10+ - Ensure that modified params file mount does not leak to host
11+ - Add test for leaking mounts with shared mount propagation
12+
13+ ### Changes in the Toolkit Container
14+
15+ - Bump nvidia/distroless/go to v3.1.10-dev in /deployments/container
16+ - Bump nvidia/cuda to 12.9.1-base-ubi9 in /deployments/container
17+
318## v1.18.0-rc.1
419
520- Add create-soname-symlinks hook
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ LIB_NVIDIA_CONTAINER_REFERENCE=$( git ls-tree $REFERENCE third_party/libnvidia-c
102102LIB_NVIDIA_CONTAINER_VERSION=$( git ls-tree $SHA third_party/libnvidia-container --object-only )
103103
104104echo " "
105- if [[ $( git -C third_party/libnvidia-container log --pretty=format:" %s" $LIB_NVIDIA_CONTAINER_REFERENCE ..$LIB_NVIDIA_CONTAINER_VERSION | grep -Ev " (^Merge )|(^Bump)|(no-rel-?note)|(^---)" | sed ' s/^\(.*\)/- \1/g' | wc -l) -gt 0 ]]; then
105+ if [[ " ${LIB_NVIDIA_CONTAINER_REFERENCE} " != " ${LIB_NVIDIA_CONTAINER_VERSION} " ]] && [[ $( git -C third_party/libnvidia-container log --pretty=format:" %s" $LIB_NVIDIA_CONTAINER_REFERENCE ..$LIB_NVIDIA_CONTAINER_VERSION | grep -Ev " (^Merge )|(^Bump)|(no-rel-?note)|(^---)" | sed ' s/^\(.*\)/- \1/g' | wc -l) -gt 0 ]]; then
106106echo " ### Changes in libnvidia-container"
107107echo " "
108108git -C third_party/libnvidia-container log --pretty=format:" %s" $LIB_NVIDIA_CONTAINER_REFERENCE ..$LIB_NVIDIA_CONTAINER_VERSION | grep -Ev " (^Merge )|(^Bump)|(no-rel-?note)|(^---)" | sed ' s/^\(.*\)/- \1/g'
Original file line number Diff line number Diff line change 1414
1515LIB_NAME := nvidia-container-toolkit
1616LIB_VERSION := 1.18.0
17- LIB_TAG := rc.1
17+ LIB_TAG := rc.2
1818
1919# The package version is the combination of the library version and tag.
2020# If the tag is specified the two components are joined with a tilde (~).
You can’t perform that action at this time.
0 commit comments