Update containerization dependency with new EXT4Unpacker func definition (#1973)

Signed-off-by: Kathryn Baldauf <k_baldauf@apple.com>
This commit is contained in:
Kathryn Baldauf
2026-07-21 13:52:31 -07:00
committed by GitHub
parent 90be1878d8
commit 06127de1cd
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
{
"originHash" : "15ed2ff0d93ae40806863cea3fbe5a18b46054b842b289ce5f5c6031bea5d28a",
"originHash" : "12dd01b636ad85e70d70f21bafeba9939a6bcae045ec5a851d5e99729cfbe7eb",
"pins" : [
{
"identity" : "async-http-client",
@@ -15,8 +15,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/containerization.git",
"state" : {
"revision" : "1d5641ff962456df021283505eaa6a701d828192",
"version" : "0.37.0"
"revision" : "d9868bb657fac3b55ed5dcec97c8eb8a08e78bf5",
"version" : "0.38.0"
}
},
{
+1 -1
View File
@@ -23,7 +23,7 @@ import PackageDescription
let releaseVersion = ProcessInfo.processInfo.environment["RELEASE_VERSION"] ?? "0.0.0"
let gitCommit = ProcessInfo.processInfo.environment["GIT_COMMIT"] ?? "unspecified"
let builderShimVersion = "0.13.0"
let scVersion = "0.37.0"
let scVersion = "0.38.0"
let package = Package(
name: "container",
@@ -43,7 +43,7 @@ public actor SnapshotStore {
if image.reference == initImage {
minBlockSize = 512.mib()
}
return EXT4Unpacker(blockSizeInBytes: minBlockSize)
return EXT4Unpacker(capacityInBytes: minBlockSize)
}
}