Comparing master...stable/2025.2 · openstack/ironic-python-agent-builder · GitHub
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openstack/ironic-python-agent-builder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: openstack/ironic-python-agent-builder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: stable/2025.2
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 9 commits
  • 10 files changed
  • 6 contributors

Commits on Sep 18, 2025

  1. Update .gitreview for stable/2025.2

    Change-Id: Ie84e2a5244ebe66277bbab95fa327e93ee718bbe
    Signed-off-by: OpenStack Release Bot <infra-root@openstack.org>
    Generated-By: openstack/project-config:roles/copy-release-tools-scripts/files/release-tools/functions
    openstackadmin committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    d2a5ea1 View commit details
    Browse the repository at this point in the history
  2. Update TOX_CONSTRAINTS_FILE for stable/2025.2

    Update the URL to the upper-constraints file to point to the redirect
    rule on releases.openstack.org so that anyone working on this branch
    will switch to the correct upper-constraints list automatically when
    the requirements repository branches.
    
    Until the requirements repository has as stable/2025.2 branch, tests will
    continue to use the upper-constraints list on master.
    
    Change-Id: I9b282c630cd0f79a590551feafbe5b3dc48473e0
    Signed-off-by: OpenStack Release Bot <infra-root@openstack.org>
    Generated-By: openstack/project-config:roles/copy-release-tools-scripts/files/release-tools/functions
    openstackadmin committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    1899d74 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2025

  1. Publish CentOS Stream 10 IPA dib images

    Change-Id: I95850914746f9e6df7a00d8ed690c938bb8dce94
    Signed-off-by: Riccardo Pittau <elfosardo@gmail.com>
    (cherry picked from commit b083749)
    elfosardo authored and priteau committed Oct 29, 2025
    Configuration menu
    Copy the full SHA
    2a5899d View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2025

  1. Wait up to 30 seconds for config drive

    Handle Virtual Media ISO (sr0) appearing later
    
    Issue: https://bugs.launchpad.net/ironic-python-agent-builder/+bug/2126068
    
    Change-Id: I185f0955d86767784ea6b68c01ffc484c83c61ae
    Signed-off-by: Mathieu Parent <math.parent@gmail.com>
    (cherry picked from commit 9aca8fd)
    sathieu authored and cardoe committed Nov 12, 2025
    Configuration menu
    Copy the full SHA
    b1904e5 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2025

  1. cs10 - remove excess intel firmware

    Adds intel bluetooth, dsps, and wifi adapters to the list of
    firmware blobs which are not needed. This should reduce the
    uncompresses artifacts storage by approximately 95MB.
    
    Change-Id: I92e206583a915738472499d110b8ab6c8fa1861d
    Signed-off-by: Julia Kreger <juliaashleykreger@gmail.com>
    (cherry picked from commit 4bc39d7)
    juliakreger committed Nov 17, 2025
    Configuration menu
    Copy the full SHA
    cecaa03 View commit details
    Browse the repository at this point in the history
  2. Fix firmware cleanup - more.

    Some follow-up checks of recent firmware fixes caused me to realize
    we've mixxed up the firmware cleanup even more and our defensiveness
    on the removal resulted in some confusion.
    
    Ultimately, I guess this is... my second attempt to improve this, but
    also attempt to heavily restrict our automatic glob expansion usage.
    
    2025-11-12 18:58:43.824 | + rm -rf /usr/lib/firmware/vicam
    2025-11-12 18:58:43.824 | + for item in ${IPA_REMOVE_FIRMWARE//,/ }
    2025-11-12 18:58:43.824 | + [[ iwlwifi != '' ]]
    2025-11-12 18:58:43.824 | + [[ iwlwifi =~ / ]]
    2025-11-12 18:58:43.824 | + rm -rf /usr/lib/firmware/iwlwifi
    2025-11-12 18:58:43.824 | + for item in ${IPA_REMOVE_FIRMWARE//,/ }
    2025-11-12 18:58:43.824 | + [[ intel/ibt != '' ]]
    2025-11-12 18:58:43.824 | + [[ intel/ibt =~ / ]]
    2025-11-12 18:58:43.824 | + rm -r -f '/usr/lib/firmware/intel/ibt*'
    
    The net result before this change was the IPA Centos10 build initramfs
    files were running around 533 MB, and with this change the file sizes
    are down to 464MB.
    
    Change-Id: Ie420a192fbf9ed2fa246c31d799078186a5ca8e7
    Signed-off-by: Julia Kreger <juliaashleykreger@gmail.com>
    (cherry picked from commit 34c9532)
    juliakreger committed Nov 17, 2025
    Configuration menu
    Copy the full SHA
    4ccd18d View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2025

  1. Configuration menu
    Copy the full SHA
    9298286 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2026

  1. ci: Pin setuptools to a range that still ships

    Recent setuptools releases (82.0.0 and later) have removed the
    ``pkg_resources`` module. Our docs environment still depends on
    ``pkg_resources`` transitively via ``openstackdocstheme/pbr``,
    causing import error when run under newer environments.
    
    Modeled off of CID's ironic commit.
    
    Change-Id: I90d1bb04321ac912ea1dbe57475f657be6ce3d30
    Signed-off-by: Clif Houck <me@clifhouck.com>
    ClifHouck committed Jun 12, 2026
    Configuration menu
    Copy the full SHA
    bb5286e View commit details
    Browse the repository at this point in the history
  2. Pin setuptools in the requirements.txt copied from IPA

    back to a version that is compatible with stable branches.
    
    Change-Id: Ie76f8f3c3a912dbd9c66b7b23775b0f994f4d19a
    Signed-off-by: Clif Houck <me@clifhouck.com>
    ClifHouck committed Jun 12, 2026
    Configuration menu
    Copy the full SHA
    81207e7 View commit details
    Browse the repository at this point in the history
Loading