Ussuri Series (3.0.0 - 3.2.x) Release Notes¶
3.2.3-3¶
Bug Fixes¶
Fixes unreliable behavior with ETag interactions with some BMCs as opportunistic use of compressed responses may cause the BMC to change an ETag response to “Weak”, which is to be expected as an ETag represents an absolute byte-by-byte response consistency, and compression cannot reliably honor that contract. Introduction of a client perceiving a “Weak” ETag may not be expected by the server, and the server may reject responses because the ETag is not a “Strong” ETag when we respond or interact with a resource.
As a result, requests no longer offer oppurtunistic compression of responses as an acceptable possibility, which overall has minimal impact, espescially when compared to the value of consistent BMC behavior and interaction.
Fixes issues with the refresh of
Session
based authentication where a previous refresh attempt failing could result in a fallback toBasic
authentication and would silently fail. The client library now attempts to re-authenticate.
Fixes silent failures when a refresh of an authentication
Session
fails and was unable to be re-established due to anAccessError
. Should this occur, now theAccessError
exception is explicitly raised as opposed to attempting to fall back toBasic
authentication.
Fixes issues where the
Session
andBasic
auth interface would fallback toBasic
authentication should aConnectionError
exception occur while attempting to perform an authentication action.ConnectionError
exceptions are signs of networking transport issues, and should be investigated. AConnectionError
exception is now raised.
Prevents the combined
Session
andBasic
authentication support from falling back toBasic
authentication onceSession
based authentication has been established. This should be considered a potential security issue or an environmental change requiring potential client re-initialization. This is exposed as anAccessError
exception. Continued operations against the Sushy library will attempt to reauthenticate, if possible.
3.2.3¶
Bug Fixes¶
Automatically retries internal server errors from GET requests.
3.2.1¶
Security Issues¶
No longer logs passwords and auth tokens in DEBUG mode when using SessionService for authentication.
Bug Fixes¶
Fixes an issue in performing action
#Bios.ResetBios
when no body in POST request provided and BMC responds with HTTP 400 Bad request, for example, Dell R630 having iDRAC 2.75.75.75. See story 2008198 for details.
Fixes
AttributeError: 'str' object has no attribute 'get'
during error handling. This occurs when BMC does not return a list of messages inside@Message.ExtendedInfo
, but a single item. This has been observed with iDRAC.
Fixes Sushy OEM extension loading when using multiple servers that caused loaded extensions to point to server for which the extension was loaded first.
Instead of trying to GET /redfish/v1/SessionService, which is usually reachable via authentication, fail, and then guess /redfish/v1/SessionService/Sessions as Sessions URL, we try first to use directly the Sessions URL provided by the root service, if available.
3.2.0¶
New Features¶
Adds optional
response_callback
parameter toConnector
class that can be used by the application to receive vanilla HTTP messages in the course of running Redfish call. The intention is to facilitate Redfish exchange debugging.
Bug Fixes¶
Adds a new
set_system_boot_options
method to theSystem
object superseding theset_system_boot_source
method. The new method has all boot parameters optional to allow for more atomicity when PATCH’ing RedfishBoot
object. The new method will only include those items in the PATCH document, that are explicitly passed by the user. This change might improve interoperability with BMCs that do not handle certain attributes of theBoot
object.
Postpones (potentially very large) Redfish message registries download and processing up to the first access by the client. The goal is to reduce the amount of unnecessary traffic and CPU cycles.
3.1.0¶
New Features¶
The
get_system
,get_manager
andget_chassis
methods modified not to require theidentity
parameter referring to a particular resource instance. Ifidentity
is omited, sushy will default to the only available resource for as long as it’s single and therefore deterministic. The intent is to simplify user API by not requiring the consumer to discover available resources prior to requesting one.
Add support for a Task Monitor resource to be able to monitor the state of asynchronous operations.
Bug Fixes¶
Fixes bug in
SimpleStorageCollection.disks_sizes_bytes
which assumed the type of a disk’sCapacityBytes
property isinteger
. According to the Distributed Management Task Force (DMTF) Redfish standard schema [1], it can benull
, which is converted toNone
in Python. For more information, see story 2006918.[1] https://redfish.dmtf.org/schemas/SimpleStorage.v1_2_3.json
Handles incomplete messages in MessageRegistry that are not having fields like ‘Description’ and ‘Severity’. See story 2007216 for more information.
3.0.0¶
Upgrade Notes¶
Python 2.7 support has been dropped. Last release of sushy to support Python 2.7 is OpenStack Train. The minimum version of Python now supported by sushy is Python 3.6.