Train Series (1.9.0 - 2.0.x) Release Notes¶
2.0.5-8¶
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.
2.0.5¶
Bug Fixes¶
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.
2.0.4¶
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.
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.
2.0.3¶
Bug Fixes¶
Fixes Sushy OEM extension loading when using multiple servers that caused loaded extensions to point to server for which the extension was loaded first.
2.0.2¶
Bug Fixes¶
Handles incomplete messages in MessageRegistry that are not having fields like ‘Description’ and ‘Severity’. See story 2007216 for more information.
2.0.1¶
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
2.0.0¶
New Features¶
Exposes the
endpoint
sub-resource from thefabric
resource.endpoint
represents the properties of an entity that sends or receives protocol defined messages over a transport.
Adds a new field called
MappedListField
which supports a list of mapped instances.
Adds the ability to conditionally match sushy fields against received JSON object. The conditional matching is performed by a user-supplied callable which gets the key to consider (along with the value and potentially other details) and should indicate the the caller if the match occurred. The motivation behind this change is to accommodate malformed Redfish resource properties as observed in the OEM wilderness.
Update the Storage, Volume, and Drive models to support RAID configuration management.
Exposes
UpdateService
constants tosushy
namespace.
Upgrade Notes¶
OEM resource class hierarchy has been redesigned to allow for non-terminal sub-resources (e.g. Links) to be handled within OEM resource model. As a consequence, backward compatibility with previously existing OEM extension framework (anything based on
OEMExtensionResourceBase
class) is not preserved. User OEM code migration would involve switching fromOEMExtensionResourceBase
toOEMResourceBase
(note__init__
call signature change) and replacingOEMField
-based classes with their generic sushyField
counterparts.
Bug Fixes¶
Improve interoperability by including the recommended OData-Version header in outgoing Redfish requests.
Disable HTTP connection pooling by asking HTTP server to close our connection right upon use. The rationale is that some BMC observed in the wild seem to close persistent connections abruptly upon eventual re-use failing completely unrelated operation. So in
sushy
we just try not to maintain persistent connections with BMC at all.
Makes
Manager->Actions
field optional as Redfish Manager schema defines it. Otherwise sushy fails hard at parsing response from a Redfish agent that does not includeActions
field in its document tree.
Fixes bug in
UpdateService.simple_update
method making it operational.
The
transfer_protocol
parameter of theUpdateService.simple_update
method should be given one of the newly exposed constants rather than a string literal. This is a breaking change.
Fixes an issue in performing action
#Bios.ResetBios
when BMC expects the POST request with empty body instead of no body. See story 2006246 for details.
1.9.0¶
New Features¶
Bios
resource introducesupdate_status
property that exposes the status and any errors of last BIOS attribute update.
Adds the
IndicatorLED
property to theDrive
resource. The state of the LED can be read and can be changed via the.set_indicator_led()
method of theDrive
sushy class.
Adds support for the Fabric resource to the library.
Adds the Power resource to the Library.
Adds mappings and constants for possible values of System Type in System resource. This represents the type of the computer system.
Adds the Thermal resource to the Library.
Adds
CapacityBites
,Manufacturer
,Model
,PartNumber
,SerialNumber
andStatus
properties to theDrive
resource.
The
IndicatorLED
property ofSystem
andChassis
resources made settable with the introduction of the.set_indicator_led()
method to the respective sushy classes.
Update sushy models to support the Redfish SettingsApplyTime and OperationApplyTimeSupport annotations.
Deprecation Notes¶
Deprecates system-specific indicator LEDs as redundant. The
SYSTEM_INDICATOR_LED_LIT
,SYSTEM_INDICATOR_LED_BLINKING
,SYSTEM_INDICATOR_LED_OFF
andSYSTEM_INDICATOR_LED_UNKNOWN
constants should not be used. Generic indicator LED constants should be used instead. Those areINDICATOR_LED_LIT
,INDICATOR_LED_BLINKING
,INDICATOR_LED_OFF
andINDICATOR_LED_UNKNOWN
respectively.
The
operation_apply_time_support
andmaintenance_window
properties in theSettingsField
class are deprecated. TheSettingsField
class represents the@Redfish.Settings
annotation and those properties cannot appear within this annotation. Instead use theapply_time_settings
property in the target resource (e.g.Bios
resource).
Other Notes¶
Includes Redfish standard message registry files that are licensed under Creative Commons Attribution 4.0 License: https://creativecommons.org/licenses/by/4.0/