-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update change log for 0.4.1 #292
Conversation
@@ -1,4 +1,6 @@ | |||
2013.02.22 Version 0.4.1 | |||
2013.03.12 Version 0.4.1 | |||
* Added connection string support for Windows Azure Service Bus |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should add comment about the new Media Service APIs and classes that were added.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also need to update version number in the readme.md
* Added connection string support for Service Bus | ||
* Added new methods to break lease for Storage Blob which doesn't require a lease id and returns the result as an object. Deprecated the old breakLease() methods. | ||
* Added a new method to get the historical events for Media Services | ||
* Fixed Storage Table encoding issue for special characters | ||
* BlobOutputStream now commits block list using LATEST instead of UNCOMMITTED | ||
* Added RequestResult to StorageEvents | ||
* Fixed race condition when accessing OperationContext RequestResults |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Policheck flagged "race". Perhaps make less specific, like:
* Fixed issue when accessing OperationContext RequestResults
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what about racing condition?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Offense depends on context. "Race Condition" is a well defined and understood technical term, and I'm sure would qualify for a policheck exception.
update change log for 0.4.1
…view-dev New storage sdk v10 preview dev
… closing MessagingFactory before CBSLink could be created. (Azure#292) This is not a true leak because the RequestResponseLink has a finalize method and will eventually be freed. But the finalize method may slow down the garbage collector and user will see increased memory consumption. * Removing a comment # Conflicts: # azure-servicebus/src/main/java/com/microsoft/azure/servicebus/primitives/MessagingFactory.java # azure-servicebus/src/main/java/com/microsoft/azure/servicebus/primitives/RequestResponseLinkCache.java
* Add test: canCreateIndexerWithSkillset()
Also fixing #283