Skip to content

Commit c7f91ad

Browse files
Merge pull request #1180 from ArangoGutierrez/1.18.0rc2
Bump release v1.18.0 rc.2
2 parents a786a6d + 9cd8bda commit c7f91ad

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
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

hack/generate-changelog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ LIB_NVIDIA_CONTAINER_REFERENCE=$( git ls-tree $REFERENCE third_party/libnvidia-c
102102
LIB_NVIDIA_CONTAINER_VERSION=$( git ls-tree $SHA third_party/libnvidia-container --object-only )
103103

104104
echo ""
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
106106
echo "### Changes in libnvidia-container"
107107
echo ""
108108
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'

versions.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
LIB_NAME := nvidia-container-toolkit
1616
LIB_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 (~).

0 commit comments

Comments
 (0)