diff --git a/0001-fix-CVE-2024-24786.patch b/0001-Fix-CVE-2024-24786.patch similarity index 46% rename from 0001-fix-CVE-2024-24786.patch rename to 0001-Fix-CVE-2024-24786.patch index dd79b26b781eb994d32cd676e32035955a9c9ff1..0e0e1377da4bba9ba9299c3d9c4d377a5177f045 100644 --- a/0001-fix-CVE-2024-24786.patch +++ b/0001-Fix-CVE-2024-24786.patch @@ -1,48 +1,30 @@ -From 171172b7a8a24104415f1d461da7a839dd9933a3 Mon Sep 17 00:00:00 2001 -From: bwzhang -Date: Mon, 25 Mar 2024 10:47:11 +0800 -Subject: [PATCH] fix CVE-2024-24786 +From b479c8f294b21bd0d0f89efadc9978b8f6cf05a5 Mon Sep 17 00:00:00 2001 +From: lauk001 +Date: Mon, 15 Apr 2024 14:38:31 +0800 +Subject: [PATCH] Fix CVE-2024-24786 -encoding/protojson, internal/encoding/json: handle missing object values - -In internal/encoding/json, report an error when encountering a } -when we are expecting an object field value. For example, the input - now correctly results in an error at the closing } token. - -In encoding/protojson, check for an unexpected EOF token in -skipJSONValue. This is redundant with the check in internal/encoding/json, -but adds a bit more defense against any other similar bugs that -might exist. - -Fixes CVE-2024-24786 - -Change-Id: I03d52512acb5091c8549e31ca74541d57e56c99d -Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/569356 -TryBot-Bypass: Damien Neil -Reviewed-by: Roland Shoemaker -Commit-Queue: Damien Neil --- .../protobuf/encoding/protojson/well_known_types.go | 4 ++++ .../protobuf/internal/encoding/json/decode.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go b/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go -index 72924a9..d3825ba 100644 +index 25329b7..4b177c8 100644 --- a/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go +++ b/vendor/google.golang.org/protobuf/encoding/protojson/well_known_types.go -@@ -328,6 +328,10 @@ func (d decoder) skipJSONValue() error { - if err := d.skipJSONValue(); err != nil { - return err - } -+ case json.EOF: -+ // This can only happen if there's a bug in Decoder.Read. -+ // Avoid an infinite loop if this does happen. -+ return errors.New("unexpected EOF") +@@ -322,6 +322,10 @@ func (d decoder) skipJSONValue() error { + if open > d.opts.RecursionLimit { + return errors.New("exceeded max recursion depth") } ++ case json.EOF: ++ // This can only happen if there's a bug in Decoder.Read. ++ // Avoid an infinite loop if this does happen. ++ return errors.New("unexpected EOF") } - + if open == 0 { + return nil diff --git a/vendor/google.golang.org/protobuf/internal/encoding/json/decode.go b/vendor/google.golang.org/protobuf/internal/encoding/json/decode.go -index b13fd29..b2be4e8 100644 +index d043a6e..d2b3ac0 100644 --- a/vendor/google.golang.org/protobuf/internal/encoding/json/decode.go +++ b/vendor/google.golang.org/protobuf/internal/encoding/json/decode.go @@ -121,7 +121,7 @@ func (d *Decoder) Read() (Token, error) { @@ -55,5 +37,5 @@ index b13fd29..b2be4e8 100644 return Token{}, d.newSyntaxError(tok.pos, unexpectedFmt, tok.RawString()) } -- -2.20.1 +2.33.0 diff --git a/ignition-2.17.0.tar.gz b/ignition-2.18.0.tar.gz similarity index 40% rename from ignition-2.17.0.tar.gz rename to ignition-2.18.0.tar.gz index 00ad54ae479837365cbd8b55c43fd430b29dd6ac..d266c5690d4e7694639190047988a69544966835 100644 Binary files a/ignition-2.17.0.tar.gz and b/ignition-2.18.0.tar.gz differ diff --git a/ignition.spec b/ignition.spec index 1d2d153ff5c5407ea6a964de2cc01b903eedb8ac..cb2bceddcaeb201e3a36ac8506c737264ff1645c 100644 --- a/ignition.spec +++ b/ignition.spec @@ -5,17 +5,17 @@ %global gotest go test Name: ignition -Version: 2.17.0 -Release: 2 +Version: 2.18.0 +Release: 1 Summary: First boot installer and configuration tool License: Apache-2.0 URL: https://github.com/coreos/ignition Source0: https://github.com/coreos/ignition/archive/v%{version}/%{name}-%{version}.tar.gz -Patch0001: 0001-fix-CVE-2024-24786.patch +Patch0001: 0001-Fix-CVE-2024-24786.patch BuildRequires: libblkid-devel -BuildRequires: golang >= 1.19 +BuildRequires: golang >= 1.20 BuildRequires: systemd # Requires for 'disks' stage @@ -27,65 +27,65 @@ Requires: dracut-network # Main package Provides (generated with go-mods-to-bundled-provides.py | sort) Provides: bundled(golang(cloud.google.com/go/compute/metadata)) = 0.2.3 -Provides: bundled(golang(cloud.google.com/go/storage)) = 1.35.1 -Provides: bundled(golang(cloud.google.com/go/storage/internal)) = 1.35.1 -Provides: bundled(golang(cloud.google.com/go/storage/internal/apiv2)) = 1.35.1 -Provides: bundled(golang(cloud.google.com/go/storage/internal/apiv2/storagepb)) = 1.35.1 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/arn)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/auth/bearer)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/awserr)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/awsutil)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/client)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/client/metadata)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/corehandlers)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/endpointcreds)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/processcreds)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/ssocreds)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/stscreds)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/csm)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/defaults)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/ec2metadata)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/endpoints)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/request)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/session)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/signer/v4)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/context)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/ini)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/s3shared)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/s3shared/arn)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/s3shared/s3err)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkio)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkmath)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkrand)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkuri)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/shareddefaults)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/strings)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sync/singleflight)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/checksum)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/eventstream)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/eventstream/eventstreamapi)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/json/jsonutil)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/jsonrpc)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/query)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/query/queryutil)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/rest)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/restjson)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/restxml)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/service/s3)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/service/s3/s3iface)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/service/s3/s3manager)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sso)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/service/ssooidc)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sso/ssoiface)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sts)) = 1.47.9 -Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sts/stsiface)) = 1.47.9 -Provides: bundled(golang(github.com/beevik/etree)) = 1.2.0 -Provides: bundled(golang(github.com/containers/libhvee/pkg/kvp)) = 0.4.0 +Provides: bundled(golang(cloud.google.com/go/storage)) = 1.38.0 +Provides: bundled(golang(cloud.google.com/go/storage/internal)) = 1.38.0 +Provides: bundled(golang(cloud.google.com/go/storage/internal/apiv2)) = 1.38.0 +Provides: bundled(golang(cloud.google.com/go/storage/internal/apiv2/storagepb)) = 1.38.0 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/arn)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/auth/bearer)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/awserr)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/awsutil)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/client)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/client/metadata)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/corehandlers)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/endpointcreds)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/processcreds)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/ssocreds)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/credentials/stscreds)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/csm)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/defaults)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/ec2metadata)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/endpoints)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/request)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/session)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/aws/signer/v4)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/context)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/ini)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/s3shared)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/s3shared/arn)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/s3shared/s3err)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkio)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkmath)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkrand)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sdkuri)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/shareddefaults)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/strings)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/internal/sync/singleflight)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/checksum)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/eventstream)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/eventstream/eventstreamapi)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/json/jsonutil)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/jsonrpc)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/query)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/query/queryutil)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/rest)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/restjson)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/restxml)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/service/s3)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/service/s3/s3iface)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/service/s3/s3manager)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sso)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/service/ssooidc)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sso/ssoiface)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sts)) = 1.50.25 +Provides: bundled(golang(github.com/aws/aws-sdk-go/service/sts/stsiface)) = 1.50.25 +Provides: bundled(golang(github.com/beevik/etree)) = 1.3.0 +Provides: bundled(golang(github.com/containers/libhvee/pkg/kvp)) = 0.6.0 Provides: bundled(golang(github.com/coreos/go-semver/semver)) = 0.3.1 Provides: bundled(golang(github.com/coreos/go-systemd/v22/dbus)) = 22.5.0 Provides: bundled(golang(github.com/coreos/go-systemd/v22/journal)) = 22.5.0 @@ -96,7 +96,7 @@ Provides: bundled(golang(github.com/coreos/vcontext/report)) = 0.0.0-20230201181 Provides: bundled(golang(github.com/coreos/vcontext/tree)) = 0.0.0-20230201181013.gitd72178a18687 Provides: bundled(golang(github.com/coreos/vcontext/validate)) = 0.0.0-20230201181013.gitd72178a18687 Provides: bundled(golang(github.com/google/renameio/v2)) = 2.0.0 -Provides: bundled(golang(github.com/google/uuid)) = 1.4.0 +Provides: bundled(golang(github.com/google/uuid)) = 1.6.0 Provides: bundled(golang(github.com/mdlayher/vsock)) = 1.2.1 Provides: bundled(golang(github.com/mitchellh/copystructure)) = 1.2.0 Provides: bundled(golang(github.com/pin/tftp)) = 2.1.0 @@ -109,45 +109,44 @@ Provides: bundled(golang(github.com/vmware/vmw-guestinfo/message)) = 0.0.0-20220 Provides: bundled(golang(github.com/vmware/vmw-guestinfo/rpcout)) = 0.0.0-20220317130741.git510905f0efa3 Provides: bundled(golang(github.com/vmware/vmw-guestinfo/rpcvmx)) = 0.0.0-20220317130741.git510905f0efa3 Provides: bundled(golang(github.com/vmware/vmw-guestinfo/vmcheck)) = 0.0.0-20220317130741.git510905f0efa3 -Provides: bundled(golang(golang.org/x/net/bpf)) = 0.18.0 -Provides: bundled(golang(golang.org/x/net/context)) = 0.18.0 -Provides: bundled(golang(golang.org/x/net/http2)) = 0.18.0 -Provides: bundled(golang(golang.org/x/net/http2/hpack)) = 0.18.0 -Provides: bundled(golang(golang.org/x/net/http/httpguts)) = 0.18.0 -Provides: bundled(golang(golang.org/x/net/http/httpproxy)) = 0.18.0 -Provides: bundled(golang(golang.org/x/net/idna)) = 0.18.0 -Provides: bundled(golang(golang.org/x/net/internal/timeseries)) = 0.18.0 -Provides: bundled(golang(golang.org/x/net/trace)) = 0.18.0 -Provides: bundled(golang(golang.org/x/oauth2)) = 0.14.0 -Provides: bundled(golang(golang.org/x/oauth2/authhandler)) = 0.14.0 -Provides: bundled(golang(golang.org/x/oauth2/google)) = 0.14.0 -Provides: bundled(golang(golang.org/x/oauth2/google/internal/externalaccount)) = 0.14.0 -Provides: bundled(golang(golang.org/x/oauth2/google/internal/externalaccountauthorizeduser)) = 0.14.0 -Provides: bundled(golang(golang.org/x/oauth2/google/internal/stsexchange)) = 0.14.0 -Provides: bundled(golang(golang.org/x/oauth2/internal)) = 0.14.0 -Provides: bundled(golang(golang.org/x/oauth2/jws)) = 0.14.0 -Provides: bundled(golang(golang.org/x/oauth2/jwt)) = 0.14.0 -Provides: bundled(golang(golang.org/x/sys/cpu)) = 0.14.0 -Provides: bundled(golang(golang.org/x/sys/unix)) = 0.14.0 -Provides: bundled(golang(google.golang.org/api/googleapi)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/googleapi/transport)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/iamcredentials/v1)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/internal)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/internal/cert)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/internal/gensupport)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/internal/impersonate)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/internal/third_party/uritemplates)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/iterator)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/option)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/option/internaloption)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/storage/v1)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/transport)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/transport/grpc)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/transport/http)) = 0.151.0 -Provides: bundled(golang(google.golang.org/api/transport/http/internal/propagation)) = 0.151.0 +Provides: bundled(golang(golang.org/x/net/bpf)) = 0.21.0 +Provides: bundled(golang(golang.org/x/net/http2)) = 0.21.0 +Provides: bundled(golang(golang.org/x/net/http2/hpack)) = 0.21.0 +Provides: bundled(golang(golang.org/x/net/http/httpguts)) = 0.21.0 +Provides: bundled(golang(golang.org/x/net/http/httpproxy)) = 0.21.0 +Provides: bundled(golang(golang.org/x/net/idna)) = 0.21.0 +Provides: bundled(golang(golang.org/x/net/internal/timeseries)) = 0.21.0 +Provides: bundled(golang(golang.org/x/net/trace)) = 0.21.0 +Provides: bundled(golang(golang.org/x/oauth2)) = 0.17.0 +Provides: bundled(golang(golang.org/x/oauth2/authhandler)) = 0.17.0 +Provides: bundled(golang(golang.org/x/oauth2/google)) = 0.17.0 +Provides: bundled(golang(golang.org/x/oauth2/google/internal/externalaccount)) = 0.17.0 +Provides: bundled(golang(golang.org/x/oauth2/google/internal/externalaccountauthorizeduser)) = 0.17.0 +Provides: bundled(golang(golang.org/x/oauth2/google/internal/stsexchange)) = 0.17.0 +Provides: bundled(golang(golang.org/x/oauth2/internal)) = 0.17.0 +Provides: bundled(golang(golang.org/x/oauth2/jws)) = 0.17.0 +Provides: bundled(golang(golang.org/x/oauth2/jwt)) = 0.17.0 +Provides: bundled(golang(golang.org/x/sys/cpu)) = 0.17.0 +Provides: bundled(golang(golang.org/x/sys/unix)) = 0.17.0 +Provides: bundled(golang(golang.org/x/sys/windows)) = 0.17.0 +Provides: bundled(golang(google.golang.org/api/googleapi)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/googleapi/transport)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/iamcredentials/v1)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/internal)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/internal/cert)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/internal/gensupport)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/internal/impersonate)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/internal/third_party/uritemplates)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/iterator)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/option)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/option/internaloption)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/storage/v1)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/transport)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/transport/grpc)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/transport/http)) = 0.167.0 +Provides: bundled(golang(google.golang.org/api/transport/http/internal/propagation)) = 0.167.0 Provides: bundled(golang(gopkg.in/yaml.v3)) = 3.0.1 - %description Ignition is a utility used to manipulate systems during the initramfs. This includes partitioning disks, formatting partitions, writing files @@ -224,6 +223,9 @@ install -p -m 0755 ./ignition %{buildroot}/%{dracutlibdir}/modules.d/30ignition %{_bindir}/ignition-validate %changelog +* Mon Apr 15 2024 liukuo - 2.18.0-1 +- upgrade version to 2.18.0, featuring selective inclusion of the dracut module in initramfs upon request and added support for Scaleway + * Wed Apr 10 2024 zhangbowei - 2.17.0-2 - Type:bugfix - CVE:NA