Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Storage Client Library 9.4.1

Compare
Choose a tag to compare
@kfarmer-msft kfarmer-msft released this 27 Nov 20:42
· 120 commits to master since this release

Changes in 9.4.1:

  • Fix bug where certain content headers were not being sent to the server.
  • Fix bug where passing a null progress handler could lead to a null reference exception.
  • Added support for passing in a DelegatingHandler to use for HTTP calls. A chain of DelegatingHandler instances is supported, but the innermost handler must have a null InnerHandler, which will be assigned our own HttpClientHandler instance for authentication purposes. The DelegatingHandler can modify properties on the HttpClientHandler, such as Proxy. This instance will be unique to the client in that case. Not passing in a DelegatingHandler will continue to use a singleton HttpClientHandler.
  • [Queue] Fixed issue where CloudQueue metadata was cleared after various calls which didn't return metadata payload.
  • [Queue] Obsoleted CloudQueueMessage.SetMessageContent, replaced with SetMessageContent2 to resolve long-standing inconsistency between platforms.
  • [Queue] Added more ctors to CloudQueueMessage.