go.mod: bump osbuild/images to c2aa82cc9a86
images 0.1.0 and 0.2.0 were already released, but they are incompatible with osbuild-composer's test suite. However, we need to support F40 as soon as possible. This commit as a workaround: it bumps the dependency to a new enough version that has Fedora 40, but it's old enough that it doesn't have the breaking changes.
This commit is contained in:
parent
8ba1976b02
commit
4499356bfd
34 changed files with 844 additions and 324 deletions
3
vendor/github.com/osbuild/images/pkg/distro/fedora/distro.go
generated
vendored
3
vendor/github.com/osbuild/images/pkg/distro/fedora/distro.go
generated
vendored
|
|
@ -501,6 +501,9 @@ func NewF38() distro.Distro {
|
|||
func NewF39() distro.Distro {
|
||||
return newDistro(39)
|
||||
}
|
||||
func NewF40() distro.Distro {
|
||||
return newDistro(40)
|
||||
}
|
||||
|
||||
func newDistro(version int) distro.Distro {
|
||||
rd := getDistro(version)
|
||||
|
|
|
|||
1
vendor/github.com/osbuild/images/pkg/distroregistry/distroregistry.go
generated
vendored
1
vendor/github.com/osbuild/images/pkg/distroregistry/distroregistry.go
generated
vendored
|
|
@ -19,6 +19,7 @@ var supportedDistros = []func() distro.Distro{
|
|||
fedora.NewF37,
|
||||
fedora.NewF38,
|
||||
fedora.NewF39,
|
||||
fedora.NewF40,
|
||||
|
||||
rhel7.New,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue