Merge pull request #3064 from glours/bump-compose-v2.34.0

bump compose-go to v2.4.9
This commit is contained in:
Tõnis Tiigi
2025-03-20 20:27:32 -07:00
committed by GitHub
43 changed files with 663 additions and 205 deletions

View File

@ -4,6 +4,7 @@ import (
"context"
"encoding/json"
"fmt"
"maps"
"sort"
"strings"
"time"
@ -409,9 +410,7 @@ func truncPlatforms(pfs []string, max int) truncatedPlatforms {
left[ppf] = append(left[ppf], pf)
}
}
for k, v := range left {
res[k] = v
}
maps.Copy(res, left)
return truncatedPlatforms{
res: res,
input: pfs,