Bug 2436476 - Changes/ContainerImagesLabels
Summary: Changes/ContainerImagesLabels
Keywords:
Status: ON_QA
Alias: None
Product: Fedora
Classification: Fedora
Component: Changes Tracking
Version: rawhide
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Jan Pazdziora
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks: F44Changes
TreeView+ depends on / blocked
 
Reported: 2026-02-03 19:44 UTC by Allison King
Modified: 2026-02-03 20:59 UTC (History)
2 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Type: ---
Embargoed:
fedora-admin-xmlrpc: mirror+


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Issue Tracker FC-3070 0 None None None 2026-02-03 19:46:16 UTC

Description Allison King 2026-02-03 19:44:15 UTC
This is a tracking bug for Change: Changes/ContainerImagesLabels
For more details, see: https://fedoraproject.org/wiki/Changes/ContainerImagesLabels

The `org.opencontainers.image.name` and `org.opencontainers.image.license` labels in Fedora container images get changed to `org.opencontainers.image.title` and `org.opencontainers.image.licenses` to more closely align with [https://specs.opencontainers.org/image-spec/annotations/ The OpenContainers Annotations Spec].

If you encounter a bug related to this Change, please do not comment here. Instead create a new bug and set it to block this bug.

Comment 1 Jan Pazdziora 2026-02-03 20:59:55 UTC
The change was implemented via https://pagure.io/fedora-kiwi-descriptions/pull-request/251 for Fedora 44, https://pagure.io/fedora-kiwi-descriptions/pull-request/258 for Fedora 43, and https://pagure.io/fedora-kiwi-descriptions/pull-request/259 for Fedora 42.

It is now live:

$ skopeo inspect --config docker://registry.fedoraproject.org/fedora:44 | jq .config.Labels
{
  "io.buildah.version": "1.42.2",
  "org.opencontainers.image.licenses": "MIT",
  "org.opencontainers.image.title": "fedora",
  "org.opencontainers.image.url": "https://fedoraproject.org/",
  "org.opencontainers.image.vendor": "Fedora Project",
  "org.opencontainers.image.version": "rawhide"
}
$ skopeo inspect --config docker://registry.fedoraproject.org/fedora:43 | jq .config.Labels
{
  "io.buildah.version": "1.42.2",
  "license": "MIT",
  "name": "fedora",
  "org.opencontainers.image.license": "MIT",
  "org.opencontainers.image.licenses": "MIT",
  "org.opencontainers.image.name": "fedora",
  "org.opencontainers.image.title": "fedora",
  "org.opencontainers.image.url": "https://fedoraproject.org/",
  "org.opencontainers.image.vendor": "Fedora Project",
  "org.opencontainers.image.version": "43",
  "vendor": "Fedora Project",
  "version": "43"
}
$ skopeo inspect --config docker://registry.fedoraproject.org/fedora:42 | jq .config.Labels
{
  "io.buildah.version": "1.42.2",
  "license": "MIT",
  "name": "fedora",
  "org.opencontainers.image.license": "MIT",
  "org.opencontainers.image.licenses": "MIT",
  "org.opencontainers.image.name": "fedora",
  "org.opencontainers.image.title": "fedora",
  "org.opencontainers.image.url": "https://fedoraproject.org/",
  "org.opencontainers.image.vendor": "Fedora Project",
  "org.opencontainers.image.version": "42",
  "vendor": "Fedora Project",
  "version": "42"
}


Note You need to log in before you can comment on or make changes to this bug.