2026.2 Series Release Notes¶
6.3.0¶
New Features¶
The
openstack share listcommand now accepts an--availability-zoneoption to filter shares by their availability zone. This filter is available with manila API version2.97and beyond.
Updated the
migration_get_progressmethod to use the new GET endpointGET /v2/shares/{share_id}/migration-progresswhen called with API microversion >=2.98. For older microversions the prior POST action is still used. Bug #2108851
API requests to the Manila service now use the keystoneauth1 session instead of a custom HTTP client when a session is available. This provides automatic token renewal, standardized logging, and consistent behavior with other OpenStack clients.
Security Issues¶
Auth tokens are now redacted (SHA256 hashed) in debug log output to prevent credential exposure (bug 2125625).
Auth tokens are automatically redacted in debug logs by keystoneauth1 session-based request handling, preventing credential exposure when
--debugis enabled.
Bug Fixes¶
Fixed resource lock list filtering by project or user by adding the missing domain options.
Fixed a bug where the
propertiesfield in several show commands (share show, share snapshot show, share replica show, share network subnet show, and share export location show) was unconditionally wrapped inDictColumn, causing a JSON serialization error when using the-f jsonformatter.
6.2.0¶
Prelude¶
- Share migration APIs have graduated from their experimental feature state from API version
2.96. The share migration actions (migration_start,migration_complete,migration_cancel,migration_get_progressandreset_task_state) no longer require the inclusion of theX-OpenStack-Manila-API-Experimentalheader in API requests starting at version2.96. Older microversions continue to send the experimental header for backward compatibility.
New Features¶
Added a
Propertiescolumn to theopenstack share replica listcommand output when using Manila API version 2.95 or newer. The column displays the metadata key/value pairs associated with each share replica, for examplereplication_policy='Sync'.
6.1.0¶
Bug Fixes¶
In addition to existing “–os-endpoint-override” option to override API endpoint, user can also use export variable. For example, use “export OS_SHARED_FILE_SYSTEM_ENDPOINT_OVERRIDE=<endpoint_url>” and then use “openstack share list” command to refer different Manila API endpoint.