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: gophercloud/gophercloud
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9cf6777
Choose a base ref
...
head repository: gophercloud/gophercloud
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3c0eaeb
Choose a head ref
  • 12 commits
  • 26 files changed
  • 6 contributors

Commits on Sep 17, 2021

  1. compute: Add ServerGroup property to Server (#2217)

    Add to the Server type the list of server groups the server is part of,
    as exposed in microversions 1.71 and above as "server_groups".
    
    The new `ServerGroups` property is a pointer to slice (`*[]string`), as
    mandated by the Gophercloud ["New Response Fields" convention][1].
    
    Nova code implementing the feature:
    * https://github.com/openstack/nova/blob/d2a5fe5621d6ff1ae8ba5087049e0c4347592cf6/nova/api/openstack/compute/servers.py#L454-L455
    * https://github.com/openstack/nova/blob/52cae8801de9229d6cfb7871c2073b83b3e41b81/nova/api/openstack/compute/views/servers.py#L420-L423
    
    [1]: https://github.com/gophercloud/gophercloud/blob/master/docs/MICROVERSIONS.md#new-response-fields
    pierreprinetti authored Sep 17, 2021
    Configuration menu
    Copy the full SHA
    23a9f87 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    jtopjian authored Sep 17, 2021
    Configuration menu
    Copy the full SHA
    f77850b View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2021

  1. Configuration menu
    Copy the full SHA
    29581a2 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    jtopjian authored Sep 20, 2021
    Configuration menu
    Copy the full SHA
    94f0a20 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2021

  1. Image Service v2: Add Updating image.Protected field (#2221)

    Now we should be able to do something like:
    
    ```
    updateOpts := images.UpdateOpts{
        images.ReplaceImageProtected{
            NewProtected: false,
        },
    }
    image, err = images.Update(client, imageID, updateOpts).Extract()
    ```
    
    Fixes #2220
    dustymabe authored Sep 30, 2021
    Configuration menu
    Copy the full SHA
    7749e11 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    jtopjian authored Sep 30, 2021
    Configuration menu
    Copy the full SHA
    81b5e5c View commit details
    Browse the repository at this point in the history
  3. Update CHANGELOG.md

    jtopjian authored Sep 30, 2021
    Configuration menu
    Copy the full SHA
    a7e4d0e View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2021

  1. Expose the real error message of NotFound error (#2223)

    This change exposes the error message of NotFound error from openstack
    API, this is helpful to find out the reason of request failure.
    schirevko authored Oct 1, 2021
    Configuration menu
    Copy the full SHA
    0b6da37 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    jtopjian authored Oct 1, 2021
    Configuration menu
    Copy the full SHA
    2e4a09a View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2021

  1. Support HttpHeaders in create_subscription (#2224)

    This commit adds support for HttpHeaders in the create_subscription.
    It was added during the Xena release of Ironic in [1] after the
    initial support for create subscriptions [2]
    
    We don't need to modify the response of get_subscription because
    redfish doesn't return the value of the HttpHeaders for the enduser.
    
    [1] https://review.opendev.org/c/openstack/ironic/+/806859
    [2] https://review.opendev.org/c/openstack/ironic/+/801064
    iurygregory authored Oct 5, 2021
    Configuration menu
    Copy the full SHA
    f581ce6 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    jtopjian authored Oct 5, 2021
    Configuration menu
    Copy the full SHA
    0798d97 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2021

  1. Update CHANGELOG.md

    jtopjian authored Oct 7, 2021
    Configuration menu
    Copy the full SHA
    3c0eaeb View commit details
    Browse the repository at this point in the history
Loading