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/python-openstackclient
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3c60910
Choose a base ref
...
head repository: openstack/python-openstackclient
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3541c90
Choose a head ref
  • 16 commits
  • 12 files changed
  • 8 contributors

Commits on Mar 18, 2025

  1. Update .gitreview for stable/2025.1

    Change-Id: I98ee6b449f487bda11c4cbf5560693902040177f
    openstackadmin committed Mar 18, 2025
    Configuration menu
    Copy the full SHA
    782ab2b View commit details
    Browse the repository at this point in the history
  2. Update TOX_CONSTRAINTS_FILE for stable/2025.1

    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.1 branch, tests will
    continue to use the upper-constraints list on master.
    
    Change-Id: Iafeb7966d23d4672d45f700d13dc8e117fc0852a
    openstackadmin committed Mar 18, 2025
    Configuration menu
    Copy the full SHA
    c5dc92b View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2025

  1. Add libpcre3-dev in bindep.txt for pcre.h

    Doc job is going to run on Ubuntu Noble[1]
    and we need libpcre3-dev package for pcre.h
    
    [1] https://review.opendev.org/c/openstack/openstack-zuul-jobs/+/935459
    
    Change-Id: I0fe73c02b093805d8eb1b15303f92633fad809cb
    (cherry picked from commit 702a37c)
    Ghanshyam Mann authored and stephenfin committed Mar 19, 2025
    Configuration menu
    Copy the full SHA
    9e623da View commit details
    Browse the repository at this point in the history
  2. identity: Fix 'trust' commands to work with SDK

    Closes-Bug: #2102039
    Change-Id: I632937e06683cc76e78390a4e6f3de4e3c4f1f87
    (cherry picked from commit 1458330)
    kozhukalov authored and stephenfin committed Mar 19, 2025
    Configuration menu
    Copy the full SHA
    d455044 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2025

  1. zuul: Make image job non-voting

    We may need to remove this soon enough, given the new Docker rate limits
    that we keep bumping into.
    
    Change-Id: Id4a9d8df770d107986b20e4a98835ee4e0b6117d
    Signed-off-by: Stephen Finucane <[email protected]>
    (cherry picked from commit 7ef588d)
    stephenfin committed Mar 21, 2025
    Configuration menu
    Copy the full SHA
    94fe341 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e78de74 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aeb6bbc View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2025

  1. Specifying project-domain for project

    The fix ensures that if a user wants to set a default project,
    they must also provide the project domain. If it's missing,
    an explicit error message is shown, making it clear that the
    project domain is required.
    
    Also adding some unit tests by modifying respective calls.
    
    Change-Id: Ia6e921a53da55ab1bce85a42c8160872a9d47d64
    Closes-Bug: #2102146
    (cherry picked from commit 2883f3f)
    dc0809 authored and stephenfin committed Mar 24, 2025
    Configuration menu
    Copy the full SHA
    80a4b58 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    232d99a View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2025

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

Commits on Oct 2, 2025

  1. Fix openstack quota show without cinder

    Per this Debian bug [1], 'openstack quota show --default' fails when
    cinder is NOT installed. This is also true of other services.
    
    Conflicts:
      openstackclient/common/quota.py
    
    NOTE(stephenfin): Conflicts are due to the absence of change
    I43d9ede39d36cc29301f94fa462b9b9d9441807c which repurposed the compute
    client attribute for the SDK client. We also need to update the new
    test to reflect this old naming scheme.
    
    [1] https://bugs.debian.org/1109288
    
    Change-Id: I361da44b9f1d09ba3a454632d41e2110a3815395
    Signed-off-by: Svein-Erik Skjelbred <[email protected]>
    Signed-off-by: Thomas Goirand <[email protected]>
    Signed-off-by: Stephen Finucane <[email protected]>
    (cherry picked from commit de88853)
    (cherry picked from commit 63f78be)
    thomasgoirand authored and stephenfin committed Oct 2, 2025
    Configuration menu
    Copy the full SHA
    7988325 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2026

  1. zuul: Remove osc-upload-image, osc-promote-image jobs

    We are no longer going to publish these images to Dockerhub, given
    the recent changes to quotas there coupled with the fact that no one
    appears to be using them [1]. The osc-build-image job is retained to
    ensure our Dockerfile keeps working.
    
    [1] https://lists.openstack.org/archives/list/[email protected]/thread/BE7PPQL4DGNDZ2SIMUVSK67I5NF3TFCX/
    
    Change-Id: I9d2ca8f90b8244a09832da673491312095520968
    Signed-off-by: Stephen Finucane <[email protected]>
    (cherry picked from commit e4d621d)
    stephenfin committed Jan 19, 2026
    Configuration menu
    Copy the full SHA
    bb9c7ad View commit details
    Browse the repository at this point in the history
  2. identity: Fix 'user list --project' option

    The 'role_assignments_filter' identity proxy method requires either a
    user or group, which defeats the entire purpose of the command when used
    with this option. Use 'role_assignments' instead.
    
    Change-Id: I8fb705c55fb4e81fa82d4a7dbe4c5bf7e1edd98a
    Signed-off-by: Stephen Finucane <[email protected]>
    Closes-bug: #1616104
    (cherry picked from commit 0ed1220)
    (cherry picked from commit 3367327)
    stephenfin committed Jan 19, 2026
    Configuration menu
    Copy the full SHA
    da91173 View commit details
    Browse the repository at this point in the history
  3. Fix microversion 2.96

    This change fixes missing conditional logic for
    microversion 2.96 which adds `pinned_availability_zone`
    field to `openstack server list` output.
    
    Conflicts: Resolved the conflict because of missing change
    Ia5a4e0047b5123f2fb063cfc9ab1f58b2844308f
    
    Change-Id: I1e398bb3379fa6443b0a44db76baaf6241a945e7
    Signed-off-by: Rajesh Tailor <[email protected]>
    (cherry picked from commit dbddbf9)
    (cherry picked from commit 9b137bfcea42ad3714f9af7d13afd435d68c7419)
    ratailor committed Jan 19, 2026
    Configuration menu
    Copy the full SHA
    2d5f60b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c6958e6 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2026

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