diff --git a/docs/news/unreleased/cloudapi-upload-status.md b/docs/news/unreleased/cloudapi-upload-status.md new file mode 100644 index 000000000..070ce6574 --- /dev/null +++ b/docs/news/unreleased/cloudapi-upload-status.md @@ -0,0 +1,16 @@ +# Cloud API: include upload target-specific options in `UploadStatus` + +The `UploadStatus` now includes additional information in its `options` property. +The information is specific to the chosen target Cloud provider and it is necessary +to successfully identify the built and shared OS image by the end user. Currently +this information is returned for both supported targets, **AWS** and **GCP**. + +Information included for **AWS** target: + +- AMI +- Region + +Information included for **GCP** target: + +- Image name +- Image's source Project ID diff --git a/docs/news/unreleased/rhel84-grub2-saved-entry.md b/docs/news/unreleased/rhel84-grub2-saved-entry.md index ed3f52b26..7788b0303 100644 --- a/docs/news/unreleased/rhel84-grub2-saved-entry.md +++ b/docs/news/unreleased/rhel84-grub2-saved-entry.md @@ -1,5 +1,5 @@ # RHEL8.4: Fix grub2 kernel selection -By marking the kernel we install as the `saved_entry`, we make sure that installing additional/subsequent kernels do not unintentienally change the default kernel to be booted into. +By marking the kernel we install as the `saved_entry`, we make sure that installing additional/subsequent kernels do not unintentionally change the default kernel to be booted into. Relevant PR: https://github.com/osbuild/osbuild-composer/pull/1241